Interface TrustedTokenIssuerUpdateConfiguration.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<TrustedTokenIssuerUpdateConfiguration.Builder,TrustedTokenIssuerUpdateConfiguration>
,SdkBuilder<TrustedTokenIssuerUpdateConfiguration.Builder,TrustedTokenIssuerUpdateConfiguration>
,SdkPojo
- Enclosing class:
- TrustedTokenIssuerUpdateConfiguration
public static interface TrustedTokenIssuerUpdateConfiguration.Builder extends SdkPojo, CopyableBuilder<TrustedTokenIssuerUpdateConfiguration.Builder,TrustedTokenIssuerUpdateConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default TrustedTokenIssuerUpdateConfiguration.Builder
oidcJwtConfiguration(Consumer<OidcJwtUpdateConfiguration.Builder> oidcJwtConfiguration)
A structure that describes an updated configuration for a trusted token issuer that uses OpenID Connect (OIDC) with JSON web tokens (JWT).TrustedTokenIssuerUpdateConfiguration.Builder
oidcJwtConfiguration(OidcJwtUpdateConfiguration oidcJwtConfiguration)
A structure that describes an updated configuration for a trusted token issuer that uses OpenID Connect (OIDC) with 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 Detail
-
oidcJwtConfiguration
TrustedTokenIssuerUpdateConfiguration.Builder oidcJwtConfiguration(OidcJwtUpdateConfiguration oidcJwtConfiguration)
A structure that describes an updated configuration for a trusted token issuer that uses OpenID Connect (OIDC) with JSON web tokens (JWT).
- Parameters:
oidcJwtConfiguration
- A structure that describes an updated configuration for a trusted token issuer that uses OpenID Connect (OIDC) with JSON web tokens (JWT).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
oidcJwtConfiguration
default TrustedTokenIssuerUpdateConfiguration.Builder oidcJwtConfiguration(Consumer<OidcJwtUpdateConfiguration.Builder> oidcJwtConfiguration)
A structure that describes an updated configuration for a trusted token issuer that uses OpenID Connect (OIDC) with JSON web tokens (JWT).
This is a convenience method that creates an instance of theOidcJwtUpdateConfiguration.Builder
avoiding the need to create one manually viaOidcJwtUpdateConfiguration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tooidcJwtConfiguration(OidcJwtUpdateConfiguration)
.- Parameters:
oidcJwtConfiguration
- a consumer that will call methods onOidcJwtUpdateConfiguration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
oidcJwtConfiguration(OidcJwtUpdateConfiguration)
-
-