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)

29 lines (28 loc) 1.17 kB
import * as pulumi from "@pulumi/pulumi"; import * as enums from "../types/enums"; /** * Resource type definition for AWS::FSx::S3AccessPointAttachment */ export declare function getS3AccessPointAttachment(args: GetS3AccessPointAttachmentArgs, opts?: pulumi.InvokeOptions): Promise<GetS3AccessPointAttachmentResult>; export interface GetS3AccessPointAttachmentArgs { /** * The name of the S3 access point attachment; also used for the name of the S3 access point. */ name: string; } export interface GetS3AccessPointAttachmentResult { /** * The lifecycle status of the S3 access point attachment. */ readonly lifecycle?: enums.fsx.S3AccessPointAttachmentLifecycle; } /** * Resource type definition for AWS::FSx::S3AccessPointAttachment */ export declare function getS3AccessPointAttachmentOutput(args: GetS3AccessPointAttachmentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetS3AccessPointAttachmentResult>; export interface GetS3AccessPointAttachmentOutputArgs { /** * The name of the S3 access point attachment; also used for the name of the S3 access point. */ name: pulumi.Input<string>; }