interface CfnDataTableRecordProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnDataTableRecordProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnDataTableRecordProps |
Java | software.amazon.awscdk.services.connect.CfnDataTableRecordProps |
Python | aws_cdk.aws_connect.CfnDataTableRecordProps |
TypeScript | aws-cdk-lib » aws_connect » CfnDataTableRecordProps |
Properties for defining a CfnDataTableRecord.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connect as connect } from 'aws-cdk-lib';
const cfnDataTableRecordProps: connect.CfnDataTableRecordProps = {
dataTableArn: 'dataTableArn',
dataTableRecord: {
values: [{
attributeId: 'attributeId',
attributeValue: 'attributeValue',
}],
// the properties below are optional
primaryValues: [{
attributeId: 'attributeId',
attributeValue: 'attributeValue',
}],
},
instanceArn: 'instanceArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| data | string | The Amazon Resource Name (ARN) for the data table. |
| data | IResolvable | Data | |
| instance | string | The Amazon Resource Name (ARN) of the instance. |
dataTableArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) for the data table.
Does not include version aliases.
dataTableRecord?
Type:
IResolvable | Data
(optional)
instanceArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the instance.

.NET
Go
Java
Python
TypeScript