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)

54 lines (53 loc) 1.61 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Resource Type definition for AWS::Lambda::MicrovmImage */ export declare function getMicrovmImage(args: GetMicrovmImageArgs, opts?: pulumi.InvokeOptions): Promise<GetMicrovmImageResult>; export interface GetMicrovmImageArgs { /** * ARN of the MicroVM image. */ imageArn: string; } export interface GetMicrovmImageResult { /** * Timestamp when the MicroVM image was created. */ readonly createdAt?: string; /** * ARN of the MicroVM image. */ readonly imageArn?: string; /** * The latest active version of the MicroVM image. */ readonly latestActiveImageVersion?: string; /** * The latest failed version of the MicroVM image. */ readonly latestFailedImageVersion?: string; /** * Current state of the MicroVM image. */ readonly state?: enums.lambda.MicrovmImageState; /** * Key-value pairs to associate with the MicroVM image for organization and management. */ readonly tags?: outputs.Tag[]; /** * Timestamp when the MicroVM image was updated. */ readonly updatedAt?: string; } /** * Resource Type definition for AWS::Lambda::MicrovmImage */ export declare function getMicrovmImageOutput(args: GetMicrovmImageOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetMicrovmImageResult>; export interface GetMicrovmImageOutputArgs { /** * ARN of the MicroVM image. */ imageArn: pulumi.Input<string>; }