Interface CfnAccessPoint.CreationPermissionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAccessPoint.CreationPermissionsProperty.Jsii$Proxy
- Enclosing class:
CfnAccessPoint
@Stability(Stable)
public static interface CfnAccessPoint.CreationPermissionsProperty
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.*;
CreationPermissionsProperty creationPermissionsProperty = CreationPermissionsProperty.builder()
.ownerGid("ownerGid")
.ownerUid("ownerUid")
.permissions("permissions")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAccessPoint.CreationPermissionsPropertystatic final classAn implementation forCfnAccessPoint.CreationPermissionsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Specifies the POSIX group ID to apply to the RootDirectory.Specifies the POSIX user ID to apply to the RootDirectory.Specifies the POSIX permissions to apply to the RootDirectory, in the format of an octal number representing the file's mode bits.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOwnerGid
Specifies the POSIX group ID to apply to the RootDirectory.Accepts values from 0 to 2^32 (4294967295).
- See Also:
-
getOwnerUid
Specifies the POSIX user ID to apply to the RootDirectory.Accepts values from 0 to 2^32 (4294967295).
- See Also:
-
getPermissions
Specifies the POSIX permissions to apply to the RootDirectory, in the format of an octal number representing the file's mode bits.- See Also:
-
builder
-