@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)
34 lines (33 loc) • 1.06 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Resource schema for AWS::ImageBuilder::ContainerRecipe
*/
export declare function getContainerRecipe(args: GetContainerRecipeArgs, opts?: pulumi.InvokeOptions): Promise<GetContainerRecipeResult>;
export interface GetContainerRecipeArgs {
/**
* The Amazon Resource Name (ARN) of the container recipe.
*/
arn: string;
}
export interface GetContainerRecipeResult {
/**
* The Amazon Resource Name (ARN) of the container recipe.
*/
readonly arn?: string;
/**
* Tags that are attached to the container recipe.
*/
readonly tags?: {
[key: string]: string;
};
}
/**
* Resource schema for AWS::ImageBuilder::ContainerRecipe
*/
export declare function getContainerRecipeOutput(args: GetContainerRecipeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetContainerRecipeResult>;
export interface GetContainerRecipeOutputArgs {
/**
* The Amazon Resource Name (ARN) of the container recipe.
*/
arn: pulumi.Input<string>;
}