Show / Hide Table of Contents

Class CfnAccessPointPropsMixin.CreationPermissionsProperty

Inheritance
object
CfnAccessPointPropsMixin.CreationPermissionsProperty
Implements
CfnAccessPointPropsMixin.ICreationPermissionsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3files-accesspoint-creationpermissions.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3files-accesspoint-creationpermissions.html

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

string

Remarks

Accepts values from 0 to 2^32 (4294967295).

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3files-accesspoint-creationpermissions.html#cfn-s3files-accesspoint-creationpermissions-ownergid

OwnerUid

Specifies the POSIX user ID to apply to the RootDirectory.

public string? OwnerUid { get; set; }
Property Value

string

Remarks

Accepts values from 0 to 2^32 (4294967295).

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3files-accesspoint-creationpermissions.html#cfn-s3files-accesspoint-creationpermissions-owneruid

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; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3files-accesspoint-creationpermissions.html#cfn-s3files-accesspoint-creationpermissions-permissions

Implements

CfnAccessPointPropsMixin.ICreationPermissionsProperty
Back to top Generated by DocFX