Interface S3AccessPointOpenZFSConfiguration.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<S3AccessPointOpenZFSConfiguration.Builder,
,S3AccessPointOpenZFSConfiguration> SdkBuilder<S3AccessPointOpenZFSConfiguration.Builder,
,S3AccessPointOpenZFSConfiguration> SdkPojo
- Enclosing class:
S3AccessPointOpenZFSConfiguration
@Mutable
@NotThreadSafe
public static interface S3AccessPointOpenZFSConfiguration.Builder
extends SdkPojo, CopyableBuilder<S3AccessPointOpenZFSConfiguration.Builder,S3AccessPointOpenZFSConfiguration>
-
Method Summary
Modifier and TypeMethodDescriptionfileSystemIdentity
(Consumer<OpenZFSFileSystemIdentity.Builder> fileSystemIdentity) The file system identity used to authorize file access requests made using the S3 access point.fileSystemIdentity
(OpenZFSFileSystemIdentity fileSystemIdentity) The file system identity used to authorize file access requests made using the S3 access point.The ID of the FSx for OpenZFS volume that the S3 access point is attached to.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
volumeId
The ID of the FSx for OpenZFS volume that the S3 access point is attached to.
- Parameters:
volumeId
- The ID of the FSx for OpenZFS volume that the S3 access point is attached to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fileSystemIdentity
S3AccessPointOpenZFSConfiguration.Builder fileSystemIdentity(OpenZFSFileSystemIdentity fileSystemIdentity) The file system identity used to authorize file access requests made using the S3 access point.
- Parameters:
fileSystemIdentity
- The file system identity used to authorize file access requests made using the S3 access point.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fileSystemIdentity
default S3AccessPointOpenZFSConfiguration.Builder fileSystemIdentity(Consumer<OpenZFSFileSystemIdentity.Builder> fileSystemIdentity) The file system identity used to authorize file access requests made using the S3 access point.
This is a convenience method that creates an instance of theOpenZFSFileSystemIdentity.Builder
avoiding the need to create one manually viaOpenZFSFileSystemIdentity.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tofileSystemIdentity(OpenZFSFileSystemIdentity)
.- Parameters:
fileSystemIdentity
- a consumer that will call methods onOpenZFSFileSystemIdentity.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-