interface CfnPredefinedAttributeMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnPredefinedAttributeMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnPredefinedAttributeMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnPredefinedAttributeMixinProps |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnPredefinedAttributeMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnPredefinedAttributeMixinProps |
Properties for CfnPredefinedAttributePropsMixin.
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 cfnPredefinedAttributeMixinProps: connect_mixins.CfnPredefinedAttributeMixinProps = {
attributeConfiguration: {
enableValueValidationOnAssociation: false,
isReadOnly: false,
},
instanceArn: 'instanceArn',
name: 'name',
purposes: ['purposes'],
values: {
stringList: ['stringList'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| attribute | IResolvable | Attribute | Custom metadata that is associated to predefined attributes to control behavior in upstream services, such as controlling how a predefined attribute should be displayed in the Amazon Connect admin website. |
| instance | string | The Amazon Resource Name (ARN) of the instance. |
| name? | string | The name of the predefined attribute. |
| purposes? | string[] | Values that enable you to categorize your predefined attributes. |
| values? | IResolvable | Values | The values of a predefined attribute. |
attributeConfiguration?
Type:
IResolvable | Attribute
(optional)
Custom metadata that is associated to predefined attributes to control behavior in upstream services, such as controlling how a predefined attribute should be displayed in the Amazon Connect admin website.
instanceArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the instance.
name?
Type:
string
(optional)
The name of the predefined attribute.
purposes?
Type:
string[]
(optional)
Values that enable you to categorize your predefined attributes.
You can use them in custom UI elements across the Amazon Connect admin website.
values?
Type:
IResolvable | Values
(optional)
The values of a predefined attribute.

.NET
Go
Java
Python
TypeScript