import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource schema for AWS::ImageBuilder::ImageRecipe */ export declare function getImageRecipe(args: GetImageRecipeArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetImageRecipeArgs { /** * The Amazon Resource Name (ARN) of the image recipe. */ arn: string; } export interface GetImageRecipeResult { /** * Specify additional settings and launch scripts for your build instances. */ readonly additionalInstanceConfiguration?: outputs.imagebuilder.ImageRecipeAdditionalInstanceConfiguration; /** * The tags to apply to the AMI created by this image recipe. */ readonly amiTags?: { [key: string]: string; }; /** * The Amazon Resource Name (ARN) of the image recipe. */ readonly arn?: string; /** * The latest version references of the image recipe. */ readonly latestVersion?: outputs.imagebuilder.ImageRecipeLatestVersion; /** * The tags of the image recipe. */ readonly tags?: { [key: string]: string; }; } /** * Resource schema for AWS::ImageBuilder::ImageRecipe */ export declare function getImageRecipeOutput(args: GetImageRecipeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetImageRecipeOutputArgs { /** * The Amazon Resource Name (ARN) of the image recipe. */ arn: pulumi.Input; }