Class: Aws::SSMIncidents::Types::AutomationExecution
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSMIncidents::Types::AutomationExecution
- Defined in:
- gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb
Overview
Note:
AutomationExecution is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AutomationExecution corresponding to the set member.
The Systems Manager automation document process to start as the runbook at the beginning of the incident.
Direct Known Subclasses
Defined Under Namespace
Classes: SsmExecutionArn, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ssm_execution_arn ⇒ String
The Amazon Resource Name (ARN) of the automation process.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#ssm_execution_arn ⇒ String
The Amazon Resource Name (ARN) of the automation process.
117 118 119 120 121 122 123 124 125 126 |
# File 'gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb', line 117 class AutomationExecution < Struct.new( :ssm_execution_arn, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class SsmExecutionArn < AutomationExecution; end class Unknown < AutomationExecution; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
117 118 119 |
# File 'gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb', line 117 def unknown @unknown end |