Show / Hide Table of Contents

Class CfnDataTableRecordMixinProps

Properties for CfnDataTableRecordPropsMixin.

Inheritance
object
CfnDataTableRecordMixinProps
Implements
ICfnDataTableRecordMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Connect
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnDataTableRecordMixinProps : ICfnDataTableRecordMixinProps
Syntax (vb)
Public Class CfnDataTableRecordMixinProps Implements ICfnDataTableRecordMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatablerecord.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.CfnPropertyMixins.AWS.Connect;

             var cfnDataTableRecordMixinProps = new CfnDataTableRecordMixinProps {
                 DataTableArn = "dataTableArn",
                 DataTableRecord = new DataTableRecordProperty {
                     PrimaryValues = new [] { new ValueProperty {
                         AttributeId = "attributeId",
                         AttributeValue = "attributeValue"
                     } },
                     Values = new [] { new ValueProperty {
                         AttributeId = "attributeId",
                         AttributeValue = "attributeValue"
                     } }
                 },
                 InstanceArn = "instanceArn"
             };

Synopsis

Constructors

CfnDataTableRecordMixinProps()

Properties for CfnDataTableRecordPropsMixin.

Properties

DataTableArn

The Amazon Resource Name (ARN) for the data table.

DataTableRecord

Properties for CfnDataTableRecordPropsMixin.

InstanceArn

The Amazon Resource Name (ARN) of the instance.

Constructors

CfnDataTableRecordMixinProps()

Properties for CfnDataTableRecordPropsMixin.

public CfnDataTableRecordMixinProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatablerecord.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.CfnPropertyMixins.AWS.Connect;

             var cfnDataTableRecordMixinProps = new CfnDataTableRecordMixinProps {
                 DataTableArn = "dataTableArn",
                 DataTableRecord = new DataTableRecordProperty {
                     PrimaryValues = new [] { new ValueProperty {
                         AttributeId = "attributeId",
                         AttributeValue = "attributeValue"
                     } },
                     Values = new [] { new ValueProperty {
                         AttributeId = "attributeId",
                         AttributeValue = "attributeValue"
                     } }
                 },
                 InstanceArn = "instanceArn"
             };

Properties

DataTableArn

The Amazon Resource Name (ARN) for the data table.

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

string

Remarks

Does not include version aliases.

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

DataTableRecord

Properties for CfnDataTableRecordPropsMixin.

public object? DataTableRecord { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnDataTableRecordPropsMixin.IDataTableRecordProperty

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-datatablerecord.html#cfn-connect-datatablerecord-instancearn

Implements

ICfnDataTableRecordMixinProps
Back to top Generated by DocFX