Interface CfnAccessPoint.RootDirectoryProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAccessPoint.RootDirectoryProperty.Jsii$Proxy
- Enclosing class:
CfnAccessPoint
@Stability(Stable)
public static interface CfnAccessPoint.RootDirectoryProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.s3files.*;
RootDirectoryProperty rootDirectoryProperty = RootDirectoryProperty.builder()
.creationPermissions(CreationPermissionsProperty.builder()
.ownerGid("ownerGid")
.ownerUid("ownerUid")
.permissions("permissions")
.build())
.path("path")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAccessPoint.RootDirectoryPropertystatic final classAn implementation forCfnAccessPoint.RootDirectoryProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnAccessPoint.CreationPermissionsPropertydefault StringgetPath()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.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCreationPermissions
Returns union: eitherIResolvableorCfnAccessPoint.CreationPermissionsProperty- See Also:
-
getPath
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.
- See Also:
-
builder
-