Class: Aws::RoboMaker::Types::WorldGenerationJobSummary
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::RoboMaker::Types::WorldGenerationJobSummary
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-robomaker/types.rb
 
Overview
Information about a world generator job.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) of the world generator job.
 - 
  
    
      #created_at  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The time, in milliseconds since the epoch, when the world generator job was created.
 - 
  
    
      #failed_world_count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of worlds that failed.
 - 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The status of the world generator job:.
 - 
  
    
      #succeeded_world_count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of worlds that were generated.
 - 
  
    
      #template  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (arn) of the world template.
 - 
  
    
      #world_count  ⇒ Types::WorldCount 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Information about the world count.
 
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) of the world generator job.
      5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972  | 
    
      # File 'lib/aws-sdk-robomaker/types.rb', line 5962 class WorldGenerationJobSummary < Struct.new( :arn, :template, :created_at, :status, :world_count, :succeeded_world_count, :failed_world_count) SENSITIVE = [] include Aws::Structure end  | 
  
#created_at ⇒ Time
The time, in milliseconds since the epoch, when the world generator job was created.
      5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972  | 
    
      # File 'lib/aws-sdk-robomaker/types.rb', line 5962 class WorldGenerationJobSummary < Struct.new( :arn, :template, :created_at, :status, :world_count, :succeeded_world_count, :failed_world_count) SENSITIVE = [] include Aws::Structure end  | 
  
#failed_world_count ⇒ Integer
The number of worlds that failed.
      5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972  | 
    
      # File 'lib/aws-sdk-robomaker/types.rb', line 5962 class WorldGenerationJobSummary < Struct.new( :arn, :template, :created_at, :status, :world_count, :succeeded_world_count, :failed_world_count) SENSITIVE = [] include Aws::Structure end  | 
  
#status ⇒ String
The status of the world generator job:
Pending
: The world generator job request is pending.
Running
: The world generator job is running.
Completed
: The world generator job completed.
Failed
: The world generator job failed. See ‘failureCode` for more
information.
PartialFailed
: Some worlds did not generate.
Canceled
: The world generator job was cancelled.
Canceling
: The world generator job is being cancelled.
      5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972  | 
    
      # File 'lib/aws-sdk-robomaker/types.rb', line 5962 class WorldGenerationJobSummary < Struct.new( :arn, :template, :created_at, :status, :world_count, :succeeded_world_count, :failed_world_count) SENSITIVE = [] include Aws::Structure end  | 
  
#succeeded_world_count ⇒ Integer
The number of worlds that were generated.
      5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972  | 
    
      # File 'lib/aws-sdk-robomaker/types.rb', line 5962 class WorldGenerationJobSummary < Struct.new( :arn, :template, :created_at, :status, :world_count, :succeeded_world_count, :failed_world_count) SENSITIVE = [] include Aws::Structure end  | 
  
#template ⇒ String
The Amazon Resource Name (arn) of the world template.
      5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972  | 
    
      # File 'lib/aws-sdk-robomaker/types.rb', line 5962 class WorldGenerationJobSummary < Struct.new( :arn, :template, :created_at, :status, :world_count, :succeeded_world_count, :failed_world_count) SENSITIVE = [] include Aws::Structure end  | 
  
#world_count ⇒ Types::WorldCount
Information about the world count.
      5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972  | 
    
      # File 'lib/aws-sdk-robomaker/types.rb', line 5962 class WorldGenerationJobSummary < Struct.new( :arn, :template, :created_at, :status, :world_count, :succeeded_world_count, :failed_world_count) SENSITIVE = [] include Aws::Structure end  |