Class: Aws::Transfer::Types::WebAppUnits
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::WebAppUnits
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-transfer/types.rb
Overview
WebAppUnits is a union - when making an API calls you must set exactly one of the members.
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
Defined Under Namespace
Classes: Provisioned, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#provisioned ⇒ Integer
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.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#provisioned ⇒ Integer
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.
7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 |
# File 'lib/aws-sdk-transfer/types.rb', line 7429 class WebAppUnits < Struct.new( :provisioned, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Provisioned < WebAppUnits; end class Unknown < WebAppUnits; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
7429 7430 7431 |
# File 'lib/aws-sdk-transfer/types.rb', line 7429 def unknown @unknown end |