Interface CfnStack.UserSettingProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStack.UserSettingProperty.Jsii$Proxy
- Enclosing class:
CfnStack
@Stability(Stable)
public static interface CfnStack.UserSettingProperty
extends software.amazon.jsii.JsiiSerializable
Specifies an action and whether the action is enabled or disabled for users during their streaming sessions.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.appstream.*; UserSettingProperty userSettingProperty = UserSettingProperty.builder() .action("action") .permission("permission") // the properties below are optional .maximumLength(123) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnStack.UserSettingProperty
static final class
An implementation forCfnStack.UserSettingProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The action that is enabled or disabled.default Number
Specifies the number of characters that can be copied by end users from the local device to the remote session, and to the local device from the remote session.Indicates whether the action is enabled or disabled.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAction
The action that is enabled or disabled.- See Also:
-
getPermission
Indicates whether the action is enabled or disabled.- See Also:
-
getMaximumLength
Specifies the number of characters that can be copied by end users from the local device to the remote session, and to the local device from the remote session.This can be specified only for the
CLIPBOARD_COPY_FROM_LOCAL_DEVICE
andCLIPBOARD_COPY_TO_LOCAL_DEVICE
actions.This defaults to 20,971,520 (20 MB) when unspecified and the permission is
ENABLED
. This can't be specified when the permission isDISABLED
.The value can be between 1 and 20,971,520 (20 MB).
- See Also:
-
builder
-