Class: Aws::RoboMaker::Types::WorldFailure
- Inherits:
-
Struct
- Object
- Struct
- Aws::RoboMaker::Types::WorldFailure
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-robomaker/types.rb
Overview
Information about a failed world.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#failure_code ⇒ String
The failure code of the world export job if it failed:.
-
#failure_count ⇒ Integer
The number of failed worlds.
-
#sample_failure_reason ⇒ String
The sample reason why the world failed.
Instance Attribute Details
#failure_code ⇒ String
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.
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_count ⇒ Integer
The number of failed worlds.
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_reason ⇒ String
The sample reason why the world failed. World errors are aggregated. A sample is used as the ‘sampleFailureReason`.
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 |