CfnPredefinedAttributeMixinProps

class aws_cdk.mixins_preview.aws_connect.mixins.CfnPredefinedAttributeMixinProps(*, attribute_configuration=None, instance_arn=None, name=None, purposes=None, values=None)

Bases: object

Properties for CfnPredefinedAttributePropsMixin.

Parameters:
  • attribute_configuration (Union[IResolvable, AttributeConfigurationProperty, Dict[str, Any], None]) – 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.

  • instance_arn (Optional[str]) – The Amazon Resource Name (ARN) of the instance.

  • name (Optional[str]) – The name of the predefined attribute.

  • purposes (Optional[Sequence[str]]) – Values that enable you to categorize your predefined attributes. You can use them in custom UI elements across the Amazon Connect admin website.

  • values (Union[IResolvable, ValuesProperty, Dict[str, Any], None]) – The values of a predefined attribute.

See:

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

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_connect import mixins as connect_mixins

cfn_predefined_attribute_mixin_props = connect_mixins.CfnPredefinedAttributeMixinProps(
    attribute_configuration=connect_mixins.CfnPredefinedAttributePropsMixin.AttributeConfigurationProperty(
        enable_value_validation_on_association=False,
        is_read_only=False
    ),
    instance_arn="instanceArn",
    name="name",
    purposes=["purposes"],
    values=connect_mixins.CfnPredefinedAttributePropsMixin.ValuesProperty(
        string_list=["stringList"]
    )
)

Attributes

attribute_configuration

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.

See:

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

instance_arn

The Amazon Resource Name (ARN) of the instance.

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.

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.

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.

See:

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