Struct aws_sdk_imagebuilder::model::Image
source · #[non_exhaustive]pub struct Image { /* private fields */ }
Expand description
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.
Implementations§
source§impl Image
impl Image
sourcepub fn arn(&self) -> Option<&str>
pub fn arn(&self) -> Option<&str>
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:
. . -
Build version ARNs have all four nodes, and point to a specific build for a specific version of an object.
sourcepub fn version(&self) -> Option<&str>
pub fn version(&self) -> Option<&str>
The semantic version of the image.
The semantic version has four nodes:
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.
sourcepub fn enhanced_image_metadata_enabled(&self) -> Option<bool>
pub fn enhanced_image_metadata_enabled(&self) -> Option<bool>
Collects additional information about the image being created, including the operating system (OS) version and package list. This information is used to enhance the overall experience of using EC2 Image Builder. Enabled by default.
sourcepub fn os_version(&self) -> Option<&str>
pub fn os_version(&self) -> Option<&str>
The operating system version of the instance. For example, Amazon Linux 2, Ubuntu 18, or Microsoft Windows Server 2019.
sourcepub fn state(&self) -> Option<&ImageState>
pub fn state(&self) -> Option<&ImageState>
The state of the image.
sourcepub fn image_recipe(&self) -> Option<&ImageRecipe>
pub fn image_recipe(&self) -> Option<&ImageRecipe>
The image recipe used when creating the image.
sourcepub fn container_recipe(&self) -> Option<&ContainerRecipe>
pub fn container_recipe(&self) -> Option<&ContainerRecipe>
The recipe that is used to create an Image Builder container image.
sourcepub fn source_pipeline_name(&self) -> Option<&str>
pub fn source_pipeline_name(&self) -> Option<&str>
The name of the image pipeline that created this image.
sourcepub fn source_pipeline_arn(&self) -> Option<&str>
pub fn source_pipeline_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the image pipeline that created this image.
sourcepub fn infrastructure_configuration(
&self
) -> Option<&InfrastructureConfiguration>
pub fn infrastructure_configuration(
&self
) -> Option<&InfrastructureConfiguration>
The infrastructure used when creating this image.
sourcepub fn distribution_configuration(&self) -> Option<&DistributionConfiguration>
pub fn distribution_configuration(&self) -> Option<&DistributionConfiguration>
The distribution configuration used when creating this image.
sourcepub fn image_tests_configuration(&self) -> Option<&ImageTestsConfiguration>
pub fn image_tests_configuration(&self) -> Option<&ImageTestsConfiguration>
The image tests configuration used when creating this image.
sourcepub fn date_created(&self) -> Option<&str>
pub fn date_created(&self) -> Option<&str>
The date on which this image was created.
sourcepub fn output_resources(&self) -> Option<&OutputResources>
pub fn output_resources(&self) -> Option<&OutputResources>
The output resources produced when creating this image.
The tags of the image.
sourcepub fn build_type(&self) -> Option<&BuildType>
pub fn build_type(&self) -> Option<&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.