Class: Aws::SSM::Types::ExecutionPreview

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb

Overview

Note:

ExecutionPreview is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ExecutionPreview corresponding to the set member.

Information about the changes that would be made if an execution were run.

Direct Known Subclasses

Automation, Unknown

Defined Under Namespace

Classes: Automation, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#automationTypes::AutomationExecutionPreview

Information about the changes that would be made if an Automation workflow were run.



7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 7547

class ExecutionPreview < Struct.new(
  :automation,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Automation < ExecutionPreview; end
  class Unknown < ExecutionPreview; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



7547
7548
7549
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 7547

def unknown
  @unknown
end