Class: Aws::SSMIncidents::Types::Action
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSMIncidents::Types::Action
- Defined in:
- gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb
Overview
Note:
Action is a union - when making an API calls you must set exactly one of the members.
Note:
Action is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Action corresponding to the set member.
The action that starts at the beginning of an incident. The response plan defines the action.
Direct Known Subclasses
Defined Under Namespace
Classes: SsmAutomation, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ssm_automation ⇒ Types::SsmAutomation
The Systems Manager automation document to start as the runbook at the beginning of the incident.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#ssm_automation ⇒ Types::SsmAutomation
The Systems Manager automation document to start as the runbook at the beginning of the incident.
40 41 42 43 44 45 46 47 48 49 |
# File 'gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb', line 40 class Action < Struct.new( :ssm_automation, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class SsmAutomation < Action; end class Unknown < Action; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
40 41 42 |
# File 'gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb', line 40 def unknown @unknown end |