Class: Aws::Glue::Types::DeleteSchemaVersionsInput
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::DeleteSchemaVersionsInput
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #schema_id  ⇒ Types::SchemaId 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    This is a wrapper structure that may contain the schema name and Amazon Resource Name (ARN). 
- 
  
    
      #versions  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A version range may be supplied which may be of the format:. 
Instance Attribute Details
#schema_id ⇒ Types::SchemaId
This is a wrapper structure that may contain the schema name and Amazon Resource Name (ARN).
| 8953 8954 8955 8956 8957 8958 | # File 'lib/aws-sdk-glue/types.rb', line 8953 class DeleteSchemaVersionsInput < Struct.new( :schema_id, :versions) SENSITIVE = [] include Aws::Structure end | 
#versions ⇒ String
A version range may be supplied which may be of the format:
- 
a single version number, 5 
- 
a range, 5-8 : deletes versions 5, 6, 7, 8 
| 8953 8954 8955 8956 8957 8958 | # File 'lib/aws-sdk-glue/types.rb', line 8953 class DeleteSchemaVersionsInput < Struct.new( :schema_id, :versions) SENSITIVE = [] include Aws::Structure end |