Interface CfnAgentSpaceProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAgentSpaceProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-04-14T18:32:04.502Z") @Stability(Stable) public interface CfnAgentSpaceProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnAgentSpace.

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.securityagent.*;
 CfnAgentSpaceProps cfnAgentSpaceProps = CfnAgentSpaceProps.builder()
         .name("name")
         // the properties below are optional
         .awsResources(AWSResourcesProperty.builder()
                 .iamRoles(List.of("iamRoles"))
                 .lambdaFunctionArns(List.of("lambdaFunctionArns"))
                 .logGroups(List.of("logGroups"))
                 .s3Buckets(List.of("s3Buckets"))
                 .secretArns(List.of("secretArns"))
                 .vpcs(List.of(VpcConfigProperty.builder()
                         .securityGroupArns(List.of("securityGroupArns"))
                         .subnetArns(List.of("subnetArns"))
                         .vpcArn("vpcArn")
                         .build()))
                 .build())
         .codeReviewSettings(CodeReviewSettingsProperty.builder()
                 .controlsScanning(false)
                 .generalPurposeScanning(false)
                 .build())
         .description("description")
         .integratedResources(List.of(IntegratedResourceProperty.builder()
                 .integration("integration")
                 .build()))
         .kmsKeyId("kmsKeyId")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .targetDomainIds(List.of("targetDomainIds"))
         .build();
 

See Also: