Class: Aws::Transfer::Types::WebAppUnits
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::WebAppUnits
- Defined in:
- gems/aws-sdk-transfer/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.
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 |
#unknown ⇒ Object
Returns the value of attribute unknown
7073 7074 7075 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 7073 def unknown @unknown end |