Class CfnPredefinedAttribute.AttributeConfigurationProperty
Custom metadata associated to a Predefined attribute that controls how the attribute behaves when used by upstream services.
Inherited Members
Namespace: Amazon.CDK.AWS.Connect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnPredefinedAttribute.AttributeConfigurationProperty : CfnPredefinedAttribute.IAttributeConfigurationProperty
Syntax (vb)
Public Class CfnPredefinedAttribute.AttributeConfigurationProperty Implements CfnPredefinedAttribute.IAttributeConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Connect;
var attributeConfigurationProperty = new AttributeConfigurationProperty {
EnableValueValidationOnAssociation = false,
IsReadOnly = false
};
Synopsis
Constructors
AttributeConfigurationProperty() | Custom metadata associated to a Predefined attribute that controls how the attribute behaves when used by upstream services. |
Properties
EnableValueValidationOnAssociation | Enables customers to enforce strict validation on the specific values that this predefined attribute can hold. |
IsReadOnly | Allows the predefined attribute to show up and be managed in the Amazon Connect UI. |
Constructors
AttributeConfigurationProperty()
Custom metadata associated to a Predefined attribute that controls how the attribute behaves when used by upstream services.
public AttributeConfigurationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Connect;
var attributeConfigurationProperty = new AttributeConfigurationProperty {
EnableValueValidationOnAssociation = false,
IsReadOnly = false
};
Properties
EnableValueValidationOnAssociation
Enables customers to enforce strict validation on the specific values that this predefined attribute can hold.
public object? EnableValueValidationOnAssociation { get; set; }
Property Value
Remarks
IsReadOnly
Allows the predefined attribute to show up and be managed in the Amazon Connect UI.
public object? IsReadOnly { get; set; }