interface PrimaryAttributeValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnSecurityProfilePropsMixin.PrimaryAttributeValueProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnSecurityProfilePropsMixin_PrimaryAttributeValueProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnSecurityProfilePropsMixin.PrimaryAttributeValueProperty |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnSecurityProfilePropsMixin.PrimaryAttributeValueProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » 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 { aws_connect as connect } from '@aws-cdk/cfn-property-mixins';
const primaryAttributeValueProperty: connect.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