Show / Hide Table of Contents

Class CfnDataTableProps

Properties for defining a CfnDataTable.

Inheritance
object
CfnDataTableProps
Implements
ICfnDataTableProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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 CfnDataTable.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.html#cfn-connect-datatable-description

InstanceArn

The Amazon Resource Name (ARN) of the instance.

public string? InstanceArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.html#cfn-connect-datatable-instancearn

Name

The human-readable name of the data table.

public string? Name { get; set; }
Property Value

string

Remarks

Must be unique within the instance and conform to Connect naming standards.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.html#cfn-connect-datatable-name

Status

The current status of the data table.

public string? Status { get; set; }
Property Value

string

Remarks

One of PUBLISHED or SAVED.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.html#cfn-connect-datatable-status

Tags

Key-value pairs for attribute based access control (TBAC or ABAC) and organization.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.html#cfn-connect-datatable-tags

TimeZone

The IANA timezone identifier used when resolving time based dynamic values.

public string? TimeZone { get; set; }
Property Value

string

Remarks

Required even if no time slices are specified.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.html#cfn-connect-datatable-timezone

ValueLockLevel

The data level that concurrent value edits are locked on.

public string? ValueLockLevel { get; set; }
Property Value

string

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.html#cfn-connect-datatable-valuelocklevel

Implements

ICfnDataTableProps
Back to top Generated by DocFX