Show / Hide Table of Contents

Class CfnTablePropsMixin.AttributeDefinitionProperty

Represents an attribute for describing the schema for the table and indexes.

Inheritance
object
CfnTablePropsMixin.AttributeDefinitionProperty
Implements
CfnTablePropsMixin.IAttributeDefinitionProperty
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.DynamoDB
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnTablePropsMixin.AttributeDefinitionProperty : CfnTablePropsMixin.IAttributeDefinitionProperty
Syntax (vb)
Public Class CfnTablePropsMixin.AttributeDefinitionProperty Implements CfnTablePropsMixin.IAttributeDefinitionProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-attributedefinition.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.DynamoDB;

             var attributeDefinitionProperty = new AttributeDefinitionProperty {
                 AttributeName = "attributeName",
                 AttributeType = "attributeType"
             };

Synopsis

Constructors

AttributeDefinitionProperty()

Represents an attribute for describing the schema for the table and indexes.

Properties

AttributeName

A name for the attribute.

AttributeType

The data type for the attribute, where:.

Constructors

AttributeDefinitionProperty()

Represents an attribute for describing the schema for the table and indexes.

public AttributeDefinitionProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-attributedefinition.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.DynamoDB;

             var attributeDefinitionProperty = new AttributeDefinitionProperty {
                 AttributeName = "attributeName",
                 AttributeType = "attributeType"
             };

Properties

AttributeName

A name for the attribute.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-attributedefinition.html#cfn-dynamodb-table-attributedefinition-attributename

AttributeType

The data type for the attribute, where:.

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

string

Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-attributedefinition.html#cfn-dynamodb-table-attributedefinition-attributetype

    Implements

    CfnTablePropsMixin.IAttributeDefinitionProperty
    Back to top Generated by DocFX