Show / Hide Table of Contents

Class CfnTable.AttributeDefinitionProperty

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

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

    CfnTable.IAttributeDefinitionProperty
    Back to top Generated by DocFX