@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) • 857 B
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Resource Type definition for AWS::Lambda::LayerVersion
*/
export declare function getLayerVersion(args: GetLayerVersionArgs, opts?: pulumi.InvokeOptions): Promise<GetLayerVersionResult>;
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<GetLayerVersionResult>;
export interface GetLayerVersionOutputArgs {
/**
* The ARN of the layer version.
*/
layerVersionArn: pulumi.Input<string>;
}