Learn R Programming

paws.management (version 0.1.12)

ssm_describe_instance_patch_states: Retrieves the high-level patch state of one or more instances

Description

Retrieves the high-level patch state of one or more instances.

Usage

ssm_describe_instance_patch_states(InstanceIds, NextToken, MaxResults)

Value

A list with the following syntax:

list(
  InstancePatchStates = list(
    list(
      InstanceId = "string",
      PatchGroup = "string",
      BaselineId = "string",
      SnapshotId = "string",
      InstallOverrideList = "string",
      OwnerInformation = "string",
      InstalledCount = 123,
      InstalledOtherCount = 123,
      InstalledPendingRebootCount = 123,
      InstalledRejectedCount = 123,
      MissingCount = 123,
      FailedCount = 123,
      UnreportedNotApplicableCount = 123,
      NotApplicableCount = 123,
      OperationStartTime = as.POSIXct(
        "2015-01-01"
      ),
      OperationEndTime = as.POSIXct(
        "2015-01-01"
      ),
      Operation = "Scan"|"Install",
      LastNoRebootInstallOperationTime = as.POSIXct(
        "2015-01-01"
      ),
      RebootOption = "RebootIfNeeded"|"NoReboot"
    )
  ),
  NextToken = "string"
)

Arguments

InstanceIds

[required] The ID of the instance whose patch state information should be retrieved.

NextToken

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

MaxResults

The maximum number of instances to return (per page).

Request syntax

svc$describe_instance_patch_states(
  InstanceIds = list(
    "string"
  ),
  NextToken = "string",
  MaxResults = 123
)