Learn R Programming

paws.management (version 0.1.11)

ssm_describe_patch_groups: Lists all patch groups that have been registered with patch baselines

Description

Lists all patch groups that have been registered with patch baselines.

Usage

ssm_describe_patch_groups(MaxResults, Filters, NextToken)

Arguments

MaxResults

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

Filters

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

For describe_patch_groups,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 create_patch_baseline.

    Examples:

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

    • --filters Key=OPERATING_SYSTEM,Values=AMAZON_LINUX_2

NextToken

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

Value

A list with the following syntax:

list(
  Mappings = list(
    list(
      PatchGroup = "string",
      BaselineIdentity = list(
        BaselineId = "string",
        BaselineName = "string",
        OperatingSystem = "WINDOWS"|"AMAZON_LINUX"|"AMAZON_LINUX_2"|"UBUNTU"|"REDHAT_ENTERPRISE_LINUX"|"SUSE"|"CENTOS"|"ORACLE_LINUX"|"DEBIAN"|"MACOS",
        BaselineDescription = "string",
        DefaultBaseline = TRUE|FALSE
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$describe_patch_groups(
  MaxResults = 123,
  Filters = list(
    list(
      Key = "string",
      Values = list(
        "string"
      )
    )
  ),
  NextToken = "string"
)