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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnGlobalTable.AttributeDefinitionProperty
static final class
An 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
-