Interface CfnTable.AttributeDefinitionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTable.AttributeDefinitionProperty.Jsii$Proxy
Enclosing class:
CfnTable

@Stability(Stable) public static interface CfnTable.AttributeDefinitionProperty extends software.amazon.jsii.JsiiSerializable
Represents an attribute for describing the key schema for the table and indexes.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.dynamodb.*;
 AttributeDefinitionProperty attributeDefinitionProperty = AttributeDefinitionProperty.builder()
         .attributeName("attributeName")
         .attributeType("attributeType")
         .build();