Class CfnDataTableProps
Properties for defining a CfnDataTable.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Connect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataTableProps : ICfnDataTableProps
Syntax (vb)
Public Class CfnDataTableProps Implements ICfnDataTableProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Connect;
var cfnDataTableProps = new CfnDataTableProps {
Description = "description",
InstanceArn = "instanceArn",
Name = "name",
Status = "status",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} },
TimeZone = "timeZone",
ValueLockLevel = "valueLockLevel"
};
Synopsis
Constructors
| CfnDataTableProps() | Properties for defining a |
Properties
| Description | An optional description of the data table's purpose and contents. |
| InstanceArn | The Amazon Resource Name (ARN) of the instance. |
| Name | The human-readable name of the data table. |
| Status | The current status of the data table. |
| Tags | Key-value pairs for attribute based access control (TBAC or ABAC) and organization. |
| TimeZone | The IANA timezone identifier used when resolving time based dynamic values. |
| ValueLockLevel | The data level that concurrent value edits are locked on. |
Constructors
CfnDataTableProps()
Properties for defining a CfnDataTable.
public CfnDataTableProps()
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Connect;
var cfnDataTableProps = new CfnDataTableProps {
Description = "description",
InstanceArn = "instanceArn",
Name = "name",
Status = "status",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} },
TimeZone = "timeZone",
ValueLockLevel = "valueLockLevel"
};
Properties
Description
An optional description of the data table's purpose and contents.
public string? Description { get; set; }
Property Value
Remarks
InstanceArn
The Amazon Resource Name (ARN) of the instance.
public string? InstanceArn { get; set; }
Property Value
Remarks
Name
The human-readable name of the data table.
public string? Name { get; set; }
Property Value
Remarks
Must be unique within the instance and conform to Connect naming standards.
Status
The current status of the data table.
public string? Status { get; set; }
Property Value
Remarks
One of PUBLISHED or SAVED.
Tags
Key-value pairs for attribute based access control (TBAC or ABAC) and organization.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]
Remarks
TimeZone
The IANA timezone identifier used when resolving time based dynamic values.
public string? TimeZone { get; set; }
Property Value
Remarks
Required even if no time slices are specified.
ValueLockLevel
The data level that concurrent value edits are locked on.
public string? ValueLockLevel { get; set; }
Property Value
Remarks
One of DATA_TABLE, PRIMARY_VALUE, ATTRIBUTE, VALUE, and NONE. Determines how concurrent edits are handled when multiple users attempt to modify values simultaneously.