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

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
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)


7171
7172
7173
7174
7175
7176
7177
7178
7179
7180
# File 'lib/aws-sdk-transfer/types.rb', line 7171

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



7171
7172
7173
# File 'lib/aws-sdk-transfer/types.rb', line 7171

def unknown
  @unknown
end