Interface CfnSecurityProfileMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSecurityProfileMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:57.635Z")
@Stability(Stable)
public interface CfnSecurityProfileMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnSecurityProfilePropsMixin.
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.connect.*;
CfnSecurityProfileMixinProps cfnSecurityProfileMixinProps = CfnSecurityProfileMixinProps.builder()
.allowedAccessControlHierarchyGroupId("allowedAccessControlHierarchyGroupId")
.allowedAccessControlTags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.allowedFlowModules(List.of(FlowModuleProperty.builder()
.flowModuleId("flowModuleId")
.type("type")
.build()))
.applications(List.of(ApplicationProperty.builder()
.applicationPermissions(List.of("applicationPermissions"))
.namespace("namespace")
.type("type")
.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"))
.instanceArn("instanceArn")
.permissions(List.of("permissions"))
.securityProfileName("securityProfileName")
.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 forCfnSecurityProfileMixinPropsstatic final classAn implementation forCfnSecurityProfileMixinProps -
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 ObjectThe list of flow-module resources to be linked to a security profile 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.default ObjectThe identifier of the Amazon Connect instance.Permissions assigned to the security profile.default StringThe 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
-
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:
-
getAllowedFlowModules
The list of flow-module resources to be linked to a security profile in Amazon Connect.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnSecurityProfilePropsMixin.FlowModuleProperty>- See Also:
-
getApplications
A list of third-party applications that the security profile will give access to.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnSecurityProfilePropsMixin.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
IResolvableorCfnSecurityProfilePropsMixin.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:
-
getInstanceArn
The identifier of the Amazon Connect instance.Returns union: either
StringorIInstanceRef- See Also:
-
getPermissions
Permissions assigned to the security profile.For a list of valid permissions, see List of security profile permissions .
- See Also:
-
getSecurityProfileName
The name for the security profile.- 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
-