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.
| 1186 1187 1188 1189 1190 1191 | # File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 1186 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.
| 1186 1187 1188 1189 1190 1191 | # File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 1186 class GetTypeRequest < Struct.new( :keyspace_name, :type_name) SENSITIVE = [] include Aws::Structure end |