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 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();
 
 - See Also:
 
- 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTable.AttributeDefinitionPropertystatic final classAn implementation forCfnTable.AttributeDefinitionProperty - 
Method Summary
Modifier and TypeMethodDescriptionbuilder()A name for the attribute.The data type for the attribute, where:.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getAttributeName
A name for the attribute.- See Also:
 
 - 
getAttributeType
The data type for the attribute, where:.S- the attribute is of type StringN- the attribute is of type NumberB- the attribute is of type Binary
- See Also:
 
 - 
builder
 
 -