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)


7261
7262
7263
7264
7265
# File 'lib/aws-sdk-ssm/types.rb', line 7261

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)


7261
7262
7263
7264
7265
# File 'lib/aws-sdk-ssm/types.rb', line 7261

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