Interface CfnSecurityProfileProps

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

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:04.949Z") @Stability(Stable) public interface CfnSecurityProfileProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnSecurityProfile.

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.connect.*;
 CfnSecurityProfileProps cfnSecurityProfileProps = CfnSecurityProfileProps.builder()
         .instanceArn("instanceArn")
         .securityProfileName("securityProfileName")
         // the properties below are optional
         .allowedAccessControlHierarchyGroupId("allowedAccessControlHierarchyGroupId")
         .allowedAccessControlTags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .applications(List.of(ApplicationProperty.builder()
                 .applicationPermissions(List.of("applicationPermissions"))
                 .namespace("namespace")
                 .build()))
         .description("description")
         .hierarchyRestrictedResources(List.of("hierarchyRestrictedResources"))
         .permissions(List.of("permissions"))
         .tagRestrictedResources(List.of("tagRestrictedResources"))
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: