Class: Aws::Keyspaces::Types::FieldDefinition
- Inherits:
-
Struct
- Object
- Struct
- Aws::Keyspaces::Types::FieldDefinition
- Includes:
- Structure
- Defined in:
- 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 '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*.
[1]: docs.aws.amazon.com/keyspaces/latest/devguide/cassandra-apis.html#cassandra-data-type
864 865 866 867 868 869 |
# File 'lib/aws-sdk-keyspaces/types.rb', line 864 class FieldDefinition < Struct.new( :name, :type) SENSITIVE = [] include Aws::Structure end |