Show / Hide Table of Contents

Interface CfnAccessPointPropsMixin.IRootDirectoryProperty

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.S3Files
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnAccessPointPropsMixin.IRootDirectoryProperty
Syntax (vb)
Public Interface CfnAccessPointPropsMixin.IRootDirectoryProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3files-accesspoint-rootdirectory.html

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.CfnPropertyMixins.AWS.S3Files;

             var rootDirectoryProperty = new RootDirectoryProperty {
                 CreationPermissions = new CreationPermissionsProperty {
                     OwnerGid = "ownerGid",
                     OwnerUid = "ownerUid",
                     Permissions = "permissions"
                 },
                 Path = "path"
             };

Synopsis

Properties

CreationPermissions
Path

Specifies the path on the EFS file system to expose as the root directory to NFS clients using the access point to access the EFS file system.

Properties

CreationPermissions

object? CreationPermissions { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3files-accesspoint-rootdirectory.html#cfn-s3files-accesspoint-rootdirectory-creationpermissions

Type union: either IResolvable or CfnAccessPointPropsMixin.ICreationPermissionsProperty

Path

Specifies the path on the EFS file system to expose as the root directory to NFS clients using the access point to access the EFS file system.

string? Path { get; }
Property Value

string

Remarks

A path can have up to four subdirectories. If the specified path does not exist, you are required to provide the CreationPermissions.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3files-accesspoint-rootdirectory.html#cfn-s3files-accesspoint-rootdirectory-path

Back to top Generated by DocFX