Class CfnPredefinedAttributeMixinProps
Properties for CfnPredefinedAttributePropsMixin.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnPredefinedAttributeMixinProps : ICfnPredefinedAttributeMixinProps
Syntax (vb)
Public Class CfnPredefinedAttributeMixinProps Implements ICfnPredefinedAttributeMixinProps
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.Mixins.Preview.AWS.Connect.Mixins;
var cfnPredefinedAttributeMixinProps = new CfnPredefinedAttributeMixinProps {
AttributeConfiguration = new AttributeConfigurationProperty {
EnableValueValidationOnAssociation = false,
IsReadOnly = false
},
InstanceArn = "instanceArn",
Name = "name",
Purposes = new [] { "purposes" },
Values = new ValuesProperty {
StringList = new [] { "stringList" }
}
};
Synopsis
Constructors
| CfnPredefinedAttributeMixinProps() | Properties for CfnPredefinedAttributePropsMixin. |
Properties
| AttributeConfiguration | 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 | The Amazon Resource Name (ARN) of the instance. |
| Name | The name of the predefined attribute. |
| Purposes | Values that enable you to categorize your predefined attributes. |
| Values | The values of a predefined attribute. |
Constructors
CfnPredefinedAttributeMixinProps()
Properties for CfnPredefinedAttributePropsMixin.
public CfnPredefinedAttributeMixinProps()
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.Mixins.Preview.AWS.Connect.Mixins;
var cfnPredefinedAttributeMixinProps = new CfnPredefinedAttributeMixinProps {
AttributeConfiguration = new AttributeConfigurationProperty {
EnableValueValidationOnAssociation = false,
IsReadOnly = false
},
InstanceArn = "instanceArn",
Name = "name",
Purposes = new [] { "purposes" },
Values = new ValuesProperty {
StringList = new [] { "stringList" }
}
};
Properties
AttributeConfiguration
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.
public object? AttributeConfiguration { get; set; }
Property Value
Remarks
InstanceArn
The Amazon Resource Name (ARN) of the instance.
public string? InstanceArn { get; set; }
Property Value
Remarks
Name
The name of the predefined attribute.
public string? Name { get; set; }
Property Value
Remarks
Purposes
Values that enable you to categorize your predefined attributes.
public string[]? Purposes { get; set; }
Property Value
string[]
Remarks
You can use them in custom UI elements across the Amazon Connect admin website.
Values
The values of a predefined attribute.
public object? Values { get; set; }