CfnDataTableRecordProps
- class aws_cdk.aws_connect.CfnDataTableRecordProps(*, data_table_arn=None, data_table_record=None, instance_arn=None)
Bases:
objectProperties 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:
- 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.
- data_table_record
-
- Type:
see
- instance_arn
The Amazon Resource Name (ARN) of the instance.