Interface S3BaseClientBuilder<B extends S3BaseClientBuilder<B,C>,C>
-
- All Superinterfaces:
AwsClientBuilder<B,C>,Buildable,SdkBuilder<B,C>,SdkClientBuilder<B,C>
- All Known Subinterfaces:
S3AsyncClientBuilder,S3ClientBuilder
@Generated("software.amazon.awssdk:codegen") public interface S3BaseClientBuilder<B extends S3BaseClientBuilder<B,C>,C> extends AwsClientBuilder<B,C>
This includes configuration specific to Amazon S3 that is supported by bothS3ClientBuilderandS3AsyncClientBuilder.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Baccelerate(Boolean accelerate)Enables this client to use S3 Transfer Acceleration endpoints.default BauthSchemeProvider(S3AuthSchemeProvider authSchemeProvider)Set theS3AuthSchemeProviderimplementation that will be used by the client to resolve the auth scheme for each request.BcrossRegionAccessEnabled(Boolean crossRegionAccessEnabled)Enables cross-region bucket access for this clientBdisableMultiRegionAccessPoints(Boolean disableMultiRegionAccessPoints)Disables this client's usage of Multi-Region Access Points.default BendpointProvider(S3EndpointProvider endpointProvider)Set theS3EndpointProviderimplementation that will be used by the client to determine the endpoint for each request.BforcePathStyle(Boolean forcePathStyle)Forces this client to use path-style addressing for buckets.default BserviceConfiguration(Consumer<S3Configuration.Builder> serviceConfiguration)BserviceConfiguration(S3Configuration serviceConfiguration)BuseArnRegion(Boolean useArnRegion)Enables this client to use an ARN's region when constructing an endpoint instead of the client's configured region.-
Methods inherited from interface software.amazon.awssdk.awscore.client.builder.AwsClientBuilder
credentialsProvider, credentialsProvider, defaultsMode, dualstackEnabled, fipsEnabled, region
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.client.builder.SdkClientBuilder
addPlugin, endpointOverride, overrideConfiguration, overrideConfiguration, overrideConfiguration, plugins, putAuthScheme
-
-
-
-
Method Detail
-
serviceConfiguration
B serviceConfiguration(S3Configuration serviceConfiguration)
-
serviceConfiguration
default B serviceConfiguration(Consumer<S3Configuration.Builder> serviceConfiguration)
-
endpointProvider
default B endpointProvider(S3EndpointProvider endpointProvider)
Set theS3EndpointProviderimplementation that will be used by the client to determine the endpoint for each request. This is optional; if none is provided a default implementation will be used the SDK.
-
authSchemeProvider
default B authSchemeProvider(S3AuthSchemeProvider authSchemeProvider)
Set theS3AuthSchemeProviderimplementation that will be used by the client to resolve the auth scheme for each request. This is optional; if none is provided a default implementation will be used the SDK.
-
accelerate
B accelerate(Boolean accelerate)
Enables this client to use S3 Transfer Acceleration endpoints.
-
disableMultiRegionAccessPoints
B disableMultiRegionAccessPoints(Boolean disableMultiRegionAccessPoints)
Disables this client's usage of Multi-Region Access Points.
-
forcePathStyle
B forcePathStyle(Boolean forcePathStyle)
Forces this client to use path-style addressing for buckets.
-
useArnRegion
B useArnRegion(Boolean useArnRegion)
Enables this client to use an ARN's region when constructing an endpoint instead of the client's configured region.
-
-