You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::SSM::Types::DescribePatchGroupsRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing DescribePatchGroupsRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  max_results: 1,
  filters: [
    {
      key: "PatchOrchestratorFilterKey",
      values: ["PatchOrchestratorFilterValue"],
    },
  ],
  next_token: "NextToken",
}

Instance Attribute Summary collapse

Instance Attribute Details

#filtersArray<Types::PatchOrchestratorFilter>

One or more filters. Use a filter to return a more specific list of results.

For DescribePatchGroups,valid filter keys include the following:

  • NAME_PREFIX: The name of the patch group. Wildcards (*) are accepted.

  • OPERATING_SYSTEM: The supported operating system type to return results for. For valid operating system values, see GetDefaultPatchBaselineRequest$OperatingSystem in CreatePatchBaseline.

    Examples:

    • --filters Key=NAME_PREFIX,Values=MyPatchGroup*

    • --filters Key=OPERATING_SYSTEM,Values=AMAZON_LINUX_2

Returns:

#max_resultsInteger

The maximum number of patch groups to return (per page).

Returns:

  • (Integer)

    The maximum number of patch groups to return (per page).

#next_tokenString

The token for the next set of items to return. (You received this token from a previous call.)

Returns:

  • (String)

    The token for the next set of items to return.