Interface CfnAccessPointPropsMixin.CreationPermissionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAccessPointPropsMixin.CreationPermissionsProperty.Jsii$Proxy
- Enclosing class:
CfnAccessPointPropsMixin
@Stability(Stable)
public static interface CfnAccessPointPropsMixin.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.cfnpropertymixins.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 forCfnAccessPointPropsMixin.CreationPermissionsPropertystatic final classAn implementation forCfnAccessPointPropsMixin.CreationPermissionsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringSpecifies the POSIX group ID to apply to the RootDirectory.default StringSpecifies the POSIX user ID to apply to the RootDirectory.default StringSpecifies 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
-