Show / Hide Table of Contents

Interface CfnTable.IAttributeDefinitionProperty

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

Namespace: Amazon.CDK.AWS.DynamoDB
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnTable.IAttributeDefinitionProperty
Syntax (vb)
Public Interface 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

Properties

AttributeName

A name for the attribute.

AttributeType

The data type for the attribute, where:.

Properties

AttributeName

A name for the attribute.

string AttributeName { get; }
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:.

string AttributeType { get; }
Property Value

string

Remarks

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

    Back to top Generated by DocFX