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 | An optional description of the data table's purpose and contents. |
| instance | string | The Amazon Resource Name (ARN) of the instance. |
| name? | string | The human-readable name of the data table. |
| status? | string | The current status of the data table. |
| tags? | Cfn[] | Key-value pairs for attribute based access control (TBAC or ABAC) and organization. |
| time | string | The IANA timezone identifier used when resolving time based dynamic values. |
| value | string | The data level that concurrent value edits are locked on. |
description?
Type:
string
(optional)
An optional description of the data table's purpose and contents.
instanceArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the instance.
name?
Type:
string
(optional)
The human-readable name of the data table.
Must be unique within the instance and conform to Connect naming standards.
status?
Type:
string
(optional)
The current status of the data table.
One of PUBLISHED or SAVED.
tags?
Type:
Cfn[]
(optional)
Key-value pairs for attribute based access control (TBAC or ABAC) and organization.
timeZone?
Type:
string
(optional)
The IANA timezone identifier used when resolving time based dynamic values.
Required even if no time slices are specified.
valueLockLevel?
Type:
string
(optional)
The data level that concurrent value edits are locked on.
One of DATA_TABLE, PRIMARY_VALUE, ATTRIBUTE, VALUE, and NONE. Determines how concurrent edits are handled when multiple users attempt to modify values simultaneously.

.NET
Go
Java
Python
TypeScript