Class: Aws::SSM::Types::ExecutionInputs
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::ExecutionInputs
- Includes:
- Aws::Structure, Aws::Structure::Union
- Defined in:
- lib/aws-sdk-ssm/types.rb
Overview
Note:
ExecutionInputs is a union - when making an API calls you must set exactly one of the members.
Information about the inputs for an execution preview.
Direct Known Subclasses
Defined Under Namespace
Classes: Automation, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#automation ⇒ Types::AutomationExecutionInputs
Information about the optional inputs that can be specified for an automation execution preview.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#automation ⇒ Types::AutomationExecutionInputs
Information about the optional inputs that can be specified for an automation execution preview.
7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 |
# File 'lib/aws-sdk-ssm/types.rb', line 7405 class ExecutionInputs < Struct.new( :automation, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Automation < ExecutionInputs; end class Unknown < ExecutionInputs; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
7405 7406 7407 |
# File 'lib/aws-sdk-ssm/types.rb', line 7405 def unknown @unknown end |