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 |
A primary attribute value.
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 | The value's access type. |
| attribute | string | The value's attribute name. |
| values | string[] | The value's values. |
accessType
Type:
string
The value's access type.
attributeName
Type:
string
The value's attribute name.
values
Type:
string[]
The value's values.

.NET
Go
Java
Python
TypeScript