Class CfnAccessPointPropsMixin.CreationPermissionsProperty
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.S3Files
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnAccessPointPropsMixin.CreationPermissionsProperty : CfnAccessPointPropsMixin.ICreationPermissionsProperty
Syntax (vb)
Public Class CfnAccessPointPropsMixin.CreationPermissionsProperty Implements CfnAccessPointPropsMixin.ICreationPermissionsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.S3Files;
var creationPermissionsProperty = new CreationPermissionsProperty {
OwnerGid = "ownerGid",
OwnerUid = "ownerUid",
Permissions = "permissions"
};
Synopsis
Constructors
| CreationPermissionsProperty() |
Properties
| OwnerGid | Specifies the POSIX group ID to apply to the RootDirectory. |
| OwnerUid | Specifies the POSIX user ID to apply to the RootDirectory. |
| Permissions | Specifies the POSIX permissions to apply to the RootDirectory, in the format of an octal number representing the file's mode bits. |
Constructors
CreationPermissionsProperty()
public CreationPermissionsProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.S3Files;
var creationPermissionsProperty = new CreationPermissionsProperty {
OwnerGid = "ownerGid",
OwnerUid = "ownerUid",
Permissions = "permissions"
};
Properties
OwnerGid
Specifies the POSIX group ID to apply to the RootDirectory.
public string? OwnerGid { get; set; }
Property Value
Remarks
Accepts values from 0 to 2^32 (4294967295).
OwnerUid
Specifies the POSIX user ID to apply to the RootDirectory.
public string? OwnerUid { get; set; }
Property Value
Remarks
Accepts values from 0 to 2^32 (4294967295).
Permissions
Specifies the POSIX permissions to apply to the RootDirectory, in the format of an octal number representing the file's mode bits.
public string? Permissions { get; set; }