@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
49 lines (48 loc) • 1.53 kB
TypeScript
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<GetImageRecipeResult>;
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<GetImageRecipeResult>;
export interface GetImageRecipeOutputArgs {
/**
* The Amazon Resource Name (ARN) of the image recipe.
*/
arn: pulumi.Input<string>;
}