interface CreationPermissionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.S3Files.CfnAccessPointPropsMixin.CreationPermissionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awss3files#CfnAccessPointPropsMixin_CreationPermissionsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.s3files.CfnAccessPointPropsMixin.CreationPermissionsProperty |
Python | aws_cdk.cfn_property_mixins.aws_s3files.CfnAccessPointPropsMixin.CreationPermissionsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_s3files » CfnAccessPointPropsMixin » CreationPermissionsProperty |
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 creationPermissionsProperty: s3files.CfnAccessPointPropsMixin.CreationPermissionsProperty = {
ownerGid: 'ownerGid',
ownerUid: 'ownerUid',
permissions: 'permissions',
};
Properties
| Name | Type | Description |
|---|---|---|
| owner | string | Specifies the POSIX group ID to apply to the RootDirectory. |
| owner | string | Specifies the POSIX user ID to apply to the RootDirectory. |
| permissions? | string | Specifies the POSIX permissions to apply to the RootDirectory, in the format of an octal number representing the file's mode bits. |
ownerGid?
Type:
string
(optional)
Specifies the POSIX group ID to apply to the RootDirectory.
Accepts values from 0 to 2^32 (4294967295).
ownerUid?
Type:
string
(optional)
Specifies the POSIX user ID to apply to the RootDirectory.
Accepts values from 0 to 2^32 (4294967295).
permissions?
Type:
string
(optional)
Specifies the POSIX permissions to apply to the RootDirectory, in the format of an octal number representing the file's mode bits.

.NET
Go
Java
Python
TypeScript