Class: Aws::SSM::Types::UpdateMaintenanceWindowTargetRequest

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

{
  window_id: "MaintenanceWindowId", # required
  window_target_id: "MaintenanceWindowTargetId", # required
  targets: [
    {
      key: "TargetKey",
      values: ["TargetValue"],
    },
  ],
  owner_information: "OwnerInformation",
  name: "MaintenanceWindowName",
  description: "MaintenanceWindowDescription",
  replace: false,
}

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

An optional description for the update.

Returns:

  • (String)


16293
16294
16295
16296
16297
16298
16299
16300
16301
16302
# File 'lib/aws-sdk-ssm/types.rb', line 16293

class UpdateMaintenanceWindowTargetRequest < Struct.new(
  :window_id,
  :window_target_id,
  :targets,
  :owner_information,
  :name,
  :description,
  :replace)
  include Aws::Structure
end

#nameString

A name for the update.

Returns:

  • (String)


16293
16294
16295
16296
16297
16298
16299
16300
16301
16302
# File 'lib/aws-sdk-ssm/types.rb', line 16293

class UpdateMaintenanceWindowTargetRequest < Struct.new(
  :window_id,
  :window_target_id,
  :targets,
  :owner_information,
  :name,
  :description,
  :replace)
  include Aws::Structure
end

#owner_informationString

User-provided value that will be included in any CloudWatch events raised while running tasks for these targets in this maintenance window.

Returns:

  • (String)


16293
16294
16295
16296
16297
16298
16299
16300
16301
16302
# File 'lib/aws-sdk-ssm/types.rb', line 16293

class UpdateMaintenanceWindowTargetRequest < Struct.new(
  :window_id,
  :window_target_id,
  :targets,
  :owner_information,
  :name,
  :description,
  :replace)
  include Aws::Structure
end

#replaceBoolean

If True, then all fields that are required by the RegisterTargetWithMaintenanceWindow action are also required for this API request. Optional fields that are not specified are set to null.

Returns:

  • (Boolean)


16293
16294
16295
16296
16297
16298
16299
16300
16301
16302
# File 'lib/aws-sdk-ssm/types.rb', line 16293

class UpdateMaintenanceWindowTargetRequest < Struct.new(
  :window_id,
  :window_target_id,
  :targets,
  :owner_information,
  :name,
  :description,
  :replace)
  include Aws::Structure
end

#targetsArray<Types::Target>

The targets to add or replace.

Returns:



16293
16294
16295
16296
16297
16298
16299
16300
16301
16302
# File 'lib/aws-sdk-ssm/types.rb', line 16293

class UpdateMaintenanceWindowTargetRequest < Struct.new(
  :window_id,
  :window_target_id,
  :targets,
  :owner_information,
  :name,
  :description,
  :replace)
  include Aws::Structure
end

#window_idString

The maintenance window ID with which to modify the target.

Returns:

  • (String)


16293
16294
16295
16296
16297
16298
16299
16300
16301
16302
# File 'lib/aws-sdk-ssm/types.rb', line 16293

class UpdateMaintenanceWindowTargetRequest < Struct.new(
  :window_id,
  :window_target_id,
  :targets,
  :owner_information,
  :name,
  :description,
  :replace)
  include Aws::Structure
end

#window_target_idString

The target ID to modify.

Returns:

  • (String)


16293
16294
16295
16296
16297
16298
16299
16300
16301
16302
# File 'lib/aws-sdk-ssm/types.rb', line 16293

class UpdateMaintenanceWindowTargetRequest < Struct.new(
  :window_id,
  :window_target_id,
  :targets,
  :owner_information,
  :name,
  :description,
  :replace)
  include Aws::Structure
end