Interface FieldDefinition.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FieldDefinition.Builder,FieldDefinition>,SdkBuilder<FieldDefinition.Builder,FieldDefinition>,SdkPojo
- Enclosing class:
- FieldDefinition
public static interface FieldDefinition.Builder extends SdkPojo, CopyableBuilder<FieldDefinition.Builder,FieldDefinition>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FieldDefinition.Buildername(String name)The identifier.FieldDefinition.Buildertype(String type)Any supported Cassandra data type, including collections and other user-defined types that are contained in the same keyspace.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
name
FieldDefinition.Builder name(String name)
The identifier.
- Parameters:
name- The identifier.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
FieldDefinition.Builder type(String type)
Any supported Cassandra data type, including collections and other user-defined types that are contained in the same keyspace.
For more information, see Cassandra data type support in the Amazon Keyspaces Developer Guide.
- Parameters:
type- Any supported Cassandra data type, including collections and other user-defined types that are contained in the same keyspace.For more information, see Cassandra data type support in the Amazon Keyspaces Developer Guide.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-