interface DataTableAttributeReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Connect.DataTableAttributeReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsconnect#DataTableAttributeReference |
Java | software.amazon.awscdk.interfaces.connect.DataTableAttributeReference |
Python | aws_cdk.interfaces.aws_connect.DataTableAttributeReference |
TypeScript | aws-cdk-lib » interfaces » aws_connect » DataTableAttributeReference |
A reference to a DataTableAttribute resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connect as interfaces_connect } from 'aws-cdk-lib/interfaces';
const dataTableAttributeReference: interfaces_connect.DataTableAttributeReference = {
attributeId: 'attributeId',
dataTableArn: 'dataTableArn',
instanceArn: 'instanceArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| attribute | string | The AttributeId of the DataTableAttribute resource. |
| data | string | The DataTableArn of the DataTableAttribute resource. |
| instance | string | The InstanceArn of the DataTableAttribute resource. |
attributeId
Type:
string
The AttributeId of the DataTableAttribute resource.
dataTableArn
Type:
string
The DataTableArn of the DataTableAttribute resource.
instanceArn
Type:
string
The InstanceArn of the DataTableAttribute resource.

.NET
Go
Java
Python
TypeScript