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: