interface CfnDataTableAttributeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnDataTableAttributeProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnDataTableAttributeProps |
Java | software.amazon.awscdk.services.connect.CfnDataTableAttributeProps |
Python | aws_cdk.aws_connect.CfnDataTableAttributeProps |
TypeScript | aws-cdk-lib » aws_connect » CfnDataTableAttributeProps |
Properties for defining a CfnDataTableAttribute.
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 cfnDataTableAttributeProps: connect.CfnDataTableAttributeProps = {
dataTableArn: 'dataTableArn',
description: 'description',
instanceArn: 'instanceArn',
name: 'name',
primary: false,
validation: {
enum: {
strict: false,
values: ['values'],
},
exclusiveMaximum: 123,
exclusiveMinimum: 123,
maximum: 123,
maxLength: 123,
maxValues: 123,
minimum: 123,
minLength: 123,
minValues: 123,
multipleOf: 123,
},
valueType: 'valueType',
};
Properties
| Name | Type | Description |
|---|---|---|
| data | string | |
| description? | string | |
| instance | string | |
| name? | string | |
| primary? | boolean | IResolvable | |
| validation? | IResolvable | Validation | |
| value | string |
dataTableArn?
Type:
string
(optional)
description?
Type:
string
(optional)
instanceArn?
Type:
string
(optional)
name?
Type:
string
(optional)
primary?
Type:
boolean | IResolvable
(optional)
validation?
Type:
IResolvable | Validation
(optional)
valueType?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript