interface RootDirectoryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.S3Files.CfnAccessPointPropsMixin.RootDirectoryProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awss3files#CfnAccessPointPropsMixin_RootDirectoryProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.s3files.CfnAccessPointPropsMixin.RootDirectoryProperty |
Python | aws_cdk.cfn_property_mixins.aws_s3files.CfnAccessPointPropsMixin.RootDirectoryProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_s3files » CfnAccessPointPropsMixin » RootDirectoryProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_s3files as s3files } from '@aws-cdk/cfn-property-mixins';
const rootDirectoryProperty: s3files.CfnAccessPointPropsMixin.RootDirectoryProperty = {
creationPermissions: {
ownerGid: 'ownerGid',
ownerUid: 'ownerUid',
permissions: 'permissions',
},
path: 'path',
};
Properties
| Name | Type | Description |
|---|---|---|
| creation | IResolvable | Creation | |
| path? | string | 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. |
creationPermissions?
Type:
IResolvable | Creation
(optional)
path?
Type:
string
(optional)
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.
A path can have up to four subdirectories. If the specified path does not exist, you are required to provide the CreationPermissions.

.NET
Go
Java
Python
TypeScript