interface PrimaryAttributeValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnSecurityProfilePropsMixin.PrimaryAttributeValueProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnSecurityProfilePropsMixin_PrimaryAttributeValueProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnSecurityProfilePropsMixin.PrimaryAttributeValueProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnSecurityProfilePropsMixin.PrimaryAttributeValueProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnSecurityProfilePropsMixin » 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 { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const primaryAttributeValueProperty: connect_mixins.CfnSecurityProfilePropsMixin.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
(optional)
The value's access type.
attributeName?
Type:
string
(optional)
The value's attribute name.
values?
Type:
string[]
(optional)
The value's values.

.NET
Go
Java
Python
TypeScript