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.
Inherited Members
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
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 |
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
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
Remarks
Type union: either IResolvable or CfnS3AccessPointAttachment.IOpenZFSPosixFileSystemUserProperty
Type
Specifies the FSx for OpenZFS user identity type, accepts only POSIX .
public string Type { get; set; }