interface PrimaryAttributeValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnSecurityProfile.PrimaryAttributeValueProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnSecurityProfile_PrimaryAttributeValueProperty |
Java | software.amazon.awscdk.services.connect.CfnSecurityProfile.PrimaryAttributeValueProperty |
Python | aws_cdk.aws_connect.CfnSecurityProfile.PrimaryAttributeValueProperty |
TypeScript | aws-cdk-lib » aws_connect » CfnSecurityProfile » PrimaryAttributeValueProperty |
An object defining the access control for a specific attribute and its values.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connect as connect } from 'aws-cdk-lib';
const primaryAttributeValueProperty: connect.CfnSecurityProfile.PrimaryAttributeValueProperty = {
accessType: 'accessType',
attributeName: 'attributeName',
values: ['values'],
};
Properties
| Name | Type | Description |
|---|---|---|
| access | string | Specifies the type of access granted. |
| attribute | string | The name of the primary attribute. |
| values | string[] | An array of allowed primary values for the specified primary attribute. |
accessType
Type:
string
Specifies the type of access granted.
Currently, only "ALLOW" is supported
attributeName
Type:
string
The name of the primary attribute.
values
Type:
string[]
An array of allowed primary values for the specified primary attribute.

.NET
Go
Java
Python
TypeScript