/* * 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.ecr.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* Contains information about an image scan finding. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class ImageScanFinding implements Serializable, Cloneable, StructuredPojo { /** ** The name associated with the finding, usually a CVE number. *
*/ private String name; /** ** The description of the finding. *
*/ private String description; /** ** A link containing additional details about the security vulnerability. *
*/ private String uri; /** ** The finding severity. *
*/ private String severity; /** ** A collection of attributes of the host from which the finding is generated. *
*/ private java.util.List* The name associated with the finding, usually a CVE number. *
* * @param name * The name associated with the finding, usually a CVE number. */ public void setName(String name) { this.name = name; } /** ** The name associated with the finding, usually a CVE number. *
* * @return The name associated with the finding, usually a CVE number. */ public String getName() { return this.name; } /** ** The name associated with the finding, usually a CVE number. *
* * @param name * The name associated with the finding, usually a CVE number. * @return Returns a reference to this object so that method calls can be chained together. */ public ImageScanFinding withName(String name) { setName(name); return this; } /** ** The description of the finding. *
* * @param description * The description of the finding. */ public void setDescription(String description) { this.description = description; } /** ** The description of the finding. *
* * @return The description of the finding. */ public String getDescription() { return this.description; } /** ** The description of the finding. *
* * @param description * The description of the finding. * @return Returns a reference to this object so that method calls can be chained together. */ public ImageScanFinding withDescription(String description) { setDescription(description); return this; } /** ** A link containing additional details about the security vulnerability. *
* * @param uri * A link containing additional details about the security vulnerability. */ public void setUri(String uri) { this.uri = uri; } /** ** A link containing additional details about the security vulnerability. *
* * @return A link containing additional details about the security vulnerability. */ public String getUri() { return this.uri; } /** ** A link containing additional details about the security vulnerability. *
* * @param uri * A link containing additional details about the security vulnerability. * @return Returns a reference to this object so that method calls can be chained together. */ public ImageScanFinding withUri(String uri) { setUri(uri); return this; } /** ** The finding severity. *
* * @param severity * The finding severity. * @see FindingSeverity */ public void setSeverity(String severity) { this.severity = severity; } /** ** The finding severity. *
* * @return The finding severity. * @see FindingSeverity */ public String getSeverity() { return this.severity; } /** ** The finding severity. *
* * @param severity * The finding severity. * @return Returns a reference to this object so that method calls can be chained together. * @see FindingSeverity */ public ImageScanFinding withSeverity(String severity) { setSeverity(severity); return this; } /** ** The finding severity. *
* * @param severity * The finding severity. * @return Returns a reference to this object so that method calls can be chained together. * @see FindingSeverity */ public ImageScanFinding withSeverity(FindingSeverity severity) { this.severity = severity.toString(); return this; } /** ** A collection of attributes of the host from which the finding is generated. *
* * @return A collection of attributes of the host from which the finding is generated. */ public java.util.List* A collection of attributes of the host from which the finding is generated. *
* * @param attributes * A collection of attributes of the host from which the finding is generated. */ public void setAttributes(java.util.Collection* A collection of attributes of the host from which the finding is generated. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setAttributes(java.util.Collection)} or {@link #withAttributes(java.util.Collection)} if you want to * override the existing values. *
* * @param attributes * A collection of attributes of the host from which the finding is generated. * @return Returns a reference to this object so that method calls can be chained together. */ public ImageScanFinding withAttributes(Attribute... attributes) { if (this.attributes == null) { setAttributes(new java.util.ArrayList* A collection of attributes of the host from which the finding is generated. *
* * @param attributes * A collection of attributes of the host from which the finding is generated. * @return Returns a reference to this object so that method calls can be chained together. */ public ImageScanFinding withAttributes(java.util.Collection