Class: Aws::Keyspaces::Types::FieldDefinition
- Inherits:
-
Struct
- Object
- Struct
- Aws::Keyspaces::Types::FieldDefinition
- Defined in:
- gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb
Overview
A field definition consists out of a name and a type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The identifier.
-
#type ⇒ String
Any supported Cassandra data type, including collections and other user-defined types that are contained in the same keyspace.
Instance Attribute Details
#name ⇒ String
The identifier.
864 865 866 867 868 869 |
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 864 class FieldDefinition < Struct.new( :name, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
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.
864 865 866 867 868 869 |
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 864 class FieldDefinition < Struct.new( :name, :type) SENSITIVE = [] include Aws::Structure end |