CfnDataTableRecordMixinProps

class aws_cdk.mixins_preview.aws_connect.mixins.CfnDataTableRecordMixinProps(*, data_table_arn=None, data_table_record=None, instance_arn=None)

Bases: object

Properties for CfnDataTableRecordPropsMixin.

Parameters:
  • data_table_arn (Optional[str]) – The Amazon Resource Name (ARN) for the data table. Does not include version aliases.

  • data_table_record (Union[IResolvable, DataTableRecordProperty, Dict[str, Any], None])

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

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatablerecord.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_record_mixin_props = connect_mixins.CfnDataTableRecordMixinProps(
    data_table_arn="dataTableArn",
    data_table_record=connect_mixins.CfnDataTableRecordPropsMixin.DataTableRecordProperty(
        primary_values=[connect_mixins.CfnDataTableRecordPropsMixin.ValueProperty(
            attribute_id="attributeId",
            attribute_value="attributeValue"
        )],
        values=[connect_mixins.CfnDataTableRecordPropsMixin.ValueProperty(
            attribute_id="attributeId",
            attribute_value="attributeValue"
        )]
    ),
    instance_arn="instanceArn"
)

Attributes

data_table_arn

The Amazon Resource Name (ARN) for the data table.

Does not include version aliases.

See:

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

data_table_record

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

Type:

see

instance_arn

The Amazon Resource Name (ARN) of the instance.

See:

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