Interface UserTokenConfiguration.Builder
- All Superinterfaces:
 Buildable,CopyableBuilder<UserTokenConfiguration.Builder,,UserTokenConfiguration> SdkBuilder<UserTokenConfiguration.Builder,,UserTokenConfiguration> SdkPojo
- Enclosing class:
 UserTokenConfiguration
public static interface UserTokenConfiguration.Builder
extends SdkPojo, CopyableBuilder<UserTokenConfiguration.Builder,UserTokenConfiguration> 
- 
Method Summary
Modifier and TypeMethodDescriptiondefault UserTokenConfiguration.BuilderjsonTokenTypeConfiguration(Consumer<JsonTokenTypeConfiguration.Builder> jsonTokenTypeConfiguration) Information about the JSON token type configuration.jsonTokenTypeConfiguration(JsonTokenTypeConfiguration jsonTokenTypeConfiguration) Information about the JSON token type configuration.default UserTokenConfiguration.BuilderjwtTokenTypeConfiguration(Consumer<JwtTokenTypeConfiguration.Builder> jwtTokenTypeConfiguration) Information about the JWT token type configuration.jwtTokenTypeConfiguration(JwtTokenTypeConfiguration jwtTokenTypeConfiguration) Information about the JWT token type configuration.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields 
- 
Method Details
- 
jwtTokenTypeConfiguration
UserTokenConfiguration.Builder jwtTokenTypeConfiguration(JwtTokenTypeConfiguration jwtTokenTypeConfiguration) Information about the JWT token type configuration.
- Parameters:
 jwtTokenTypeConfiguration- Information about the JWT token type configuration.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
jwtTokenTypeConfiguration
default UserTokenConfiguration.Builder jwtTokenTypeConfiguration(Consumer<JwtTokenTypeConfiguration.Builder> jwtTokenTypeConfiguration) Information about the JWT token type configuration.
This is a convenience method that creates an instance of theJwtTokenTypeConfiguration.Builderavoiding the need to create one manually viaJwtTokenTypeConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tojwtTokenTypeConfiguration(JwtTokenTypeConfiguration).- Parameters:
 jwtTokenTypeConfiguration- a consumer that will call methods onJwtTokenTypeConfiguration.Builder- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 - See Also:
 
 - 
jsonTokenTypeConfiguration
UserTokenConfiguration.Builder jsonTokenTypeConfiguration(JsonTokenTypeConfiguration jsonTokenTypeConfiguration) Information about the JSON token type configuration.
- Parameters:
 jsonTokenTypeConfiguration- Information about the JSON token type configuration.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
jsonTokenTypeConfiguration
default UserTokenConfiguration.Builder jsonTokenTypeConfiguration(Consumer<JsonTokenTypeConfiguration.Builder> jsonTokenTypeConfiguration) Information about the JSON token type configuration.
This is a convenience method that creates an instance of theJsonTokenTypeConfiguration.Builderavoiding the need to create one manually viaJsonTokenTypeConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tojsonTokenTypeConfiguration(JsonTokenTypeConfiguration).- Parameters:
 jsonTokenTypeConfiguration- a consumer that will call methods onJsonTokenTypeConfiguration.Builder- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 - See Also:
 
 
 -