Class CfnS3AccessPointAttachment.S3AccessPointOpenZFSConfigurationProperty
Describes the FSx for OpenZFS attachment configuration of an S3 access point attachment.
Inherited Members
Namespace: Amazon.CDK.AWS.FSx
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnS3AccessPointAttachment.S3AccessPointOpenZFSConfigurationProperty : CfnS3AccessPointAttachment.IS3AccessPointOpenZFSConfigurationProperty
Syntax (vb)
Public Class CfnS3AccessPointAttachment.S3AccessPointOpenZFSConfigurationProperty Implements CfnS3AccessPointAttachment.IS3AccessPointOpenZFSConfigurationProperty
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 s3AccessPointOpenZFSConfigurationProperty = new S3AccessPointOpenZFSConfigurationProperty {
FileSystemIdentity = new OpenZFSFileSystemIdentityProperty {
PosixUser = new OpenZFSPosixFileSystemUserProperty {
Gid = 123,
Uid = 123,
// the properties below are optional
SecondaryGids = new [] { new FileSystemGIDProperty {
Gid = 123
} }
},
Type = "type"
},
VolumeId = "volumeId"
};
Synopsis
Constructors
| S3AccessPointOpenZFSConfigurationProperty() | Describes the FSx for OpenZFS attachment configuration of an S3 access point attachment. |
Properties
| FileSystemIdentity | The file system identity used to authorize file access requests made using the S3 access point. |
| VolumeId | The ID of the FSx for OpenZFS volume that the S3 access point is attached to. |
Constructors
S3AccessPointOpenZFSConfigurationProperty()
Describes the FSx for OpenZFS attachment configuration of an S3 access point attachment.
public S3AccessPointOpenZFSConfigurationProperty()
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 s3AccessPointOpenZFSConfigurationProperty = new S3AccessPointOpenZFSConfigurationProperty {
FileSystemIdentity = new OpenZFSFileSystemIdentityProperty {
PosixUser = new OpenZFSPosixFileSystemUserProperty {
Gid = 123,
Uid = 123,
// the properties below are optional
SecondaryGids = new [] { new FileSystemGIDProperty {
Gid = 123
} }
},
Type = "type"
},
VolumeId = "volumeId"
};
Properties
FileSystemIdentity
The file system identity used to authorize file access requests made using the S3 access point.
public object FileSystemIdentity { get; set; }
Property Value
Remarks
Type union: either IResolvable or CfnS3AccessPointAttachment.IOpenZFSFileSystemIdentityProperty
VolumeId
The ID of the FSx for OpenZFS volume that the S3 access point is attached to.
public string VolumeId { get; set; }