/* * 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.imagebuilder.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* Configure image tests for your pipeline build. Tests run after building the image, to verify that the AMI or * container image is valid before distributing it. *
* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class ImageTestsConfiguration implements Serializable, Cloneable, StructuredPojo { /** ** Determines if tests should run after building the image. Image Builder defaults to enable tests to run following * the image build, before image distribution. *
*/ private Boolean imageTestsEnabled; /** ** The maximum time in minutes that tests are permitted to run. *
** The timeoutMinutes attribute is not currently active. This value is ignored. *
** Determines if tests should run after building the image. Image Builder defaults to enable tests to run following * the image build, before image distribution. *
* * @param imageTestsEnabled * Determines if tests should run after building the image. Image Builder defaults to enable tests to run * following the image build, before image distribution. */ public void setImageTestsEnabled(Boolean imageTestsEnabled) { this.imageTestsEnabled = imageTestsEnabled; } /** ** Determines if tests should run after building the image. Image Builder defaults to enable tests to run following * the image build, before image distribution. *
* * @return Determines if tests should run after building the image. Image Builder defaults to enable tests to run * following the image build, before image distribution. */ public Boolean getImageTestsEnabled() { return this.imageTestsEnabled; } /** ** Determines if tests should run after building the image. Image Builder defaults to enable tests to run following * the image build, before image distribution. *
* * @param imageTestsEnabled * Determines if tests should run after building the image. Image Builder defaults to enable tests to run * following the image build, before image distribution. * @return Returns a reference to this object so that method calls can be chained together. */ public ImageTestsConfiguration withImageTestsEnabled(Boolean imageTestsEnabled) { setImageTestsEnabled(imageTestsEnabled); return this; } /** ** Determines if tests should run after building the image. Image Builder defaults to enable tests to run following * the image build, before image distribution. *
* * @return Determines if tests should run after building the image. Image Builder defaults to enable tests to run * following the image build, before image distribution. */ public Boolean isImageTestsEnabled() { return this.imageTestsEnabled; } /** ** The maximum time in minutes that tests are permitted to run. *
** The timeoutMinutes attribute is not currently active. This value is ignored. *
** The timeoutMinutes attribute is not currently active. This value is ignored. *
*/ public void setTimeoutMinutes(Integer timeoutMinutes) { this.timeoutMinutes = timeoutMinutes; } /** ** The maximum time in minutes that tests are permitted to run. *
** The timeoutMinutes attribute is not currently active. This value is ignored. *
** The timeoutMinutes attribute is not currently active. This value is ignored. *
*/ public Integer getTimeoutMinutes() { return this.timeoutMinutes; } /** ** The maximum time in minutes that tests are permitted to run. *
** The timeoutMinutes attribute is not currently active. This value is ignored. *
** The timeoutMinutes attribute is not currently active. This value is ignored. *
* @return Returns a reference to this object so that method calls can be chained together. */ public ImageTestsConfiguration withTimeoutMinutes(Integer timeoutMinutes) { setTimeoutMinutes(timeoutMinutes); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getImageTestsEnabled() != null) sb.append("ImageTestsEnabled: ").append(getImageTestsEnabled()).append(","); if (getTimeoutMinutes() != null) sb.append("TimeoutMinutes: ").append(getTimeoutMinutes()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ImageTestsConfiguration == false) return false; ImageTestsConfiguration other = (ImageTestsConfiguration) obj; if (other.getImageTestsEnabled() == null ^ this.getImageTestsEnabled() == null) return false; if (other.getImageTestsEnabled() != null && other.getImageTestsEnabled().equals(this.getImageTestsEnabled()) == false) return false; if (other.getTimeoutMinutes() == null ^ this.getTimeoutMinutes() == null) return false; if (other.getTimeoutMinutes() != null && other.getTimeoutMinutes().equals(this.getTimeoutMinutes()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getImageTestsEnabled() == null) ? 0 : getImageTestsEnabled().hashCode()); hashCode = prime * hashCode + ((getTimeoutMinutes() == null) ? 0 : getTimeoutMinutes().hashCode()); return hashCode; } @Override public ImageTestsConfiguration clone() { try { return (ImageTestsConfiguration) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.imagebuilder.model.transform.ImageTestsConfigurationMarshaller.getInstance().marshall(this, protocolMarshaller); } }