Show / Hide Table of Contents

Interface IAccessPointAttributes

Attributes that can be specified when importing an AccessPoint.

Namespace: Amazon.CDK.AWS.EFS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IAccessPointAttributes
Syntax (vb)
Public Interface IAccessPointAttributes
Remarks

ExampleMetadata: infused

Examples
AccessPoint.FromAccessPointAttributes(this, "ap", new AccessPointAttributes {
                AccessPointId = "fsap-1293c4d9832fo0912",
                FileSystem = FileSystem.FromFileSystemAttributes(this, "efs", new FileSystemAttributes {
                    FileSystemId = "fs-099d3e2f",
                    SecurityGroup = SecurityGroup.FromSecurityGroupId(this, "sg", "sg-51530134")
                })
            });

Synopsis

Properties

AccessPointArn

The ARN of the AccessPoint One of this, or accessPointId is required.

AccessPointId

The ID of the AccessPoint One of this, or accessPointArn is required.

FileSystem

The EFS file system.

Properties

AccessPointArn

The ARN of the AccessPoint One of this, or accessPointId is required.

string? AccessPointArn { get; }
Property Value

string

Remarks

Default: - determined based on accessPointId

AccessPointId

The ID of the AccessPoint One of this, or accessPointArn is required.

string? AccessPointId { get; }
Property Value

string

Remarks

Default: - determined based on accessPointArn

FileSystem

The EFS file system.

IFileSystemRef? FileSystem { get; }
Property Value

IFileSystemRef

Remarks

Default: - no EFS file system

Back to top Generated by DocFX