interface AttributeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnPredefinedAttributePropsMixin.AttributeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnPredefinedAttributePropsMixin_AttributeConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnPredefinedAttributePropsMixin.AttributeConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnPredefinedAttributePropsMixin.AttributeConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnPredefinedAttributePropsMixin » AttributeConfigurationProperty |
Custom metadata associated to a Predefined attribute that controls how the attribute behaves when used by upstream services.
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 attributeConfigurationProperty: connect_mixins.CfnPredefinedAttributePropsMixin.AttributeConfigurationProperty = {
enableValueValidationOnAssociation: false,
isReadOnly: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| enable | boolean | IResolvable | Enables customers to enforce strict validation on the specific values that this predefined attribute can hold. |
| is | boolean | IResolvable | Allows the predefined attribute to show up and be managed in the Amazon Connect UI. |
enableValueValidationOnAssociation?
Type:
boolean | IResolvable
(optional)
Enables customers to enforce strict validation on the specific values that this predefined attribute can hold.
isReadOnly?
Type:
boolean | IResolvable
(optional)
Allows the predefined attribute to show up and be managed in the Amazon Connect UI.

.NET
Go
Java
Python
TypeScript