Interface CfnStackPropsMixin.AgentAccessConfigProperty

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

@Stability(Stable) public static interface CfnStackPropsMixin.AgentAccessConfigProperty extends software.amazon.jsii.JsiiSerializable
The configuration for agent access on a stack.

Agent access enables AI agents to interact with desktop applications during 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.cfnpropertymixins.services.appstream.*;
 AgentAccessConfigProperty agentAccessConfigProperty = AgentAccessConfigProperty.builder()
         .s3BucketArn("s3BucketArn")
         .screenImageFormat("screenImageFormat")
         .screenResolution("screenResolution")
         .screenshotsUploadEnabled(false)
         .settings(List.of(AgentAccessSettingProperty.builder()
                 .agentAction("agentAction")
                 .permission("permission")
                 .build()))
         .userControlMode("userControlMode")
         .build();
 

See Also: