
com.amazonaws.services.imagebuilder.model.Image Maven / Gradle / Ivy
/*
* Copyright 2019-2024 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;
/**
*
* An Image Builder image. You must specify exactly one recipe for the image – either a container recipe (
* containerRecipe
), which creates a container image, or an image recipe (imageRecipe
), which
* creates an AMI.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class Image implements Serializable, Cloneable, StructuredPojo {
/**
*
* The Amazon Resource Name (ARN) of the image.
*
*
*
* Semantic versioning is included in each object's Amazon Resource Name (ARN), at the level that applies to that
* object as follows:
*
*
* -
*
* Versionless ARNs and Name ARNs do not include specific values in any of the nodes. The nodes are either left off
* entirely, or they are specified as wildcards, for example: x.x.x.
*
*
* -
*
* Version ARNs have only the first three nodes: <major>.<minor>.<patch>
*
*
* -
*
* Build version ARNs have all four nodes, and point to a specific build for a specific version of an object.
*
*
*
*
*/
private String arn;
/**
*
* Specifies whether this image produces an AMI or a container image.
*
*/
private String type;
/**
*
* The name of the image.
*
*/
private String name;
/**
*
* The semantic version of the image.
*
*
*
* The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign
* values for the first three, and can filter on all of them.
*
*
* Assignment: For the first three nodes you can assign any positive integer value, including zero, with an
* upper limit of 2^30-1, or 1073741823 for each node. Image Builder automatically assigns the build number to the
* fourth node.
*
*
* Patterns: You can use any numeric pattern that adheres to the assignment requirements for the nodes that
* you can assign. For example, you might choose a software version pattern, such as 1.0.0, or a date, such as
* 2021.01.01.
*
*
* Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most
* recent versions or nodes when selecting the base image or components for your recipe. When you use a wildcard in
* any node, all nodes to the right of the first wildcard must also be wildcards.
*
*
*/
private String version;
/**
*
* The image operating system platform, such as Linux or Windows.
*
*/
private String platform;
/**
*
* Indicates whether Image Builder collects additional information about the image, such as the operating system
* (OS) version and package list.
*
*/
private Boolean enhancedImageMetadataEnabled;
/**
*
* The operating system version for instances that launch from this image. For example, Amazon Linux 2, Ubuntu 18,
* or Microsoft Windows Server 2019.
*
*/
private String osVersion;
/**
*
* The state of the image.
*
*/
private ImageState state;
/**
*
* For images that distribute an AMI, this is the image recipe that Image Builder used to create the image. For
* container images, this is empty.
*
*/
private ImageRecipe imageRecipe;
/**
*
* For container images, this is the container recipe that Image Builder used to create the image. For images that
* distribute an AMI, this is empty.
*
*/
private ContainerRecipe containerRecipe;
/**
*
* The name of the image pipeline that created this image.
*
*/
private String sourcePipelineName;
/**
*
* The Amazon Resource Name (ARN) of the image pipeline that created this image.
*
*/
private String sourcePipelineArn;
/**
*
* The infrastructure that Image Builder used to create this image.
*
*/
private InfrastructureConfiguration infrastructureConfiguration;
/**
*
* The distribution configuration that Image Builder used to create this image.
*
*/
private DistributionConfiguration distributionConfiguration;
/**
*
* The image tests that ran when that Image Builder created this image.
*
*/
private ImageTestsConfiguration imageTestsConfiguration;
/**
*
* The date on which Image Builder created this image.
*
*/
private String dateCreated;
/**
*
* The output resources that Image Builder produces for this image.
*
*/
private OutputResources outputResources;
/**
*
* The tags that apply to this image.
*
*/
private java.util.Map tags;
/**
*
* Indicates the type of build that created this image. The build can be initiated in the following ways:
*
*
* -
*
* USER_INITIATED – A manual pipeline build request.
*
*
* -
*
* SCHEDULED – A pipeline build initiated by a cron expression in the Image Builder pipeline, or from
* EventBridge.
*
*
* -
*
* IMPORT – A VM import created the image to use as the base image for the recipe.
*
*
*
*/
private String buildType;
/**
*
* The origin of the base image that Image Builder used to build this image.
*
*/
private String imageSource;
/**
*
* Contains information about the current state of scans for this image.
*
*/
private ImageScanState scanState;
/**
*
* Contains settings for vulnerability scans.
*
*/
private ImageScanningConfiguration imageScanningConfiguration;
/**
*
* The time when deprecation occurs for an image resource. This can be a past or future date.
*
*/
private java.util.Date deprecationTime;
/**
*
* Identifies the last runtime instance of the lifecycle policy to take action on the image.
*
*/
private String lifecycleExecutionId;
/**
*
* The name or Amazon Resource Name (ARN) for the IAM role you create that grants Image Builder access to perform
* workflow actions.
*
*/
private String executionRole;
/**
*
* Contains the build and test workflows that are associated with the image.
*
*/
private java.util.List workflows;
/**
*
* The Amazon Resource Name (ARN) of the image.
*
*
*
* Semantic versioning is included in each object's Amazon Resource Name (ARN), at the level that applies to that
* object as follows:
*
*
* -
*
* Versionless ARNs and Name ARNs do not include specific values in any of the nodes. The nodes are either left off
* entirely, or they are specified as wildcards, for example: x.x.x.
*
*
* -
*
* Version ARNs have only the first three nodes: <major>.<minor>.<patch>
*
*
* -
*
* Build version ARNs have all four nodes, and point to a specific build for a specific version of an object.
*
*
*
*
*
* @param arn
* The Amazon Resource Name (ARN) of the image.
*
* Semantic versioning is included in each object's Amazon Resource Name (ARN), at the level that applies to
* that object as follows:
*
*
* -
*
* Versionless ARNs and Name ARNs do not include specific values in any of the nodes. The nodes are either
* left off entirely, or they are specified as wildcards, for example: x.x.x.
*
*
* -
*
* Version ARNs have only the first three nodes: <major>.<minor>.<patch>
*
*
* -
*
* Build version ARNs have all four nodes, and point to a specific build for a specific version of an object.
*
*
*
*/
public void setArn(String arn) {
this.arn = arn;
}
/**
*
* The Amazon Resource Name (ARN) of the image.
*
*
*
* Semantic versioning is included in each object's Amazon Resource Name (ARN), at the level that applies to that
* object as follows:
*
*
* -
*
* Versionless ARNs and Name ARNs do not include specific values in any of the nodes. The nodes are either left off
* entirely, or they are specified as wildcards, for example: x.x.x.
*
*
* -
*
* Version ARNs have only the first three nodes: <major>.<minor>.<patch>
*
*
* -
*
* Build version ARNs have all four nodes, and point to a specific build for a specific version of an object.
*
*
*
*
*
* @return The Amazon Resource Name (ARN) of the image.
*
* Semantic versioning is included in each object's Amazon Resource Name (ARN), at the level that applies to
* that object as follows:
*
*
* -
*
* Versionless ARNs and Name ARNs do not include specific values in any of the nodes. The nodes are either
* left off entirely, or they are specified as wildcards, for example: x.x.x.
*
*
* -
*
* Version ARNs have only the first three nodes: <major>.<minor>.<patch>
*
*
* -
*
* Build version ARNs have all four nodes, and point to a specific build for a specific version of an
* object.
*
*
*
*/
public String getArn() {
return this.arn;
}
/**
*
* The Amazon Resource Name (ARN) of the image.
*
*
*
* Semantic versioning is included in each object's Amazon Resource Name (ARN), at the level that applies to that
* object as follows:
*
*
* -
*
* Versionless ARNs and Name ARNs do not include specific values in any of the nodes. The nodes are either left off
* entirely, or they are specified as wildcards, for example: x.x.x.
*
*
* -
*
* Version ARNs have only the first three nodes: <major>.<minor>.<patch>
*
*
* -
*
* Build version ARNs have all four nodes, and point to a specific build for a specific version of an object.
*
*
*
*
*
* @param arn
* The Amazon Resource Name (ARN) of the image.
*
* Semantic versioning is included in each object's Amazon Resource Name (ARN), at the level that applies to
* that object as follows:
*
*
* -
*
* Versionless ARNs and Name ARNs do not include specific values in any of the nodes. The nodes are either
* left off entirely, or they are specified as wildcards, for example: x.x.x.
*
*
* -
*
* Version ARNs have only the first three nodes: <major>.<minor>.<patch>
*
*
* -
*
* Build version ARNs have all four nodes, and point to a specific build for a specific version of an object.
*
*
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Image withArn(String arn) {
setArn(arn);
return this;
}
/**
*
* Specifies whether this image produces an AMI or a container image.
*
*
* @param type
* Specifies whether this image produces an AMI or a container image.
* @see ImageType
*/
public void setType(String type) {
this.type = type;
}
/**
*
* Specifies whether this image produces an AMI or a container image.
*
*
* @return Specifies whether this image produces an AMI or a container image.
* @see ImageType
*/
public String getType() {
return this.type;
}
/**
*
* Specifies whether this image produces an AMI or a container image.
*
*
* @param type
* Specifies whether this image produces an AMI or a container image.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ImageType
*/
public Image withType(String type) {
setType(type);
return this;
}
/**
*
* Specifies whether this image produces an AMI or a container image.
*
*
* @param type
* Specifies whether this image produces an AMI or a container image.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ImageType
*/
public Image withType(ImageType type) {
this.type = type.toString();
return this;
}
/**
*
* The name of the image.
*
*
* @param name
* The name of the image.
*/
public void setName(String name) {
this.name = name;
}
/**
*
* The name of the image.
*
*
* @return The name of the image.
*/
public String getName() {
return this.name;
}
/**
*
* The name of the image.
*
*
* @param name
* The name of the image.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Image withName(String name) {
setName(name);
return this;
}
/**
*
* The semantic version of the image.
*
*
*
* The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign
* values for the first three, and can filter on all of them.
*
*
* Assignment: For the first three nodes you can assign any positive integer value, including zero, with an
* upper limit of 2^30-1, or 1073741823 for each node. Image Builder automatically assigns the build number to the
* fourth node.
*
*
* Patterns: You can use any numeric pattern that adheres to the assignment requirements for the nodes that
* you can assign. For example, you might choose a software version pattern, such as 1.0.0, or a date, such as
* 2021.01.01.
*
*
* Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most
* recent versions or nodes when selecting the base image or components for your recipe. When you use a wildcard in
* any node, all nodes to the right of the first wildcard must also be wildcards.
*
*
*
* @param version
* The semantic version of the image.
*
* The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can
* assign values for the first three, and can filter on all of them.
*
*
* Assignment: For the first three nodes you can assign any positive integer value, including zero,
* with an upper limit of 2^30-1, or 1073741823 for each node. Image Builder automatically assigns the build
* number to the fourth node.
*
*
* Patterns: You can use any numeric pattern that adheres to the assignment requirements for the nodes
* that you can assign. For example, you might choose a software version pattern, such as 1.0.0, or a date,
* such as 2021.01.01.
*
*
* Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the
* most recent versions or nodes when selecting the base image or components for your recipe. When you use a
* wildcard in any node, all nodes to the right of the first wildcard must also be wildcards.
*
*/
public void setVersion(String version) {
this.version = version;
}
/**
*
* The semantic version of the image.
*
*
*
* The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign
* values for the first three, and can filter on all of them.
*
*
* Assignment: For the first three nodes you can assign any positive integer value, including zero, with an
* upper limit of 2^30-1, or 1073741823 for each node. Image Builder automatically assigns the build number to the
* fourth node.
*
*
* Patterns: You can use any numeric pattern that adheres to the assignment requirements for the nodes that
* you can assign. For example, you might choose a software version pattern, such as 1.0.0, or a date, such as
* 2021.01.01.
*
*
* Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most
* recent versions or nodes when selecting the base image or components for your recipe. When you use a wildcard in
* any node, all nodes to the right of the first wildcard must also be wildcards.
*
*
*
* @return The semantic version of the image.
*
* The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can
* assign values for the first three, and can filter on all of them.
*
*
* Assignment: For the first three nodes you can assign any positive integer value, including zero,
* with an upper limit of 2^30-1, or 1073741823 for each node. Image Builder automatically assigns the build
* number to the fourth node.
*
*
* Patterns: You can use any numeric pattern that adheres to the assignment requirements for the
* nodes that you can assign. For example, you might choose a software version pattern, such as 1.0.0, or a
* date, such as 2021.01.01.
*
*
* Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the
* most recent versions or nodes when selecting the base image or components for your recipe. When you use a
* wildcard in any node, all nodes to the right of the first wildcard must also be wildcards.
*
*/
public String getVersion() {
return this.version;
}
/**
*
* The semantic version of the image.
*
*
*
* The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign
* values for the first three, and can filter on all of them.
*
*
* Assignment: For the first three nodes you can assign any positive integer value, including zero, with an
* upper limit of 2^30-1, or 1073741823 for each node. Image Builder automatically assigns the build number to the
* fourth node.
*
*
* Patterns: You can use any numeric pattern that adheres to the assignment requirements for the nodes that
* you can assign. For example, you might choose a software version pattern, such as 1.0.0, or a date, such as
* 2021.01.01.
*
*
* Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most
* recent versions or nodes when selecting the base image or components for your recipe. When you use a wildcard in
* any node, all nodes to the right of the first wildcard must also be wildcards.
*
*
*
* @param version
* The semantic version of the image.
*
* The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can
* assign values for the first three, and can filter on all of them.
*
*
* Assignment: For the first three nodes you can assign any positive integer value, including zero,
* with an upper limit of 2^30-1, or 1073741823 for each node. Image Builder automatically assigns the build
* number to the fourth node.
*
*
* Patterns: You can use any numeric pattern that adheres to the assignment requirements for the nodes
* that you can assign. For example, you might choose a software version pattern, such as 1.0.0, or a date,
* such as 2021.01.01.
*
*
* Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the
* most recent versions or nodes when selecting the base image or components for your recipe. When you use a
* wildcard in any node, all nodes to the right of the first wildcard must also be wildcards.
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Image withVersion(String version) {
setVersion(version);
return this;
}
/**
*
* The image operating system platform, such as Linux or Windows.
*
*
* @param platform
* The image operating system platform, such as Linux or Windows.
* @see Platform
*/
public void setPlatform(String platform) {
this.platform = platform;
}
/**
*
* The image operating system platform, such as Linux or Windows.
*
*
* @return The image operating system platform, such as Linux or Windows.
* @see Platform
*/
public String getPlatform() {
return this.platform;
}
/**
*
* The image operating system platform, such as Linux or Windows.
*
*
* @param platform
* The image operating system platform, such as Linux or Windows.
* @return Returns a reference to this object so that method calls can be chained together.
* @see Platform
*/
public Image withPlatform(String platform) {
setPlatform(platform);
return this;
}
/**
*
* The image operating system platform, such as Linux or Windows.
*
*
* @param platform
* The image operating system platform, such as Linux or Windows.
* @return Returns a reference to this object so that method calls can be chained together.
* @see Platform
*/
public Image withPlatform(Platform platform) {
this.platform = platform.toString();
return this;
}
/**
*
* Indicates whether Image Builder collects additional information about the image, such as the operating system
* (OS) version and package list.
*
*
* @param enhancedImageMetadataEnabled
* Indicates whether Image Builder collects additional information about the image, such as the operating
* system (OS) version and package list.
*/
public void setEnhancedImageMetadataEnabled(Boolean enhancedImageMetadataEnabled) {
this.enhancedImageMetadataEnabled = enhancedImageMetadataEnabled;
}
/**
*
* Indicates whether Image Builder collects additional information about the image, such as the operating system
* (OS) version and package list.
*
*
* @return Indicates whether Image Builder collects additional information about the image, such as the operating
* system (OS) version and package list.
*/
public Boolean getEnhancedImageMetadataEnabled() {
return this.enhancedImageMetadataEnabled;
}
/**
*
* Indicates whether Image Builder collects additional information about the image, such as the operating system
* (OS) version and package list.
*
*
* @param enhancedImageMetadataEnabled
* Indicates whether Image Builder collects additional information about the image, such as the operating
* system (OS) version and package list.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Image withEnhancedImageMetadataEnabled(Boolean enhancedImageMetadataEnabled) {
setEnhancedImageMetadataEnabled(enhancedImageMetadataEnabled);
return this;
}
/**
*
* Indicates whether Image Builder collects additional information about the image, such as the operating system
* (OS) version and package list.
*
*
* @return Indicates whether Image Builder collects additional information about the image, such as the operating
* system (OS) version and package list.
*/
public Boolean isEnhancedImageMetadataEnabled() {
return this.enhancedImageMetadataEnabled;
}
/**
*
* The operating system version for instances that launch from this image. For example, Amazon Linux 2, Ubuntu 18,
* or Microsoft Windows Server 2019.
*
*
* @param osVersion
* The operating system version for instances that launch from this image. For example, Amazon Linux 2,
* Ubuntu 18, or Microsoft Windows Server 2019.
*/
public void setOsVersion(String osVersion) {
this.osVersion = osVersion;
}
/**
*
* The operating system version for instances that launch from this image. For example, Amazon Linux 2, Ubuntu 18,
* or Microsoft Windows Server 2019.
*
*
* @return The operating system version for instances that launch from this image. For example, Amazon Linux 2,
* Ubuntu 18, or Microsoft Windows Server 2019.
*/
public String getOsVersion() {
return this.osVersion;
}
/**
*
* The operating system version for instances that launch from this image. For example, Amazon Linux 2, Ubuntu 18,
* or Microsoft Windows Server 2019.
*
*
* @param osVersion
* The operating system version for instances that launch from this image. For example, Amazon Linux 2,
* Ubuntu 18, or Microsoft Windows Server 2019.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Image withOsVersion(String osVersion) {
setOsVersion(osVersion);
return this;
}
/**
*
* The state of the image.
*
*
* @param state
* The state of the image.
*/
public void setState(ImageState state) {
this.state = state;
}
/**
*
* The state of the image.
*
*
* @return The state of the image.
*/
public ImageState getState() {
return this.state;
}
/**
*
* The state of the image.
*
*
* @param state
* The state of the image.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Image withState(ImageState state) {
setState(state);
return this;
}
/**
*
* For images that distribute an AMI, this is the image recipe that Image Builder used to create the image. For
* container images, this is empty.
*
*
* @param imageRecipe
* For images that distribute an AMI, this is the image recipe that Image Builder used to create the image.
* For container images, this is empty.
*/
public void setImageRecipe(ImageRecipe imageRecipe) {
this.imageRecipe = imageRecipe;
}
/**
*
* For images that distribute an AMI, this is the image recipe that Image Builder used to create the image. For
* container images, this is empty.
*
*
* @return For images that distribute an AMI, this is the image recipe that Image Builder used to create the image.
* For container images, this is empty.
*/
public ImageRecipe getImageRecipe() {
return this.imageRecipe;
}
/**
*
* For images that distribute an AMI, this is the image recipe that Image Builder used to create the image. For
* container images, this is empty.
*
*
* @param imageRecipe
* For images that distribute an AMI, this is the image recipe that Image Builder used to create the image.
* For container images, this is empty.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Image withImageRecipe(ImageRecipe imageRecipe) {
setImageRecipe(imageRecipe);
return this;
}
/**
*
* For container images, this is the container recipe that Image Builder used to create the image. For images that
* distribute an AMI, this is empty.
*
*
* @param containerRecipe
* For container images, this is the container recipe that Image Builder used to create the image. For images
* that distribute an AMI, this is empty.
*/
public void setContainerRecipe(ContainerRecipe containerRecipe) {
this.containerRecipe = containerRecipe;
}
/**
*
* For container images, this is the container recipe that Image Builder used to create the image. For images that
* distribute an AMI, this is empty.
*
*
* @return For container images, this is the container recipe that Image Builder used to create the image. For
* images that distribute an AMI, this is empty.
*/
public ContainerRecipe getContainerRecipe() {
return this.containerRecipe;
}
/**
*
* For container images, this is the container recipe that Image Builder used to create the image. For images that
* distribute an AMI, this is empty.
*
*
* @param containerRecipe
* For container images, this is the container recipe that Image Builder used to create the image. For images
* that distribute an AMI, this is empty.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Image withContainerRecipe(ContainerRecipe containerRecipe) {
setContainerRecipe(containerRecipe);
return this;
}
/**
*
* The name of the image pipeline that created this image.
*
*
* @param sourcePipelineName
* The name of the image pipeline that created this image.
*/
public void setSourcePipelineName(String sourcePipelineName) {
this.sourcePipelineName = sourcePipelineName;
}
/**
*
* The name of the image pipeline that created this image.
*
*
* @return The name of the image pipeline that created this image.
*/
public String getSourcePipelineName() {
return this.sourcePipelineName;
}
/**
*
* The name of the image pipeline that created this image.
*
*
* @param sourcePipelineName
* The name of the image pipeline that created this image.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Image withSourcePipelineName(String sourcePipelineName) {
setSourcePipelineName(sourcePipelineName);
return this;
}
/**
*
* The Amazon Resource Name (ARN) of the image pipeline that created this image.
*
*
* @param sourcePipelineArn
* The Amazon Resource Name (ARN) of the image pipeline that created this image.
*/
public void setSourcePipelineArn(String sourcePipelineArn) {
this.sourcePipelineArn = sourcePipelineArn;
}
/**
*
* The Amazon Resource Name (ARN) of the image pipeline that created this image.
*
*
* @return The Amazon Resource Name (ARN) of the image pipeline that created this image.
*/
public String getSourcePipelineArn() {
return this.sourcePipelineArn;
}
/**
*
* The Amazon Resource Name (ARN) of the image pipeline that created this image.
*
*
* @param sourcePipelineArn
* The Amazon Resource Name (ARN) of the image pipeline that created this image.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Image withSourcePipelineArn(String sourcePipelineArn) {
setSourcePipelineArn(sourcePipelineArn);
return this;
}
/**
*
* The infrastructure that Image Builder used to create this image.
*
*
* @param infrastructureConfiguration
* The infrastructure that Image Builder used to create this image.
*/
public void setInfrastructureConfiguration(InfrastructureConfiguration infrastructureConfiguration) {
this.infrastructureConfiguration = infrastructureConfiguration;
}
/**
*
* The infrastructure that Image Builder used to create this image.
*
*
* @return The infrastructure that Image Builder used to create this image.
*/
public InfrastructureConfiguration getInfrastructureConfiguration() {
return this.infrastructureConfiguration;
}
/**
*
* The infrastructure that Image Builder used to create this image.
*
*
* @param infrastructureConfiguration
* The infrastructure that Image Builder used to create this image.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Image withInfrastructureConfiguration(InfrastructureConfiguration infrastructureConfiguration) {
setInfrastructureConfiguration(infrastructureConfiguration);
return this;
}
/**
*
* The distribution configuration that Image Builder used to create this image.
*
*
* @param distributionConfiguration
* The distribution configuration that Image Builder used to create this image.
*/
public void setDistributionConfiguration(DistributionConfiguration distributionConfiguration) {
this.distributionConfiguration = distributionConfiguration;
}
/**
*
* The distribution configuration that Image Builder used to create this image.
*
*
* @return The distribution configuration that Image Builder used to create this image.
*/
public DistributionConfiguration getDistributionConfiguration() {
return this.distributionConfiguration;
}
/**
*
* The distribution configuration that Image Builder used to create this image.
*
*
* @param distributionConfiguration
* The distribution configuration that Image Builder used to create this image.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Image withDistributionConfiguration(DistributionConfiguration distributionConfiguration) {
setDistributionConfiguration(distributionConfiguration);
return this;
}
/**
*
* The image tests that ran when that Image Builder created this image.
*
*
* @param imageTestsConfiguration
* The image tests that ran when that Image Builder created this image.
*/
public void setImageTestsConfiguration(ImageTestsConfiguration imageTestsConfiguration) {
this.imageTestsConfiguration = imageTestsConfiguration;
}
/**
*
* The image tests that ran when that Image Builder created this image.
*
*
* @return The image tests that ran when that Image Builder created this image.
*/
public ImageTestsConfiguration getImageTestsConfiguration() {
return this.imageTestsConfiguration;
}
/**
*
* The image tests that ran when that Image Builder created this image.
*
*
* @param imageTestsConfiguration
* The image tests that ran when that Image Builder created this image.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Image withImageTestsConfiguration(ImageTestsConfiguration imageTestsConfiguration) {
setImageTestsConfiguration(imageTestsConfiguration);
return this;
}
/**
*
* The date on which Image Builder created this image.
*
*
* @param dateCreated
* The date on which Image Builder created this image.
*/
public void setDateCreated(String dateCreated) {
this.dateCreated = dateCreated;
}
/**
*
* The date on which Image Builder created this image.
*
*
* @return The date on which Image Builder created this image.
*/
public String getDateCreated() {
return this.dateCreated;
}
/**
*
* The date on which Image Builder created this image.
*
*
* @param dateCreated
* The date on which Image Builder created this image.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Image withDateCreated(String dateCreated) {
setDateCreated(dateCreated);
return this;
}
/**
*
* The output resources that Image Builder produces for this image.
*
*
* @param outputResources
* The output resources that Image Builder produces for this image.
*/
public void setOutputResources(OutputResources outputResources) {
this.outputResources = outputResources;
}
/**
*
* The output resources that Image Builder produces for this image.
*
*
* @return The output resources that Image Builder produces for this image.
*/
public OutputResources getOutputResources() {
return this.outputResources;
}
/**
*
* The output resources that Image Builder produces for this image.
*
*
* @param outputResources
* The output resources that Image Builder produces for this image.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Image withOutputResources(OutputResources outputResources) {
setOutputResources(outputResources);
return this;
}
/**
*
* The tags that apply to this image.
*
*
* @return The tags that apply to this image.
*/
public java.util.Map getTags() {
return tags;
}
/**
*
* The tags that apply to this image.
*
*
* @param tags
* The tags that apply to this image.
*/
public void setTags(java.util.Map tags) {
this.tags = tags;
}
/**
*
* The tags that apply to this image.
*
*
* @param tags
* The tags that apply to this image.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Image withTags(java.util.Map tags) {
setTags(tags);
return this;
}
/**
* Add a single Tags entry
*
* @see Image#withTags
* @returns a reference to this object so that method calls can be chained together.
*/
public Image addTagsEntry(String key, String value) {
if (null == this.tags) {
this.tags = new java.util.HashMap();
}
if (this.tags.containsKey(key))
throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided.");
this.tags.put(key, value);
return this;
}
/**
* Removes all the entries added into Tags.
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Image clearTagsEntries() {
this.tags = null;
return this;
}
/**
*
* Indicates the type of build that created this image. The build can be initiated in the following ways:
*
*
* -
*
* USER_INITIATED – A manual pipeline build request.
*
*
* -
*
* SCHEDULED – A pipeline build initiated by a cron expression in the Image Builder pipeline, or from
* EventBridge.
*
*
* -
*
* IMPORT – A VM import created the image to use as the base image for the recipe.
*
*
*
*
* @param buildType
* Indicates the type of build that created this image. The build can be initiated in the following ways:
*
* -
*
* USER_INITIATED – A manual pipeline build request.
*
*
* -
*
* SCHEDULED – A pipeline build initiated by a cron expression in the Image Builder pipeline, or from
* EventBridge.
*
*
* -
*
* IMPORT – A VM import created the image to use as the base image for the recipe.
*
*
* @see BuildType
*/
public void setBuildType(String buildType) {
this.buildType = buildType;
}
/**
*
* Indicates the type of build that created this image. The build can be initiated in the following ways:
*
*
* -
*
* USER_INITIATED – A manual pipeline build request.
*
*
* -
*
* SCHEDULED – A pipeline build initiated by a cron expression in the Image Builder pipeline, or from
* EventBridge.
*
*
* -
*
* IMPORT – A VM import created the image to use as the base image for the recipe.
*
*
*
*
* @return Indicates the type of build that created this image. The build can be initiated in the following
* ways:
*
* -
*
* USER_INITIATED – A manual pipeline build request.
*
*
* -
*
* SCHEDULED – A pipeline build initiated by a cron expression in the Image Builder pipeline, or from
* EventBridge.
*
*
* -
*
* IMPORT – A VM import created the image to use as the base image for the recipe.
*
*
* @see BuildType
*/
public String getBuildType() {
return this.buildType;
}
/**
*
* Indicates the type of build that created this image. The build can be initiated in the following ways:
*
*
* -
*
* USER_INITIATED – A manual pipeline build request.
*
*
* -
*
* SCHEDULED – A pipeline build initiated by a cron expression in the Image Builder pipeline, or from
* EventBridge.
*
*
* -
*
* IMPORT – A VM import created the image to use as the base image for the recipe.
*
*
*
*
* @param buildType
* Indicates the type of build that created this image. The build can be initiated in the following ways:
*
* -
*
* USER_INITIATED – A manual pipeline build request.
*
*
* -
*
* SCHEDULED – A pipeline build initiated by a cron expression in the Image Builder pipeline, or from
* EventBridge.
*
*
* -
*
* IMPORT – A VM import created the image to use as the base image for the recipe.
*
*
* @return Returns a reference to this object so that method calls can be chained together.
* @see BuildType
*/
public Image withBuildType(String buildType) {
setBuildType(buildType);
return this;
}
/**
*
* Indicates the type of build that created this image. The build can be initiated in the following ways:
*
*
* -
*
* USER_INITIATED – A manual pipeline build request.
*
*
* -
*
* SCHEDULED – A pipeline build initiated by a cron expression in the Image Builder pipeline, or from
* EventBridge.
*
*
* -
*
* IMPORT – A VM import created the image to use as the base image for the recipe.
*
*
*
*
* @param buildType
* Indicates the type of build that created this image. The build can be initiated in the following ways:
*
* -
*
* USER_INITIATED – A manual pipeline build request.
*
*
* -
*
* SCHEDULED – A pipeline build initiated by a cron expression in the Image Builder pipeline, or from
* EventBridge.
*
*
* -
*
* IMPORT – A VM import created the image to use as the base image for the recipe.
*
*
* @return Returns a reference to this object so that method calls can be chained together.
* @see BuildType
*/
public Image withBuildType(BuildType buildType) {
this.buildType = buildType.toString();
return this;
}
/**
*
* The origin of the base image that Image Builder used to build this image.
*
*
* @param imageSource
* The origin of the base image that Image Builder used to build this image.
* @see ImageSource
*/
public void setImageSource(String imageSource) {
this.imageSource = imageSource;
}
/**
*
* The origin of the base image that Image Builder used to build this image.
*
*
* @return The origin of the base image that Image Builder used to build this image.
* @see ImageSource
*/
public String getImageSource() {
return this.imageSource;
}
/**
*
* The origin of the base image that Image Builder used to build this image.
*
*
* @param imageSource
* The origin of the base image that Image Builder used to build this image.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ImageSource
*/
public Image withImageSource(String imageSource) {
setImageSource(imageSource);
return this;
}
/**
*
* The origin of the base image that Image Builder used to build this image.
*
*
* @param imageSource
* The origin of the base image that Image Builder used to build this image.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ImageSource
*/
public Image withImageSource(ImageSource imageSource) {
this.imageSource = imageSource.toString();
return this;
}
/**
*
* Contains information about the current state of scans for this image.
*
*
* @param scanState
* Contains information about the current state of scans for this image.
*/
public void setScanState(ImageScanState scanState) {
this.scanState = scanState;
}
/**
*
* Contains information about the current state of scans for this image.
*
*
* @return Contains information about the current state of scans for this image.
*/
public ImageScanState getScanState() {
return this.scanState;
}
/**
*
* Contains information about the current state of scans for this image.
*
*
* @param scanState
* Contains information about the current state of scans for this image.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Image withScanState(ImageScanState scanState) {
setScanState(scanState);
return this;
}
/**
*
* Contains settings for vulnerability scans.
*
*
* @param imageScanningConfiguration
* Contains settings for vulnerability scans.
*/
public void setImageScanningConfiguration(ImageScanningConfiguration imageScanningConfiguration) {
this.imageScanningConfiguration = imageScanningConfiguration;
}
/**
*
* Contains settings for vulnerability scans.
*
*
* @return Contains settings for vulnerability scans.
*/
public ImageScanningConfiguration getImageScanningConfiguration() {
return this.imageScanningConfiguration;
}
/**
*
* Contains settings for vulnerability scans.
*
*
* @param imageScanningConfiguration
* Contains settings for vulnerability scans.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Image withImageScanningConfiguration(ImageScanningConfiguration imageScanningConfiguration) {
setImageScanningConfiguration(imageScanningConfiguration);
return this;
}
/**
*
* The time when deprecation occurs for an image resource. This can be a past or future date.
*
*
* @param deprecationTime
* The time when deprecation occurs for an image resource. This can be a past or future date.
*/
public void setDeprecationTime(java.util.Date deprecationTime) {
this.deprecationTime = deprecationTime;
}
/**
*
* The time when deprecation occurs for an image resource. This can be a past or future date.
*
*
* @return The time when deprecation occurs for an image resource. This can be a past or future date.
*/
public java.util.Date getDeprecationTime() {
return this.deprecationTime;
}
/**
*
* The time when deprecation occurs for an image resource. This can be a past or future date.
*
*
* @param deprecationTime
* The time when deprecation occurs for an image resource. This can be a past or future date.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Image withDeprecationTime(java.util.Date deprecationTime) {
setDeprecationTime(deprecationTime);
return this;
}
/**
*
* Identifies the last runtime instance of the lifecycle policy to take action on the image.
*
*
* @param lifecycleExecutionId
* Identifies the last runtime instance of the lifecycle policy to take action on the image.
*/
public void setLifecycleExecutionId(String lifecycleExecutionId) {
this.lifecycleExecutionId = lifecycleExecutionId;
}
/**
*
* Identifies the last runtime instance of the lifecycle policy to take action on the image.
*
*
* @return Identifies the last runtime instance of the lifecycle policy to take action on the image.
*/
public String getLifecycleExecutionId() {
return this.lifecycleExecutionId;
}
/**
*
* Identifies the last runtime instance of the lifecycle policy to take action on the image.
*
*
* @param lifecycleExecutionId
* Identifies the last runtime instance of the lifecycle policy to take action on the image.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Image withLifecycleExecutionId(String lifecycleExecutionId) {
setLifecycleExecutionId(lifecycleExecutionId);
return this;
}
/**
*
* The name or Amazon Resource Name (ARN) for the IAM role you create that grants Image Builder access to perform
* workflow actions.
*
*
* @param executionRole
* The name or Amazon Resource Name (ARN) for the IAM role you create that grants Image Builder access to
* perform workflow actions.
*/
public void setExecutionRole(String executionRole) {
this.executionRole = executionRole;
}
/**
*
* The name or Amazon Resource Name (ARN) for the IAM role you create that grants Image Builder access to perform
* workflow actions.
*
*
* @return The name or Amazon Resource Name (ARN) for the IAM role you create that grants Image Builder access to
* perform workflow actions.
*/
public String getExecutionRole() {
return this.executionRole;
}
/**
*
* The name or Amazon Resource Name (ARN) for the IAM role you create that grants Image Builder access to perform
* workflow actions.
*
*
* @param executionRole
* The name or Amazon Resource Name (ARN) for the IAM role you create that grants Image Builder access to
* perform workflow actions.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Image withExecutionRole(String executionRole) {
setExecutionRole(executionRole);
return this;
}
/**
*
* Contains the build and test workflows that are associated with the image.
*
*
* @return Contains the build and test workflows that are associated with the image.
*/
public java.util.List getWorkflows() {
return workflows;
}
/**
*
* Contains the build and test workflows that are associated with the image.
*
*
* @param workflows
* Contains the build and test workflows that are associated with the image.
*/
public void setWorkflows(java.util.Collection workflows) {
if (workflows == null) {
this.workflows = null;
return;
}
this.workflows = new java.util.ArrayList(workflows);
}
/**
*
* Contains the build and test workflows that are associated with the image.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setWorkflows(java.util.Collection)} or {@link #withWorkflows(java.util.Collection)} if you want to
* override the existing values.
*
*
* @param workflows
* Contains the build and test workflows that are associated with the image.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Image withWorkflows(WorkflowConfiguration... workflows) {
if (this.workflows == null) {
setWorkflows(new java.util.ArrayList(workflows.length));
}
for (WorkflowConfiguration ele : workflows) {
this.workflows.add(ele);
}
return this;
}
/**
*
* Contains the build and test workflows that are associated with the image.
*
*
* @param workflows
* Contains the build and test workflows that are associated with the image.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Image withWorkflows(java.util.Collection workflows) {
setWorkflows(workflows);
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 (getArn() != null)
sb.append("Arn: ").append(getArn()).append(",");
if (getType() != null)
sb.append("Type: ").append(getType()).append(",");
if (getName() != null)
sb.append("Name: ").append(getName()).append(",");
if (getVersion() != null)
sb.append("Version: ").append(getVersion()).append(",");
if (getPlatform() != null)
sb.append("Platform: ").append(getPlatform()).append(",");
if (getEnhancedImageMetadataEnabled() != null)
sb.append("EnhancedImageMetadataEnabled: ").append(getEnhancedImageMetadataEnabled()).append(",");
if (getOsVersion() != null)
sb.append("OsVersion: ").append(getOsVersion()).append(",");
if (getState() != null)
sb.append("State: ").append(getState()).append(",");
if (getImageRecipe() != null)
sb.append("ImageRecipe: ").append(getImageRecipe()).append(",");
if (getContainerRecipe() != null)
sb.append("ContainerRecipe: ").append(getContainerRecipe()).append(",");
if (getSourcePipelineName() != null)
sb.append("SourcePipelineName: ").append(getSourcePipelineName()).append(",");
if (getSourcePipelineArn() != null)
sb.append("SourcePipelineArn: ").append(getSourcePipelineArn()).append(",");
if (getInfrastructureConfiguration() != null)
sb.append("InfrastructureConfiguration: ").append(getInfrastructureConfiguration()).append(",");
if (getDistributionConfiguration() != null)
sb.append("DistributionConfiguration: ").append(getDistributionConfiguration()).append(",");
if (getImageTestsConfiguration() != null)
sb.append("ImageTestsConfiguration: ").append(getImageTestsConfiguration()).append(",");
if (getDateCreated() != null)
sb.append("DateCreated: ").append(getDateCreated()).append(",");
if (getOutputResources() != null)
sb.append("OutputResources: ").append(getOutputResources()).append(",");
if (getTags() != null)
sb.append("Tags: ").append(getTags()).append(",");
if (getBuildType() != null)
sb.append("BuildType: ").append(getBuildType()).append(",");
if (getImageSource() != null)
sb.append("ImageSource: ").append(getImageSource()).append(",");
if (getScanState() != null)
sb.append("ScanState: ").append(getScanState()).append(",");
if (getImageScanningConfiguration() != null)
sb.append("ImageScanningConfiguration: ").append(getImageScanningConfiguration()).append(",");
if (getDeprecationTime() != null)
sb.append("DeprecationTime: ").append(getDeprecationTime()).append(",");
if (getLifecycleExecutionId() != null)
sb.append("LifecycleExecutionId: ").append(getLifecycleExecutionId()).append(",");
if (getExecutionRole() != null)
sb.append("ExecutionRole: ").append(getExecutionRole()).append(",");
if (getWorkflows() != null)
sb.append("Workflows: ").append(getWorkflows());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof Image == false)
return false;
Image other = (Image) obj;
if (other.getArn() == null ^ this.getArn() == null)
return false;
if (other.getArn() != null && other.getArn().equals(this.getArn()) == false)
return false;
if (other.getType() == null ^ this.getType() == null)
return false;
if (other.getType() != null && other.getType().equals(this.getType()) == false)
return false;
if (other.getName() == null ^ this.getName() == null)
return false;
if (other.getName() != null && other.getName().equals(this.getName()) == false)
return false;
if (other.getVersion() == null ^ this.getVersion() == null)
return false;
if (other.getVersion() != null && other.getVersion().equals(this.getVersion()) == false)
return false;
if (other.getPlatform() == null ^ this.getPlatform() == null)
return false;
if (other.getPlatform() != null && other.getPlatform().equals(this.getPlatform()) == false)
return false;
if (other.getEnhancedImageMetadataEnabled() == null ^ this.getEnhancedImageMetadataEnabled() == null)
return false;
if (other.getEnhancedImageMetadataEnabled() != null && other.getEnhancedImageMetadataEnabled().equals(this.getEnhancedImageMetadataEnabled()) == false)
return false;
if (other.getOsVersion() == null ^ this.getOsVersion() == null)
return false;
if (other.getOsVersion() != null && other.getOsVersion().equals(this.getOsVersion()) == false)
return false;
if (other.getState() == null ^ this.getState() == null)
return false;
if (other.getState() != null && other.getState().equals(this.getState()) == false)
return false;
if (other.getImageRecipe() == null ^ this.getImageRecipe() == null)
return false;
if (other.getImageRecipe() != null && other.getImageRecipe().equals(this.getImageRecipe()) == false)
return false;
if (other.getContainerRecipe() == null ^ this.getContainerRecipe() == null)
return false;
if (other.getContainerRecipe() != null && other.getContainerRecipe().equals(this.getContainerRecipe()) == false)
return false;
if (other.getSourcePipelineName() == null ^ this.getSourcePipelineName() == null)
return false;
if (other.getSourcePipelineName() != null && other.getSourcePipelineName().equals(this.getSourcePipelineName()) == false)
return false;
if (other.getSourcePipelineArn() == null ^ this.getSourcePipelineArn() == null)
return false;
if (other.getSourcePipelineArn() != null && other.getSourcePipelineArn().equals(this.getSourcePipelineArn()) == false)
return false;
if (other.getInfrastructureConfiguration() == null ^ this.getInfrastructureConfiguration() == null)
return false;
if (other.getInfrastructureConfiguration() != null && other.getInfrastructureConfiguration().equals(this.getInfrastructureConfiguration()) == false)
return false;
if (other.getDistributionConfiguration() == null ^ this.getDistributionConfiguration() == null)
return false;
if (other.getDistributionConfiguration() != null && other.getDistributionConfiguration().equals(this.getDistributionConfiguration()) == false)
return false;
if (other.getImageTestsConfiguration() == null ^ this.getImageTestsConfiguration() == null)
return false;
if (other.getImageTestsConfiguration() != null && other.getImageTestsConfiguration().equals(this.getImageTestsConfiguration()) == false)
return false;
if (other.getDateCreated() == null ^ this.getDateCreated() == null)
return false;
if (other.getDateCreated() != null && other.getDateCreated().equals(this.getDateCreated()) == false)
return false;
if (other.getOutputResources() == null ^ this.getOutputResources() == null)
return false;
if (other.getOutputResources() != null && other.getOutputResources().equals(this.getOutputResources()) == false)
return false;
if (other.getTags() == null ^ this.getTags() == null)
return false;
if (other.getTags() != null && other.getTags().equals(this.getTags()) == false)
return false;
if (other.getBuildType() == null ^ this.getBuildType() == null)
return false;
if (other.getBuildType() != null && other.getBuildType().equals(this.getBuildType()) == false)
return false;
if (other.getImageSource() == null ^ this.getImageSource() == null)
return false;
if (other.getImageSource() != null && other.getImageSource().equals(this.getImageSource()) == false)
return false;
if (other.getScanState() == null ^ this.getScanState() == null)
return false;
if (other.getScanState() != null && other.getScanState().equals(this.getScanState()) == false)
return false;
if (other.getImageScanningConfiguration() == null ^ this.getImageScanningConfiguration() == null)
return false;
if (other.getImageScanningConfiguration() != null && other.getImageScanningConfiguration().equals(this.getImageScanningConfiguration()) == false)
return false;
if (other.getDeprecationTime() == null ^ this.getDeprecationTime() == null)
return false;
if (other.getDeprecationTime() != null && other.getDeprecationTime().equals(this.getDeprecationTime()) == false)
return false;
if (other.getLifecycleExecutionId() == null ^ this.getLifecycleExecutionId() == null)
return false;
if (other.getLifecycleExecutionId() != null && other.getLifecycleExecutionId().equals(this.getLifecycleExecutionId()) == false)
return false;
if (other.getExecutionRole() == null ^ this.getExecutionRole() == null)
return false;
if (other.getExecutionRole() != null && other.getExecutionRole().equals(this.getExecutionRole()) == false)
return false;
if (other.getWorkflows() == null ^ this.getWorkflows() == null)
return false;
if (other.getWorkflows() != null && other.getWorkflows().equals(this.getWorkflows()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getArn() == null) ? 0 : getArn().hashCode());
hashCode = prime * hashCode + ((getType() == null) ? 0 : getType().hashCode());
hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode());
hashCode = prime * hashCode + ((getVersion() == null) ? 0 : getVersion().hashCode());
hashCode = prime * hashCode + ((getPlatform() == null) ? 0 : getPlatform().hashCode());
hashCode = prime * hashCode + ((getEnhancedImageMetadataEnabled() == null) ? 0 : getEnhancedImageMetadataEnabled().hashCode());
hashCode = prime * hashCode + ((getOsVersion() == null) ? 0 : getOsVersion().hashCode());
hashCode = prime * hashCode + ((getState() == null) ? 0 : getState().hashCode());
hashCode = prime * hashCode + ((getImageRecipe() == null) ? 0 : getImageRecipe().hashCode());
hashCode = prime * hashCode + ((getContainerRecipe() == null) ? 0 : getContainerRecipe().hashCode());
hashCode = prime * hashCode + ((getSourcePipelineName() == null) ? 0 : getSourcePipelineName().hashCode());
hashCode = prime * hashCode + ((getSourcePipelineArn() == null) ? 0 : getSourcePipelineArn().hashCode());
hashCode = prime * hashCode + ((getInfrastructureConfiguration() == null) ? 0 : getInfrastructureConfiguration().hashCode());
hashCode = prime * hashCode + ((getDistributionConfiguration() == null) ? 0 : getDistributionConfiguration().hashCode());
hashCode = prime * hashCode + ((getImageTestsConfiguration() == null) ? 0 : getImageTestsConfiguration().hashCode());
hashCode = prime * hashCode + ((getDateCreated() == null) ? 0 : getDateCreated().hashCode());
hashCode = prime * hashCode + ((getOutputResources() == null) ? 0 : getOutputResources().hashCode());
hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode());
hashCode = prime * hashCode + ((getBuildType() == null) ? 0 : getBuildType().hashCode());
hashCode = prime * hashCode + ((getImageSource() == null) ? 0 : getImageSource().hashCode());
hashCode = prime * hashCode + ((getScanState() == null) ? 0 : getScanState().hashCode());
hashCode = prime * hashCode + ((getImageScanningConfiguration() == null) ? 0 : getImageScanningConfiguration().hashCode());
hashCode = prime * hashCode + ((getDeprecationTime() == null) ? 0 : getDeprecationTime().hashCode());
hashCode = prime * hashCode + ((getLifecycleExecutionId() == null) ? 0 : getLifecycleExecutionId().hashCode());
hashCode = prime * hashCode + ((getExecutionRole() == null) ? 0 : getExecutionRole().hashCode());
hashCode = prime * hashCode + ((getWorkflows() == null) ? 0 : getWorkflows().hashCode());
return hashCode;
}
@Override
public Image clone() {
try {
return (Image) 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.ImageMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}