@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)
37 lines (36 loc) • 1.37 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Resource schema for AWS::DataSync::LocationFSxLustre.
*/
export declare function getLocationFSxLustre(args: GetLocationFSxLustreArgs, opts?: pulumi.InvokeOptions): Promise<GetLocationFSxLustreResult>;
export interface GetLocationFSxLustreArgs {
/**
* The Amazon Resource Name (ARN) of the Amazon FSx for Lustre file system location that is created.
*/
locationArn: string;
}
export interface GetLocationFSxLustreResult {
/**
* The Amazon Resource Name (ARN) of the Amazon FSx for Lustre file system location that is created.
*/
readonly locationArn?: string;
/**
* The URL of the FSx for Lustre location that was described.
*/
readonly locationUri?: string;
/**
* An array of key-value pairs to apply to this resource.
*/
readonly tags?: outputs.Tag[];
}
/**
* Resource schema for AWS::DataSync::LocationFSxLustre.
*/
export declare function getLocationFSxLustreOutput(args: GetLocationFSxLustreOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLocationFSxLustreResult>;
export interface GetLocationFSxLustreOutputArgs {
/**
* The Amazon Resource Name (ARN) of the Amazon FSx for Lustre file system location that is created.
*/
locationArn: pulumi.Input<string>;
}