Show / Hide Table of Contents

Class CfnS3AccessPointAttachment.OpenZFSFileSystemIdentityProperty

Specifies the file system user identity that will be used for authorizing all file access requests that are made using the S3 access point.

Inheritance
object
CfnS3AccessPointAttachment.OpenZFSFileSystemIdentityProperty
Implements
CfnS3AccessPointAttachment.IOpenZFSFileSystemIdentityProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.FSx
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnS3AccessPointAttachment.OpenZFSFileSystemIdentityProperty : CfnS3AccessPointAttachment.IOpenZFSFileSystemIdentityProperty
Syntax (vb)
Public Class CfnS3AccessPointAttachment.OpenZFSFileSystemIdentityProperty Implements CfnS3AccessPointAttachment.IOpenZFSFileSystemIdentityProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-openzfsfilesystemidentity.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.AWS.FSx;

             var openZFSFileSystemIdentityProperty = new OpenZFSFileSystemIdentityProperty {
                 PosixUser = new OpenZFSPosixFileSystemUserProperty {
                     Gid = 123,
                     Uid = 123,

                     // the properties below are optional
                     SecondaryGids = new [] { new FileSystemGIDProperty {
                         Gid = 123
                     } }
                 },
                 Type = "type"
             };

Synopsis

Constructors

OpenZFSFileSystemIdentityProperty()

Specifies the file system user identity that will be used for authorizing all file access requests that are made using the S3 access point.

Properties

PosixUser

Specifies the UID and GIDs of the file system POSIX user.

Type

Specifies the FSx for OpenZFS user identity type, accepts only POSIX .

Constructors

OpenZFSFileSystemIdentityProperty()

Specifies the file system user identity that will be used for authorizing all file access requests that are made using the S3 access point.

public OpenZFSFileSystemIdentityProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-openzfsfilesystemidentity.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.AWS.FSx;

             var openZFSFileSystemIdentityProperty = new OpenZFSFileSystemIdentityProperty {
                 PosixUser = new OpenZFSPosixFileSystemUserProperty {
                     Gid = 123,
                     Uid = 123,

                     // the properties below are optional
                     SecondaryGids = new [] { new FileSystemGIDProperty {
                         Gid = 123
                     } }
                 },
                 Type = "type"
             };

Properties

PosixUser

Specifies the UID and GIDs of the file system POSIX user.

public object PosixUser { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-openzfsfilesystemidentity.html#cfn-fsx-s3accesspointattachment-openzfsfilesystemidentity-posixuser

Type union: either IResolvable or CfnS3AccessPointAttachment.IOpenZFSPosixFileSystemUserProperty

Type

Specifies the FSx for OpenZFS user identity type, accepts only POSIX .

public string Type { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-openzfsfilesystemidentity.html#cfn-fsx-s3accesspointattachment-openzfsfilesystemidentity-type

Implements

CfnS3AccessPointAttachment.IOpenZFSFileSystemIdentityProperty
Back to top Generated by DocFX