CfnDataTableRecordProps

class aws_cdk.aws_connect.CfnDataTableRecordProps(*, data_table_arn=None, data_table_record=None, instance_arn=None)

Bases: object

Properties for defining a CfnDataTableRecord.

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 import aws_connect as connect

cfn_data_table_record_props = connect.CfnDataTableRecordProps(
    data_table_arn="dataTableArn",
    data_table_record=connect.CfnDataTableRecord.DataTableRecordProperty(
        values=[connect.CfnDataTableRecord.ValueProperty(
            attribute_id="attributeId",
            attribute_value="attributeValue"
        )],

        # the properties below are optional
        primary_values=[connect.CfnDataTableRecord.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