interface CfnSecurityProfileMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnSecurityProfileMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnSecurityProfileMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnSecurityProfileMixinProps |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnSecurityProfileMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnSecurityProfileMixinProps |
Properties for CfnSecurityProfilePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const cfnSecurityProfileMixinProps: connect_mixins.CfnSecurityProfileMixinProps = {
allowedAccessControlHierarchyGroupId: 'allowedAccessControlHierarchyGroupId',
allowedAccessControlTags: [{
key: 'key',
value: 'value',
}],
applications: [{
applicationPermissions: ['applicationPermissions'],
namespace: 'namespace',
}],
description: 'description',
granularAccessControlConfiguration: {
dataTableAccessControlConfiguration: {
primaryAttributeAccessControlConfiguration: {
primaryAttributeValues: [{
accessType: 'accessType',
attributeName: 'attributeName',
values: ['values'],
}],
},
},
},
hierarchyRestrictedResources: ['hierarchyRestrictedResources'],
instanceArn: 'instanceArn',
permissions: ['permissions'],
securityProfileName: 'securityProfileName',
tagRestrictedResources: ['tagRestrictedResources'],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| allowed | string | The identifier of the hierarchy group that a security profile uses to restrict access to resources in Amazon Connect. |
| allowed | IResolvable | (IResolvable | Cfn)[] | The list of tags that a security profile uses to restrict access to resources in Amazon Connect. |
| applications? | IResolvable | (IResolvable | Application)[] | A list of third-party applications that the security profile will give access to. |
| description? | string | The description of the security profile. |
| granular | IResolvable | Granular | The granular access control configuration for the security profile, including data table permissions. |
| hierarchy | string[] | The list of resources that a security profile applies hierarchy restrictions to in Amazon Connect. |
| instance | string | The identifier of the Amazon Connect instance. |
| permissions? | string[] | Permissions assigned to the security profile. |
| security | string | The name for the security profile. |
| tag | string[] | The list of resources that a security profile applies tag restrictions to in Amazon Connect. |
| tags? | Cfn[] | The tags used to organize, track, or control access for this resource. |
allowedAccessControlHierarchyGroupId?
Type:
string
(optional)
The identifier of the hierarchy group that a security profile uses to restrict access to resources in Amazon Connect.
allowedAccessControlTags?
Type:
IResolvable | (IResolvable | Cfn)[]
(optional)
The list of tags that a security profile uses to restrict access to resources in Amazon Connect.
applications?
Type:
IResolvable | (IResolvable | Application)[]
(optional)
A list of third-party applications that the security profile will give access to.
description?
Type:
string
(optional)
The description of the security profile.
granularAccessControlConfiguration?
Type:
IResolvable | Granular
(optional)
The granular access control configuration for the security profile, including data table permissions.
hierarchyRestrictedResources?
Type:
string[]
(optional)
The list of resources that a security profile applies hierarchy restrictions to in Amazon Connect.
Following are acceptable ResourceNames: User .
instanceArn?
Type:
string
(optional)
The identifier of the Amazon Connect instance.
permissions?
Type:
string[]
(optional)
Permissions assigned to the security profile.
For a list of valid permissions, see List of security profile permissions .
securityProfileName?
Type:
string
(optional)
The name for the security profile.
tagRestrictedResources?
Type:
string[]
(optional)
The list of resources that a security profile applies tag restrictions to in Amazon Connect.
tags?
Type:
Cfn[]
(optional)
The tags used to organize, track, or control access for this resource.
For example, { "Tags": {"key1":"value1", "key2":"value2"} }.

.NET
Go
Java
Python
TypeScript