Interface CfnStackPropsMixin.AgentAccessSettingProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnStackPropsMixin.AgentAccessSettingProperty.Jsii$Proxy
Enclosing class:
CfnStackPropsMixin

@Stability(Stable) public static interface CfnStackPropsMixin.AgentAccessSettingProperty extends software.amazon.jsii.JsiiSerializable
A permission setting for an agent action.

Each setting specifies an agent action and whether it is enabled or disabled.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.appstream.*;
 AgentAccessSettingProperty agentAccessSettingProperty = AgentAccessSettingProperty.builder()
         .agentAction("agentAction")
         .permission("permission")
         .build();
 

See Also: