Interface TrustedTokenIssuerConfiguration.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<TrustedTokenIssuerConfiguration.Builder,
,TrustedTokenIssuerConfiguration> SdkBuilder<TrustedTokenIssuerConfiguration.Builder,
,TrustedTokenIssuerConfiguration> SdkPojo
- Enclosing class:
TrustedTokenIssuerConfiguration
public static interface TrustedTokenIssuerConfiguration.Builder
extends SdkPojo, CopyableBuilder<TrustedTokenIssuerConfiguration.Builder,TrustedTokenIssuerConfiguration>
-
Method Summary
Modifier and TypeMethodDescriptionoidcJwtConfiguration
(Consumer<OidcJwtConfiguration.Builder> oidcJwtConfiguration) A structure that describes the settings for a trusted token issuer that works with OpenID Connect (OIDC) by using JSON Web Tokens (JWT).oidcJwtConfiguration
(OidcJwtConfiguration oidcJwtConfiguration) A structure that describes the settings for a trusted token issuer that works with OpenID Connect (OIDC) by using JSON Web Tokens (JWT).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, sdkFields
-
Method Details
-
oidcJwtConfiguration
TrustedTokenIssuerConfiguration.Builder oidcJwtConfiguration(OidcJwtConfiguration oidcJwtConfiguration) A structure that describes the settings for a trusted token issuer that works with OpenID Connect (OIDC) by using JSON Web Tokens (JWT).
- Parameters:
oidcJwtConfiguration
- A structure that describes the settings for a trusted token issuer that works with OpenID Connect (OIDC) by using JSON Web Tokens (JWT).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
oidcJwtConfiguration
default TrustedTokenIssuerConfiguration.Builder oidcJwtConfiguration(Consumer<OidcJwtConfiguration.Builder> oidcJwtConfiguration) A structure that describes the settings for a trusted token issuer that works with OpenID Connect (OIDC) by using JSON Web Tokens (JWT).
This is a convenience method that creates an instance of theOidcJwtConfiguration.Builder
avoiding the need to create one manually viaOidcJwtConfiguration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tooidcJwtConfiguration(OidcJwtConfiguration)
.- Parameters:
oidcJwtConfiguration
- a consumer that will call methods onOidcJwtConfiguration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-