InstancePatchState

public struct InstancePatchState : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The ID of the patch baseline used to patch the instance.

    Declaration

    Swift

    public let baselineId: String
  • The number of patches from the patch baseline that were attempted to be installed during the last patching operation, but failed to install.

    Declaration

    Swift

    public let failedCount: Int?
  • The number of patches from the patch baseline that are installed on the instance.

    Declaration

    Swift

    public let installedCount: Int?
  • The number of patches not specified in the patch baseline that are installed on the instance.

    Declaration

    Swift

    public let installedOtherCount: Int?
  • The number of patches installed by Patch Manager since the last time the instance was rebooted.

    Declaration

    Swift

    public let installedPendingRebootCount: Int?
  • The number of patches installed on an instance that are specified in a RejectedPatches list. Patches with a status of InstalledRejected were typically installed before they were added to a RejectedPatches list. If ALLOW_AS_DEPENDENCY is the specified option for RejectedPatchesAction, the value of InstalledRejectedCount will always be 0 (zero).

    Declaration

    Swift

    public let installedRejectedCount: Int?
  • An https URL or an Amazon S3 path-style URL to a list of patches to be installed. This patch installation list, which you maintain in an S3 bucket in YAML format and specify in the SSM document AWS-RunPatchBaseline, overrides the patches specified by the default patch baseline. For more information about the InstallOverrideList parameter, see About the SSM document AWS-RunPatchBaseline in the AWS Systems Manager User Guide.

    Declaration

    Swift

    public let installOverrideList: String?
  • The ID of the managed instance the high-level patch compliance information was collected for.

    Declaration

    Swift

    public let instanceId: String
  • The time of the last attempt to patch the instance with NoReboot specified as the reboot option.

    Declaration

    Swift

    public let lastNoRebootInstallOperationTime: TimeStamp?
  • The number of patches from the patch baseline that are applicable for the instance but aren’t currently installed.

    Declaration

    Swift

    public let missingCount: Int?
  • The number of patches from the patch baseline that aren’t applicable for the instance and therefore aren’t installed on the instance. This number may be truncated if the list of patch names is very large. The number of patches beyond this limit are reported in UnreportedNotApplicableCount.

    Declaration

    Swift

    public let notApplicableCount: Int?
  • The type of patching operation that was performed: SCAN (assess patch compliance state) or INSTALL (install missing patches).

    Declaration

    Swift

    public let operation: PatchOperationType
  • The time the most recent patching operation completed on the instance.

    Declaration

    Swift

    public let operationEndTime: TimeStamp
  • The time the most recent patching operation was started on the instance.

    Declaration

    Swift

    public let operationStartTime: TimeStamp
  • Placeholder information. This field will always be empty in the current release of the service.

    Declaration

    Swift

    public let ownerInformation: String?
  • The name of the patch group the managed instance belongs to.

    Declaration

    Swift

    public let patchGroup: String
  • Indicates the reboot option specified in the patch baseline. Reboot options apply to Install operations only. Reboots are not attempted for Patch Manager Scan operations. RebootIfNeeded: Patch Manager tries to reboot the instance if it installed any patches, or if any patches are detected with a status of InstalledPendingReboot. NoReboot: Patch Manager attempts to install missing packages without trying to reboot the system. Patches installed with this option are assigned a status of InstalledPendingReboot. These patches might not be in effect until a reboot is performed.

    Declaration

    Swift

    public let rebootOption: RebootOption?
  • The ID of the patch baseline snapshot used during the patching operation when this compliance data was collected.

    Declaration

    Swift

    public let snapshotId: String?
  • The number of patches beyond the supported limit of NotApplicableCount that are not reported by name to Systems Manager Inventory.

    Declaration

    Swift

    public let unreportedNotApplicableCount: Int?
  • Undocumented

    Declaration

    Swift

    public init(baselineId: String, failedCount: Int? = nil, installedCount: Int? = nil, installedOtherCount: Int? = nil, installedPendingRebootCount: Int? = nil, installedRejectedCount: Int? = nil, installOverrideList: String? = nil, instanceId: String, lastNoRebootInstallOperationTime: TimeStamp? = nil, missingCount: Int? = nil, notApplicableCount: Int? = nil, operation: PatchOperationType, operationEndTime: TimeStamp, operationStartTime: TimeStamp, ownerInformation: String? = nil, patchGroup: String, rebootOption: RebootOption? = nil, snapshotId: String? = nil, unreportedNotApplicableCount: Int? = nil)