Interface IAccessPointProps
Properties for the AccessPoint.
Inherited Members
Namespace: Amazon.CDK.AWS.EFS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IAccessPointProps : IAccessPointOptions
Syntax (vb)
Public Interface IAccessPointProps Inherits IAccessPointOptions
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EFS;
using Amazon.CDK.Interfaces.EFS;
IFileSystemRef fileSystemRef;
var accessPointProps = new AccessPointProps {
FileSystem = fileSystemRef,
// the properties below are optional
ClientToken = "clientToken",
CreateAcl = new Acl {
OwnerGid = "ownerGid",
OwnerUid = "ownerUid",
Permissions = "permissions"
},
Path = "path",
PosixUser = new PosixUser {
Gid = "gid",
Uid = "uid",
// the properties below are optional
SecondaryGids = new [] { "secondaryGids" }
}
};
Synopsis
Properties
| FileSystem | The efs filesystem. |
Properties
FileSystem
The efs filesystem.
IFileSystemRef FileSystem { get; }
Property Value
Remarks
ExampleMetadata: fixture=_generated