Class: Aws::ECS::Types::Failure
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::Failure
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ecs/types.rb
Overview
A failed resource. For a list of common causes, see [API failure reasons] in the *Amazon Elastic Container Service Developer Guide*.
[1]: docs.aws.amazon.com/AmazonECS/latest/developerguide/api_failures_messages.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The Amazon Resource Name (ARN) of the failed resource.
-
#detail ⇒ String
The details of the failure.
-
#reason ⇒ String
The reason for the failure.
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) of the failed resource.
5168 5169 5170 5171 5172 5173 5174 |
# File 'lib/aws-sdk-ecs/types.rb', line 5168 class Failure < Struct.new( :arn, :reason, :detail) SENSITIVE = [] include Aws::Structure end |