Interface CfnS3AccessPointAttachmentPropsMixin.S3AccessPointOpenZFSConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnS3AccessPointAttachmentPropsMixin.S3AccessPointOpenZFSConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnS3AccessPointAttachmentPropsMixin
@Stability(Stable)
public static interface CfnS3AccessPointAttachmentPropsMixin.S3AccessPointOpenZFSConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Describes the FSx for OpenZFS attachment configuration of an S3 access point attachment.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.fsx.*;
S3AccessPointOpenZFSConfigurationProperty s3AccessPointOpenZFSConfigurationProperty = S3AccessPointOpenZFSConfigurationProperty.builder()
.fileSystemIdentity(OpenZFSFileSystemIdentityProperty.builder()
.posixUser(OpenZFSPosixFileSystemUserProperty.builder()
.gid(123)
.secondaryGids(List.of(FileSystemGIDProperty.builder()
.gid(123)
.build()))
.uid(123)
.build())
.type("type")
.build())
.volumeId("volumeId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnS3AccessPointAttachmentPropsMixin.S3AccessPointOpenZFSConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFileSystemIdentity
The file system identity used to authorize file access requests made using the S3 access point.Returns union: either
IResolvableorCfnS3AccessPointAttachmentPropsMixin.OpenZFSFileSystemIdentityProperty- See Also:
-
getVolumeId
The ID of the FSx for OpenZFS volume that the S3 access point is attached to.- See Also:
-
builder
@Stability(Stable) static CfnS3AccessPointAttachmentPropsMixin.S3AccessPointOpenZFSConfigurationProperty.Builder builder()
-