Class: Aws::Keyspaces::Types::FieldDefinition

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#nameString

The identifier.

Returns:

  • (String)


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

#typeString

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:

  • (String)


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