Interface WebAppUnits.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<WebAppUnits.Builder,WebAppUnits>,SdkBuilder<WebAppUnits.Builder,WebAppUnits>,SdkPojo
- Enclosing class:
- WebAppUnits
public static interface WebAppUnits.Builder extends SdkPojo, CopyableBuilder<WebAppUnits.Builder,WebAppUnits>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WebAppUnits.Builderprovisioned(Integer provisioned)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.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
provisioned
WebAppUnits.Builder provisioned(Integer provisioned)
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
1sets the number of concurrent sessions to 250;2sets a value of 500, and so on.- Parameters:
provisioned- 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
1sets the number of concurrent sessions to 250;2sets a value of 500, and so on.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-