Interface UpdateDataRepositoryAssociationRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<UpdateDataRepositoryAssociationRequest.Builder,UpdateDataRepositoryAssociationRequest>,FSxRequest.Builder,SdkBuilder<UpdateDataRepositoryAssociationRequest.Builder,UpdateDataRepositoryAssociationRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UpdateDataRepositoryAssociationRequest
public static interface UpdateDataRepositoryAssociationRequest.Builder extends FSxRequest.Builder, SdkPojo, CopyableBuilder<UpdateDataRepositoryAssociationRequest.Builder,UpdateDataRepositoryAssociationRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description UpdateDataRepositoryAssociationRequest.BuilderassociationId(String associationId)The ID of the data repository association that you are updating.UpdateDataRepositoryAssociationRequest.BuilderclientRequestToken(String clientRequestToken)Sets the value of the ClientRequestToken property for this object.UpdateDataRepositoryAssociationRequest.BuilderimportedFileChunkSize(Integer importedFileChunkSize)For files imported from a data repository, this value determines the stripe count and maximum amount of data per file (in MiB) stored on a single physical disk.UpdateDataRepositoryAssociationRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateDataRepositoryAssociationRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)default UpdateDataRepositoryAssociationRequest.Builders3(Consumer<S3DataRepositoryConfiguration.Builder> s3)The configuration for an Amazon S3 data repository linked to an Amazon FSx Lustre file system with a data repository association.UpdateDataRepositoryAssociationRequest.Builders3(S3DataRepositoryConfiguration s3)The configuration for an Amazon S3 data repository linked to an Amazon FSx Lustre file system with a data repository association.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.fsx.model.FSxRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
associationId
UpdateDataRepositoryAssociationRequest.Builder associationId(String associationId)
The ID of the data repository association that you are updating.
- Parameters:
associationId- The ID of the data repository association that you are updating.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clientRequestToken
UpdateDataRepositoryAssociationRequest.Builder clientRequestToken(String clientRequestToken)
Sets the value of the ClientRequestToken property for this object.- Parameters:
clientRequestToken- The new value for the ClientRequestToken property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
importedFileChunkSize
UpdateDataRepositoryAssociationRequest.Builder importedFileChunkSize(Integer importedFileChunkSize)
For files imported from a data repository, this value determines the stripe count and maximum amount of data per file (in MiB) stored on a single physical disk. The maximum number of disks that a single file can be striped across is limited by the total number of disks that make up the file system.
The default chunk size is 1,024 MiB (1 GiB) and can go as high as 512,000 MiB (500 GiB). Amazon S3 objects have a maximum size of 5 TB.
- Parameters:
importedFileChunkSize- For files imported from a data repository, this value determines the stripe count and maximum amount of data per file (in MiB) stored on a single physical disk. The maximum number of disks that a single file can be striped across is limited by the total number of disks that make up the file system.The default chunk size is 1,024 MiB (1 GiB) and can go as high as 512,000 MiB (500 GiB). Amazon S3 objects have a maximum size of 5 TB.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3
UpdateDataRepositoryAssociationRequest.Builder s3(S3DataRepositoryConfiguration s3)
The configuration for an Amazon S3 data repository linked to an Amazon FSx Lustre file system with a data repository association. The configuration defines which file events (new, changed, or deleted files or directories) are automatically imported from the linked data repository to the file system or automatically exported from the file system to the data repository.
- Parameters:
s3- The configuration for an Amazon S3 data repository linked to an Amazon FSx Lustre file system with a data repository association. The configuration defines which file events (new, changed, or deleted files or directories) are automatically imported from the linked data repository to the file system or automatically exported from the file system to the data repository.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3
default UpdateDataRepositoryAssociationRequest.Builder s3(Consumer<S3DataRepositoryConfiguration.Builder> s3)
The configuration for an Amazon S3 data repository linked to an Amazon FSx Lustre file system with a data repository association. The configuration defines which file events (new, changed, or deleted files or directories) are automatically imported from the linked data repository to the file system or automatically exported from the file system to the data repository.
This is a convenience method that creates an instance of theS3DataRepositoryConfiguration.Builderavoiding the need to create one manually viaS3DataRepositoryConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tos3(S3DataRepositoryConfiguration).- Parameters:
s3- a consumer that will call methods onS3DataRepositoryConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
s3(S3DataRepositoryConfiguration)
-
overrideConfiguration
UpdateDataRepositoryAssociationRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateDataRepositoryAssociationRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-