import * as pulumi from "@pulumi/pulumi"; /** * Resource Type definition for AWS::Lambda::LayerVersion */ export declare function getLayerVersion(args: GetLayerVersionArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetLayerVersionArgs { /** * The ARN of the layer version. */ layerVersionArn: string; } export interface GetLayerVersionResult { /** * The ARN of the layer version. */ readonly layerVersionArn?: string; } /** * Resource Type definition for AWS::Lambda::LayerVersion */ export declare function getLayerVersionOutput(args: GetLayerVersionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetLayerVersionOutputArgs { /** * The ARN of the layer version. */ layerVersionArn: pulumi.Input; }