interface CfnDataTableRecordMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnDataTableRecordMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnDataTableRecordMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnDataTableRecordMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnDataTableRecordMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » CfnDataTableRecordMixinProps |
Properties for CfnDataTableRecordPropsMixin.
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/cfn-property-mixins';
const cfnDataTableRecordMixinProps: connect.CfnDataTableRecordMixinProps = {
dataTableArn: 'dataTableArn',
dataTableRecord: {
primaryValues: [{
attributeId: 'attributeId',
attributeValue: 'attributeValue',
}],
values: [{
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