Class: Aws::SSM::Types::GetMaintenanceWindowExecutionTaskRequest

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 GetMaintenanceWindowExecutionTaskRequest data as a hash:

{
  window_execution_id: "MaintenanceWindowExecutionId", # required
  task_id: "MaintenanceWindowExecutionTaskId", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#task_idString

The ID of the specific task execution in the Maintenance Window task that should be retrieved.

Returns:

  • (String)


6359
6360
6361
6362
6363
# File 'lib/aws-sdk-ssm/types.rb', line 6359

class GetMaintenanceWindowExecutionTaskRequest < Struct.new(
  :window_execution_id,
  :task_id)
  include Aws::Structure
end

#window_execution_idString

The ID of the Maintenance Window execution that includes the task.

Returns:

  • (String)


6359
6360
6361
6362
6363
# File 'lib/aws-sdk-ssm/types.rb', line 6359

class GetMaintenanceWindowExecutionTaskRequest < Struct.new(
  :window_execution_id,
  :task_id)
  include Aws::Structure
end