Show / Hide Table of Contents

Class CfnPredefinedAttributeMixinProps

Properties for CfnPredefinedAttributePropsMixin.

Inheritance
object
CfnPredefinedAttributeMixinProps
Implements
ICfnPredefinedAttributeMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-predefinedattribute.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-predefinedattribute.html

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-predefinedattribute.html#cfn-connect-predefinedattribute-attributeconfiguration

Type union: either IResolvable or CfnPredefinedAttributePropsMixin.IAttributeConfigurationProperty

InstanceArn

The Amazon Resource Name (ARN) of the instance.

public string? InstanceArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-predefinedattribute.html#cfn-connect-predefinedattribute-instancearn

Name

The name of the predefined attribute.

public string? Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-predefinedattribute.html#cfn-connect-predefinedattribute-name

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-predefinedattribute.html#cfn-connect-predefinedattribute-purposes

Values

The values of a predefined attribute.

public object? Values { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-predefinedattribute.html#cfn-connect-predefinedattribute-values

Type union: either IResolvable or CfnPredefinedAttributePropsMixin.IValuesProperty

Implements

ICfnPredefinedAttributeMixinProps
Back to top Generated by DocFX