interface CfnDataTableMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnDataTableMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnDataTableMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnDataTableMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnDataTableMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » 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 { aws_connect as connect } from '@aws-cdk/cfn-property-mixins';
const cfnDataTableMixinProps: connect.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