Class: Aws::Glue::Types::LastActiveDefinition
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::LastActiveDefinition
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
When there are multiple versions of a blueprint and the latest version has some errors, this attribute indicates the last successful blueprint definition that is available with the service.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #blueprint_location  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies a path in Amazon S3 where the blueprint is published by the Glue developer. 
- 
  
    
      #blueprint_service_location  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies a path in Amazon S3 where the blueprint is copied when you create or update the blueprint. 
- 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The description of the blueprint. 
- 
  
    
      #last_modified_on  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The date and time the blueprint was last modified. 
- 
  
    
      #parameter_spec  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A JSON string specifying the parameters for the blueprint. 
Instance Attribute Details
#blueprint_location ⇒ String
Specifies a path in Amazon S3 where the blueprint is published by the Glue developer.
| 17729 17730 17731 17732 17733 17734 17735 17736 17737 | # File 'lib/aws-sdk-glue/types.rb', line 17729 class LastActiveDefinition < Struct.new( :description, :last_modified_on, :parameter_spec, :blueprint_location, :blueprint_service_location) SENSITIVE = [] include Aws::Structure end | 
#blueprint_service_location ⇒ String
Specifies a path in Amazon S3 where the blueprint is copied when you create or update the blueprint.
| 17729 17730 17731 17732 17733 17734 17735 17736 17737 | # File 'lib/aws-sdk-glue/types.rb', line 17729 class LastActiveDefinition < Struct.new( :description, :last_modified_on, :parameter_spec, :blueprint_location, :blueprint_service_location) SENSITIVE = [] include Aws::Structure end | 
#description ⇒ String
The description of the blueprint.
| 17729 17730 17731 17732 17733 17734 17735 17736 17737 | # File 'lib/aws-sdk-glue/types.rb', line 17729 class LastActiveDefinition < Struct.new( :description, :last_modified_on, :parameter_spec, :blueprint_location, :blueprint_service_location) SENSITIVE = [] include Aws::Structure end | 
#last_modified_on ⇒ Time
The date and time the blueprint was last modified.
| 17729 17730 17731 17732 17733 17734 17735 17736 17737 | # File 'lib/aws-sdk-glue/types.rb', line 17729 class LastActiveDefinition < Struct.new( :description, :last_modified_on, :parameter_spec, :blueprint_location, :blueprint_service_location) SENSITIVE = [] include Aws::Structure end | 
#parameter_spec ⇒ String
A JSON string specifying the parameters for the blueprint.
| 17729 17730 17731 17732 17733 17734 17735 17736 17737 | # File 'lib/aws-sdk-glue/types.rb', line 17729 class LastActiveDefinition < Struct.new( :description, :last_modified_on, :parameter_spec, :blueprint_location, :blueprint_service_location) SENSITIVE = [] include Aws::Structure end |