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