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,
});
}
}
Inherited Members
Namespace: Pulumi.Aws.Efs
Assembly: Pulumi.Aws.dll
Syntax
public class AccessPoint : CustomResource
Constructors
View SourceAccessPoint(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 SourceArn
Amazon Resource Name of the access point.
Declaration
public Output<string> Arn { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
FileSystemArn
Amazon Resource Name of the file system.
Declaration
public Output<string> FileSystemArn { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
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> |
OwnerId
Declaration
public Output<string> OwnerId { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
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> |
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> |
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 SourceGet(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 |