Interface CfnSecurityProfileProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSecurityProfileProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:07.769Z")
@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")
.granularAccessControlConfiguration(GranularAccessControlConfigurationProperty.builder()
.dataTableAccessControlConfiguration(DataTableAccessControlConfigurationProperty.builder()
.primaryAttributeAccessControlConfiguration(PrimaryAttributeAccessControlConfigurationItemProperty.builder()
.primaryAttributeValues(List.of(PrimaryAttributeValueProperty.builder()
.accessType("accessType")
.attributeName("attributeName")
.values(List.of("values"))
.build()))
.build())
.build())
.build())
.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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSecurityProfilePropsstatic final classAn implementation forCfnSecurityProfileProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe identifier of the hierarchy group that a security profile uses to restrict access to resources in Amazon Connect.default ObjectThe list of tags that a security profile uses to restrict access to resources in Amazon Connect.default ObjectA list of third-party applications that the security profile will give access to.default StringThe description of the security profile.default ObjectThe granular access control configuration for the security profile, including data table permissions.The list of resources that a security profile applies hierarchy restrictions to in Amazon Connect.The identifier of the Amazon Connect instance.Permissions assigned to the security profile.The name for the security profile.The list of resources that a security profile applies tag restrictions to in Amazon Connect.getTags()The tags used to organize, track, or control access for this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInstanceArn
The identifier of the Amazon Connect instance.Returns union: either
StringorIInstanceRef- See Also:
-
getSecurityProfileName
The name for the security profile.- See Also:
-
getAllowedAccessControlHierarchyGroupId
The identifier of the hierarchy group that a security profile uses to restrict access to resources in Amazon Connect.- See Also:
-
getAllowedAccessControlTags
The list of tags that a security profile uses to restrict access to resources in Amazon Connect.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnTag>- See Also:
-
getApplications
A list of third-party applications that the security profile will give access to.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnSecurityProfile.ApplicationProperty>- See Also:
-
getDescription
The description of the security profile.- See Also:
-
getGranularAccessControlConfiguration
The granular access control configuration for the security profile, including data table permissions.Returns union: either
IResolvableorCfnSecurityProfile.GranularAccessControlConfigurationProperty- See Also:
-
getHierarchyRestrictedResources
The list of resources that a security profile applies hierarchy restrictions to in Amazon Connect.Following are acceptable ResourceNames:
User.- See Also:
-
getPermissions
Permissions assigned to the security profile.For a list of valid permissions, see List of security profile permissions .
- See Also:
-
getTagRestrictedResources
The list of resources that a security profile applies tag restrictions to in Amazon Connect.- See Also:
-
getTags
The tags used to organize, track, or control access for this resource.For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
- See Also:
-
builder
- Returns:
- a
CfnSecurityProfileProps.BuilderofCfnSecurityProfileProps
-