Class: Aws::RoboMaker::Types::WorldFailure

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-robomaker/types.rb

Overview

Information about a failed world.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#failure_codeString

The failure code of the world export job if it failed:

InternalServiceError

: Internal service error.

LimitExceeded

: The requested resource exceeds the maximum number allowed, or the

number of concurrent stream requests exceeds the maximum number
allowed.

ResourceNotFound

: The specified resource could not be found.

RequestThrottled

: The request was throttled.

InvalidInput

: An input parameter in the request is not valid.

Returns:

  • (String)


5892
5893
5894
5895
5896
5897
5898
# File 'lib/aws-sdk-robomaker/types.rb', line 5892

class WorldFailure < Struct.new(
  :failure_code,
  :sample_failure_reason,
  :failure_count)
  SENSITIVE = []
  include Aws::Structure
end

#failure_countInteger

The number of failed worlds.

Returns:

  • (Integer)


5892
5893
5894
5895
5896
5897
5898
# File 'lib/aws-sdk-robomaker/types.rb', line 5892

class WorldFailure < Struct.new(
  :failure_code,
  :sample_failure_reason,
  :failure_count)
  SENSITIVE = []
  include Aws::Structure
end

#sample_failure_reasonString

The sample reason why the world failed. World errors are aggregated. A sample is used as the ‘sampleFailureReason`.

Returns:

  • (String)


5892
5893
5894
5895
5896
5897
5898
# File 'lib/aws-sdk-robomaker/types.rb', line 5892

class WorldFailure < Struct.new(
  :failure_code,
  :sample_failure_reason,
  :failure_count)
  SENSITIVE = []
  include Aws::Structure
end