Interface CfnGlobalTable.AttributeDefinitionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGlobalTable.AttributeDefinitionProperty.Jsii$Proxy
- Enclosing class:
- CfnGlobalTable
@Stability(Stable)
public static interface CfnGlobalTable.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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnGlobalTable.AttributeDefinitionPropertystatic final classAn implementation forCfnGlobalTable.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. -
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
-
builder
-