Class: Aws::SSM::Types::DeregisterPatchBaselineForPatchGroupRequest

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

{
  baseline_id: "BaselineId", # required
  patch_group: "PatchGroup", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#baseline_idString

The ID of the patch baseline to deregister the patch group from.

Returns:

  • (String)


3670
3671
3672
3673
3674
# File 'lib/aws-sdk-ssm/types.rb', line 3670

class DeregisterPatchBaselineForPatchGroupRequest < Struct.new(
  :baseline_id,
  :patch_group)
  include Aws::Structure
end

#patch_groupString

The name of the patch group that should be deregistered from the patch baseline.

Returns:

  • (String)


3670
3671
3672
3673
3674
# File 'lib/aws-sdk-ssm/types.rb', line 3670

class DeregisterPatchBaselineForPatchGroupRequest < Struct.new(
  :baseline_id,
  :patch_group)
  include Aws::Structure
end