Class: Aws::SSMIncidents::Types::AutomationExecution
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSMIncidents::Types::AutomationExecution
- Includes:
- Aws::Structure, Aws::Structure::Union
- Defined in:
- 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.
109 110 111 112 113 114 115 116 117 118 |
# File 'lib/aws-sdk-ssmincidents/types.rb', line 109 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
109 110 111 |
# File 'lib/aws-sdk-ssmincidents/types.rb', line 109 def unknown @unknown end |