Show / Hide Table of Contents

Class AccessPoint

Provides an Elastic File System (EFS) access point.

Example Usage

using Pulumi;
using Aws = Pulumi.Aws;

class MyStack : Stack
{
public MyStack()
{
    var test = new Aws.Efs.AccessPoint("test", new Aws.Efs.AccessPointArgs
    {
        FileSystemId = aws_efs_file_system.Foo.Id,
    });
}

}
Inheritance
System.Object
Resource
CustomResource
AccessPoint
Inherited Members
CustomResource.Id
Resource.GetResourceType()
Resource.GetResourceName()
Resource.Urn
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 class AccessPoint : CustomResource

Constructors

View Source

AccessPoint(String, AccessPointArgs, CustomResourceOptions)

Create a AccessPoint resource with the given unique name, arguments, and options.

Declaration
public AccessPoint(string name, AccessPointArgs args, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resource

AccessPointArgs args

The arguments used to populate this resource's properties

CustomResourceOptions options

A bag of options that control this resource's behavior

Properties

View Source

Arn

Amazon Resource Name of the access point.

Declaration
public Output<string> Arn { get; }
Property Value
Type Description
Output<System.String>
View Source

FileSystemArn

Amazon Resource Name of the file system.

Declaration
public Output<string> FileSystemArn { get; }
Property Value
Type Description
Output<System.String>
View Source

FileSystemId

The ID of the file system for which the access point is intended.

Declaration
public Output<string> FileSystemId { get; }
Property Value
Type Description
Output<System.String>
View Source

OwnerId

Declaration
public Output<string> OwnerId { get; }
Property Value
Type Description
Output<System.String>
View Source

PosixUser

The operating system user and group applied to all file system requests made using the access point. See Posix User below.

Declaration
public Output<AccessPointPosixUser> PosixUser { get; }
Property Value
Type Description
Output<AccessPointPosixUser>
View Source

RootDirectory

Specifies the directory on the Amazon EFS file system that the access point provides access to. See Root Directory below.

Declaration
public Output<AccessPointRootDirectory> RootDirectory { get; }
Property Value
Type Description
Output<AccessPointRootDirectory>
View Source

Tags

Key-value mapping of resource tags.

Declaration
public Output<ImmutableDictionary<string, object>> Tags { get; }
Property Value
Type Description
Output<System.Collections.Immutable.ImmutableDictionary<System.String, System.Object>>

Methods

View Source

Get(String, Input<String>, AccessPointState, CustomResourceOptions)

Get an existing AccessPoint resource's state with the given name, ID, and optional extra properties used to qualify the lookup.

Declaration
public static AccessPoint Get(string name, Input<string> id, AccessPointState state = null, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resulting resource.

Input<System.String> id

The unique provider ID of the resource to lookup.

AccessPointState state

Any extra arguments used during the lookup.

CustomResourceOptions options

A bag of options that control this resource's behavior

Returns
Type Description
AccessPoint
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.