Class: Aws::Transfer::Types::WebAppUnits

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb

Overview

Note:

WebAppUnits is a union - when making an API calls you must set exactly one of the members.

Note:

WebAppUnits is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of WebAppUnits corresponding to the set member.

Contains an integer value that represents the value for number of concurrent connections or the user sessions on your web app.

Direct Known Subclasses

Provisioned, Unknown

Defined Under Namespace

Classes: Provisioned, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#provisionedInteger

An integer that represents the number of units for your desired number of concurrent connections, or the number of user sessions on your web app at the same time.

Each increment allows an additional 250 concurrent sessions: a value of 1 sets the number of concurrent sessions to 250; 2 sets a value of 500, and so on.

Returns:

  • (Integer)


7073
7074
7075
7076
7077
7078
7079
7080
7081
7082
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 7073

class WebAppUnits < Struct.new(
  :provisioned,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Provisioned < WebAppUnits; end
  class Unknown < WebAppUnits; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



7073
7074
7075
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 7073

def unknown
  @unknown
end