Show / Hide Table of Contents

Class AccessPoint

Represents the AccessPoint.

Inheritance
object
Resource
AccessPoint
Implements
IAccessPoint
IAccessPointRef
IResource
IConstruct
IDependable
IEnvironmentAware
Inherited Members
Resource.IsOwnedResource(IConstruct)
Resource.IsResource(IConstruct)
Resource.ApplyCrossStackReferenceStrength(ReferenceStrength)
Resource.ApplyRemovalPolicy(RemovalPolicy)
Resource.GeneratePhysicalName()
Resource.GetResourceArnAttribute(string, IArnComponents)
Resource.GetResourceNameAttribute(string)
Resource.With(params IMixin[])
Resource.Env
Resource.PhysicalName
Resource.Stack
Namespace: Amazon.CDK.AWS.EFS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class AccessPoint : Resource, IAccessPoint, IAccessPointRef, IResource, IConstruct, IDependable, IEnvironmentAware
Syntax (vb)
Public Class AccessPoint Inherits Resource Implements IAccessPoint, IAccessPointRef, IResource, IConstruct, IDependable, IEnvironmentAware
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

Constructors

AccessPoint(Construct, string, IAccessPointProps)

Represents the AccessPoint.

Properties

AccessPointArn

The ARN of the Access Point.

AccessPointId

The ID of the Access Point.

AccessPointRef

A reference to a AccessPoint resource.

FileSystem

The file system of the access point.

PROPERTY_INJECTION_ID

Uniquely identifies this class.

Methods

FromAccessPointAttributes(Construct, string, IAccessPointAttributes)

Import an existing Access Point by attributes.

FromAccessPointId(Construct, string, string)

Import an existing Access Point by id.

Constructors

AccessPoint(Construct, string, IAccessPointProps)

Represents the AccessPoint.

public AccessPoint(Construct scope, string id, IAccessPointProps props)
Parameters
scope Construct
id string
props IAccessPointProps
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")
                })
            });

Properties

AccessPointArn

The ARN of the Access Point.

public virtual string AccessPointArn { get; }
Property Value

string

Remarks

Attribute: true

AccessPointId

The ID of the Access Point.

public virtual string AccessPointId { get; }
Property Value

string

Remarks

Attribute: true

AccessPointRef

A reference to a AccessPoint resource.

public virtual IAccessPointReference AccessPointRef { get; }
Property Value

IAccessPointReference

Remarks

ExampleMetadata: infused

FileSystem

The file system of the access point.

public virtual IFileSystem FileSystem { get; }
Property Value

IFileSystem

Remarks

ExampleMetadata: infused

PROPERTY_INJECTION_ID

Uniquely identifies this class.

public static string PROPERTY_INJECTION_ID { get; }
Property Value

string

Remarks

ExampleMetadata: infused

Methods

FromAccessPointAttributes(Construct, string, IAccessPointAttributes)

Import an existing Access Point by attributes.

public static IAccessPoint FromAccessPointAttributes(Construct scope, string id, IAccessPointAttributes attrs)
Parameters
scope Construct
id string
attrs IAccessPointAttributes
Returns

IAccessPoint

Remarks

ExampleMetadata: infused

FromAccessPointId(Construct, string, string)

Import an existing Access Point by id.

public static IAccessPoint FromAccessPointId(Construct scope, string id, string accessPointId)
Parameters
scope Construct
id string
accessPointId string
Returns

IAccessPoint

Remarks

ExampleMetadata: infused

Implements

IAccessPoint
IAccessPointRef
IResource
Constructs.IConstruct
Constructs.IDependable
IEnvironmentAware
Back to top Generated by DocFX