interface CfnDataTableMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnDataTableMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnDataTableMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnDataTableMixinProps |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnDataTableMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnDataTableMixinProps |
Properties for CfnDataTablePropsMixin.
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 { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const cfnDataTableMixinProps: connect_mixins.CfnDataTableMixinProps = {
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