Learn R Programming

paws.management (version 0.1.12)

ssm_describe_patch_baselines: Lists the patch baselines in your AWS account

Description

Lists the patch baselines in your AWS account.

Usage

ssm_describe_patch_baselines(Filters, MaxResults, NextToken)

Value

A list with the following syntax:

list(
  BaselineIdentities = list(
    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"
)

Arguments

Filters

Each element in the array is a structure containing:

Key: (string, "NAME_PREFIX" or "OWNER")

Value: (array of strings, exactly 1 entry, between 1 and 255 characters)

MaxResults

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

NextToken

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

Request syntax

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