/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.securityhub.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *

* Provides the details about the compliance status for a patch. *

* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class AwsSsmComplianceSummary implements Serializable, Cloneable, StructuredPojo { /** *

* The current patch compliance status. Valid values are as follows: *

* */ private String status; /** *

* For the patches that are compliant, the number that have a severity of CRITICAL. *

*/ private Integer compliantCriticalCount; /** *

* For the patches that are compliant, the number that have a severity of HIGH. *

*/ private Integer compliantHighCount; /** *

* For the patches that are compliant, the number that have a severity of MEDIUM. *

*/ private Integer compliantMediumCount; /** *

* The type of execution that was used determine compliance. *

*/ private String executionType; /** *

* For the patch items that are noncompliant, the number of items that have a severity of CRITICAL. *

*/ private Integer nonCompliantCriticalCount; /** *

* For the patches that are compliant, the number that have a severity of INFORMATIONAL. *

*/ private Integer compliantInformationalCount; /** *

* For the patches that are noncompliant, the number that have a severity of INFORMATIONAL. *

*/ private Integer nonCompliantInformationalCount; /** *

* For the patches that are compliant, the number that have a severity of UNSPECIFIED. *

*/ private Integer compliantUnspecifiedCount; /** *

* For the patches that are noncompliant, the number that have a severity of LOW. *

*/ private Integer nonCompliantLowCount; /** *

* For the patches that are noncompliant, the number that have a severity of HIGH. *

*/ private Integer nonCompliantHighCount; /** *

* For the patches that are compliant, the number that have a severity of LOW. *

*/ private Integer compliantLowCount; /** *

* The type of resource for which the compliance was determined. For AwsSsmPatchCompliance, * ComplianceType is Patch. *

*/ private String complianceType; /** *

* The identifier of the patch baseline. The patch baseline lists the patches that are approved for installation. *

*/ private String patchBaselineId; /** *

* The highest severity for the patches. Valid values are as follows: *

* */ private String overallSeverity; /** *

* For the patches that are noncompliant, the number that have a severity of MEDIUM. *

*/ private Integer nonCompliantMediumCount; /** *

* For the patches that are noncompliant, the number that have a severity of UNSPECIFIED. *

*/ private Integer nonCompliantUnspecifiedCount; /** *

* The identifier of the patch group for which compliance was determined. A patch group uses tags to group EC2 * instances that should have the same patch compliance. *

*/ private String patchGroup; /** *

* The current patch compliance status. Valid values are as follows: *

* * * @param status * The current patch compliance status. Valid values are as follows:

*