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.
7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 |
# File 'lib/aws-sdk-transfer/types.rb', line 7564 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
7564 7565 7566 |
# File 'lib/aws-sdk-transfer/types.rb', line 7564 def unknown @unknown end |