Interface CodeCatalystBaseClientBuilder<B extends CodeCatalystBaseClientBuilder<B,C>,C>
-
- All Superinterfaces:
AwsClientBuilder<B,C>,Buildable,SdkBuilder<B,C>,SdkClientBuilder<B,C>
- All Known Subinterfaces:
CodeCatalystAsyncClientBuilder,CodeCatalystClientBuilder
@Generated("software.amazon.awssdk:codegen") public interface CodeCatalystBaseClientBuilder<B extends CodeCatalystBaseClientBuilder<B,C>,C> extends AwsClientBuilder<B,C>
This includes configuration specific to Amazon CodeCatalyst that is supported by bothCodeCatalystClientBuilderandCodeCatalystAsyncClientBuilder.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default BauthSchemeProvider(CodeCatalystAuthSchemeProvider authSchemeProvider)Set theCodeCatalystAuthSchemeProviderimplementation that will be used by the client to resolve the auth scheme for each request.default BendpointProvider(CodeCatalystEndpointProvider endpointProvider)Set theCodeCatalystEndpointProviderimplementation that will be used by the client to determine the endpoint for each request.default BtokenProvider(SdkTokenProvider tokenProvider)Set the token provider to use for bearer token authorization.default BtokenProvider(IdentityProvider<? extends TokenIdentity> tokenProvider)Set the token provider to use for bearer token authorization.-
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
-
endpointProvider
default B endpointProvider(CodeCatalystEndpointProvider endpointProvider)
Set theCodeCatalystEndpointProviderimplementation 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(CodeCatalystAuthSchemeProvider authSchemeProvider)
Set theCodeCatalystAuthSchemeProviderimplementation 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.
-
tokenProvider
default B tokenProvider(SdkTokenProvider tokenProvider)
Set the token provider to use for bearer token authorization. This is optional, if none is provided, the SDK will useDefaultAwsTokenProvider.If the service, or any of its operations require Bearer Token Authorization, then the SDK will default to this token provider to retrieve the token to use for authorization.
This provider works in conjunction with the
software.amazon.awssdk.core.client.config.SdkAdvancedClientOption.TOKEN_SIGNERset on the client. By default it isBearerTokenSigner.
-
tokenProvider
default B tokenProvider(IdentityProvider<? extends TokenIdentity> tokenProvider)
Set the token provider to use for bearer token authorization. This is optional, if none is provided, the SDK will useDefaultAwsTokenProvider.If the service, or any of its operations require Bearer Token Authorization, then the SDK will default to this token provider to retrieve the token to use for authorization.
This provider works in conjunction with the
software.amazon.awssdk.core.client.config.SdkAdvancedClientOption.TOKEN_SIGNERset on the client. By default it isBearerTokenSigner.
-
-