Class: Aws::SSM::Types::StopAutomationExecutionRequest

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

Overview

Note:

When making an API call, you may pass StopAutomationExecutionRequest data as a hash:

{
  automation_execution_id: "AutomationExecutionId", # required
  type: "Complete", # accepts Complete, Cancel
}

Instance Attribute Summary collapse

Instance Attribute Details

#automation_execution_idString

The execution ID of the Automation to stop.

Returns:

  • (String)


15368
15369
15370
15371
15372
# File 'lib/aws-sdk-ssm/types.rb', line 15368

class StopAutomationExecutionRequest < Struct.new(
  :automation_execution_id,
  :type)
  include Aws::Structure
end

#typeString

The stop request type. Valid types include the following: Cancel and Complete. The default type is Cancel.

Returns:

  • (String)


15368
15369
15370
15371
15372
# File 'lib/aws-sdk-ssm/types.rb', line 15368

class StopAutomationExecutionRequest < Struct.new(
  :automation_execution_id,
  :type)
  include Aws::Structure
end