Show / Hide Table of Contents

Interface IAccessPointProps

Properties for the AccessPoint.

Inherited Members
IAccessPointOptions.ClientToken
IAccessPointOptions.CreateAcl
IAccessPointOptions.Path
IAccessPointOptions.PosixUser
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

IFileSystemRef

Remarks

ExampleMetadata: fixture=_generated

Back to top Generated by DocFX