CfnDataTableAttributeMixinProps

class aws_cdk.mixins_preview.aws_connect.mixins.CfnDataTableAttributeMixinProps(*, data_table_arn=None, description=None, instance_arn=None, name=None, primary=None, validation=None, value_type=None)

Bases: object

Properties for CfnDataTableAttributePropsMixin.

Parameters:
  • data_table_arn (Optional[str])

  • description (Optional[str])

  • instance_arn (Optional[str])

  • name (Optional[str])

  • primary (Union[bool, IResolvable, None])

  • validation (Union[IResolvable, ValidationProperty, Dict[str, Any], None])

  • value_type (Optional[str])

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatableattribute.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_data_table_attribute_mixin_props = connect_mixins.CfnDataTableAttributeMixinProps(
    data_table_arn="dataTableArn",
    description="description",
    instance_arn="instanceArn",
    name="name",
    primary=False,
    validation=connect_mixins.CfnDataTableAttributePropsMixin.ValidationProperty(
        enum=connect_mixins.CfnDataTableAttributePropsMixin.EnumProperty(
            strict=False,
            values=["values"]
        ),
        exclusive_maximum=123,
        exclusive_minimum=123,
        maximum=123,
        max_length=123,
        max_values=123,
        minimum=123,
        min_length=123,
        min_values=123,
        multiple_of=123
    ),
    value_type="valueType"
)

Attributes

data_table_arn

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

Type:

see

description

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

Type:

see

instance_arn

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

Type:

see

name

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

Type:

see

primary

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

Type:

see

validation

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

Type:

see

value_type

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

Type:

see