DataTableAttributeReference
- class aws_cdk.interfaces.aws_connect.DataTableAttributeReference(*, attribute_id, data_table_arn, instance_arn)
Bases:
objectA reference to a DataTableAttribute resource.
- Parameters:
attribute_id (
str) – The AttributeId of the DataTableAttribute resource.data_table_arn (
str) – The DataTableArn of the DataTableAttribute resource.instance_arn (
str) – The InstanceArn of the DataTableAttribute resource.
- 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.interfaces import aws_connect as interfaces_connect data_table_attribute_reference = interfaces_connect.DataTableAttributeReference( attribute_id="attributeId", data_table_arn="dataTableArn", instance_arn="instanceArn" )
Attributes
- attribute_id
The AttributeId of the DataTableAttribute resource.
- data_table_arn
The DataTableArn of the DataTableAttribute resource.
- instance_arn
The InstanceArn of the DataTableAttribute resource.