Class: Aws::SSMIncidents::Types::Action

Inherits:
Struct
  • Object
show all
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

SsmAutomation, Unknown

Defined Under Namespace

Classes: SsmAutomation, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#ssm_automationTypes::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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



40
41
42
# File 'gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb', line 40

def unknown
  @unknown
end