interface CfnDataTableProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnDataTableProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnDataTableProps |
Java | software.amazon.awscdk.services.connect.CfnDataTableProps |
Python | aws_cdk.aws_connect.CfnDataTableProps |
TypeScript | aws-cdk-lib » aws_connect » CfnDataTableProps |
Properties for defining a CfnDataTable.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.html
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 cfnDataTableProps: connect.CfnDataTableProps = {
description: 'description',
instanceArn: 'instanceArn',
name: 'name',
status: 'status',
tags: [{
key: 'key',
value: 'value',
}],
timeZone: 'timeZone',
valueLockLevel: 'valueLockLevel',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the Data Table. |
| instance | string | The identifier of the Amazon Connect instance. |
| name? | string | The name of the Data Table. |
| status? | string | The status of the Data Table. |
| tags? | Cfn[] | One or more tags. |
| time | string | The time zone of the Data Table. |
| value | string | The value lock level of the Data Table. |
description?
Type:
string
(optional)
The description of the Data Table.
instanceArn?
Type:
string
(optional)
The identifier of the Amazon Connect instance.
name?
Type:
string
(optional)
The name of the Data Table.
status?
Type:
string
(optional)
The status of the Data Table.
tags?
Type:
Cfn[]
(optional)
One or more tags.
timeZone?
Type:
string
(optional)
The time zone of the Data Table.
valueLockLevel?
Type:
string
(optional)
The value lock level of the Data Table.

.NET
Go
Java
Python
TypeScript