Class: Aws::Keyspaces::Types::GetTypeRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Keyspaces::Types::GetTypeRequest
- Defined in:
- gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#keyspace_name ⇒ String
The name of the keyspace that contains this type.
-
#type_name ⇒ String
The formatted name of the type.
Instance Attribute Details
#keyspace_name ⇒ String
The name of the keyspace that contains this type.
1082 1083 1084 1085 1086 1087 |
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 1082 class GetTypeRequest < Struct.new( :keyspace_name, :type_name) SENSITIVE = [] include Aws::Structure end |
#type_name ⇒ String
The formatted name of the type. For example, if the name of the type was created without double quotes, Amazon Keyspaces saved the name in lower-case characters. If the name was created in double quotes, you must use double quotes to specify the type name.
1082 1083 1084 1085 1086 1087 |
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 1082 class GetTypeRequest < Struct.new( :keyspace_name, :type_name) SENSITIVE = [] include Aws::Structure end |