Class: Aws::SSM::Types::FailureDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::FailureDetails
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ssm/types.rb
Overview
Information about an Automation failure.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#details ⇒ Hash<String,Array<String>>
Detailed information about the Automation step failure.
-
#failure_stage ⇒ String
The stage of the Automation execution when the failure occurred.
-
#failure_type ⇒ String
The type of Automation failure.
Instance Attribute Details
#details ⇒ Hash<String,Array<String>>
Detailed information about the Automation step failure.
7482 7483 7484 7485 7486 7487 7488 |
# File 'lib/aws-sdk-ssm/types.rb', line 7482 class FailureDetails < Struct.new( :failure_stage, :failure_type, :details) SENSITIVE = [] include Aws::Structure end |
#failure_stage ⇒ String
The stage of the Automation execution when the failure occurred. The stages include the following: InputValidation, PreVerification, Invocation, PostVerification.
7482 7483 7484 7485 7486 7487 7488 |
# File 'lib/aws-sdk-ssm/types.rb', line 7482 class FailureDetails < Struct.new( :failure_stage, :failure_type, :details) SENSITIVE = [] include Aws::Structure end |
#failure_type ⇒ String
The type of Automation failure. Failure types include the following: Action, Permission, Throttling, Verification, Internal.
7482 7483 7484 7485 7486 7487 7488 |
# File 'lib/aws-sdk-ssm/types.rb', line 7482 class FailureDetails < Struct.new( :failure_stage, :failure_type, :details) SENSITIVE = [] include Aws::Structure end |