UNPKG

@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)

28 lines (27 loc) 926 B
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; } /** * 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>; }