This is the new CloudFormation Template Reference Guide. Please update your bookmarks and links. For help getting started with CloudFormation, see the AWS CloudFormation User Guide.
AWS::S3Files::AccessPoint CreationPermissions
Specifies the POSIX IDs and permissions to apply when creating the root directory for an access point.
Syntax
To declare this entity in your CloudFormation template, use the following syntax:
JSON
{ "OwnerGid" :String, "OwnerUid" :String, "Permissions" :String}
YAML
OwnerGid:StringOwnerUid:StringPermissions:String
Properties
OwnerGid-
The POSIX group ID to apply to the root directory. Accepts values from 0 to 4294967295.
Required: Yes
Type: String
Pattern:
^[0-9]+$Update requires: Replacement
OwnerUid-
The POSIX user ID to apply to the root directory. Accepts values from 0 to 4294967295.
Required: Yes
Type: String
Pattern:
^[0-9]+$Update requires: Replacement
Permissions-
The POSIX permissions to apply to the root directory, in the format of an octal number representing the file's mode bits.
Required: Yes
Type: String
Pattern:
^[0-7]{3,4}$Update requires: Replacement