Show / Hide Table of Contents

Class GetAccessPoint

Inheritance
System.Object
GetAccessPoint
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Efs
Assembly: Pulumi.Aws.dll
Syntax
public static class GetAccessPoint

Methods

View Source

InvokeAsync(GetAccessPointArgs, InvokeOptions)

Provides information about an Elastic File System (EFS) Access Point.

{{% examples %}}

Example Usage

{{% example %}}

using Pulumi;
using Aws = Pulumi.Aws;

class MyStack : Stack
{
public MyStack()
{
    var test = Output.Create(Aws.Efs.GetAccessPoint.InvokeAsync(new Aws.Efs.GetAccessPointArgs
    {
        AccessPointId = "fsap-12345678",
    }));
}

}

{{% /example %}} {{% /examples %}}

Declaration
public static Task<GetAccessPointResult> InvokeAsync(GetAccessPointArgs args, InvokeOptions options = null)
Parameters
Type Name Description
GetAccessPointArgs args
InvokeOptions options
Returns
Type Description
System.Threading.Tasks.Task<GetAccessPointResult>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.