Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DescribeInstancePatchesResult

import type { DescribeInstancePatchesResult } from "https://aws-api.deno.dev/v0.3/services/ssm.ts?docs=full";
interface DescribeInstancePatchesResult {
NextToken?: string | null;
Patches?: PatchComplianceData[] | null;
}

§Properties

§
NextToken?: string | null
[src]

The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.

§
Patches?: PatchComplianceData[] | null
[src]

Each entry in the array is a structure containing:

  • Title (string)
  • KBId (string)
  • Classification (string)
  • Severity (string)
  • State (string, such as "INSTALLED" or "FAILED")
  • InstalledTime (DateTime)
  • InstalledBy (string)