CfnDataTableMixinProps

class aws_cdk.mixins_preview.aws_connect.mixins.CfnDataTableMixinProps(*, description=None, instance_arn=None, name=None, status=None, tags=None, time_zone=None, value_lock_level=None)

Bases: object

Properties for CfnDataTablePropsMixin.

Parameters:
  • description (Optional[str]) – The description of the Data Table.

  • instance_arn (Optional[str]) – The identifier of the Amazon Connect instance.

  • name (Optional[str]) – The name of the Data Table.

  • status (Optional[str]) – The status of the Data Table.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – One or more tags.

  • time_zone (Optional[str]) – The time zone of the Data Table.

  • value_lock_level (Optional[str]) – The value lock level of the Data Table.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.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_mixin_props = connect_mixins.CfnDataTableMixinProps(
    description="description",
    instance_arn="instanceArn",
    name="name",
    status="status",
    tags=[CfnTag(
        key="key",
        value="value"
    )],
    time_zone="timeZone",
    value_lock_level="valueLockLevel"
)

Attributes

description

The description of the Data Table.

See:

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

instance_arn

The identifier of the Amazon Connect instance.

See:

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

name

The name of the Data Table.

See:

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

status

The status of the Data Table.

See:

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

tags

One or more tags.

See:

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

time_zone

The time zone of the Data Table.

See:

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

value_lock_level

The value lock level of the Data Table.

See:

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