com.pulumi.aws.imagebuilder.inputs.GetImagePlainArgs Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.imagebuilder.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class GetImagePlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetImagePlainArgs Empty = new GetImagePlainArgs();
/**
* ARN of the image. The suffix can either be specified with wildcards (`x.x.x`) to fetch the latest build version or a full build version (e.g., `2020.11.26/1`) to fetch an exact version.
*
*/
@Import(name="arn", required=true)
private String arn;
/**
* @return ARN of the image. The suffix can either be specified with wildcards (`x.x.x`) to fetch the latest build version or a full build version (e.g., `2020.11.26/1`) to fetch an exact version.
*
*/
public String arn() {
return this.arn;
}
/**
* Key-value map of resource tags for the image.
*
*/
@Import(name="tags")
private @Nullable Map tags;
/**
* @return Key-value map of resource tags for the image.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy