@pulumi/aws
Version:
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
77 lines (76 loc) • 2.23 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Provides information about multiple Elastic File System (EFS) Access Points.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
*
* const test = aws.efs.getAccessPoints({
* fileSystemId: "fs-12345678",
* });
* ```
*/
export declare function getAccessPoints(args: GetAccessPointsArgs, opts?: pulumi.InvokeOptions): Promise<GetAccessPointsResult>;
/**
* A collection of arguments for invoking getAccessPoints.
*/
export interface GetAccessPointsArgs {
/**
* EFS File System identifier.
*/
fileSystemId: string;
/**
* Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
*/
region?: string;
}
/**
* A collection of values returned by getAccessPoints.
*/
export interface GetAccessPointsResult {
/**
* Set of Amazon Resource Names (ARNs).
*/
readonly arns: string[];
readonly fileSystemId: string;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* Set of identifiers.
*/
readonly ids: string[];
readonly region: string;
}
/**
* Provides information about multiple Elastic File System (EFS) Access Points.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
*
* const test = aws.efs.getAccessPoints({
* fileSystemId: "fs-12345678",
* });
* ```
*/
export declare function getAccessPointsOutput(args: GetAccessPointsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAccessPointsResult>;
/**
* A collection of arguments for invoking getAccessPoints.
*/
export interface GetAccessPointsOutputArgs {
/**
* EFS File System identifier.
*/
fileSystemId: pulumi.Input<string>;
/**
* Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
*/
region?: pulumi.Input<string>;
}