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
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default UserTokenConfiguration.BuilderjsonTokenTypeConfiguration(Consumer<JsonTokenTypeConfiguration.Builder> jsonTokenTypeConfiguration)Information about the JSON token type configuration.UserTokenConfiguration.BuilderjsonTokenTypeConfiguration(JsonTokenTypeConfiguration jsonTokenTypeConfiguration)Information about the JSON token type configuration.default UserTokenConfiguration.BuilderjwtTokenTypeConfiguration(Consumer<JwtTokenTypeConfiguration.Builder> jwtTokenTypeConfiguration)Information about the JWT token type configuration.UserTokenConfiguration.BuilderjwtTokenTypeConfiguration(JwtTokenTypeConfiguration jwtTokenTypeConfiguration)Information about the JWT token type configuration.-
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
-
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:
jwtTokenTypeConfiguration(JwtTokenTypeConfiguration)
-
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:
jsonTokenTypeConfiguration(JsonTokenTypeConfiguration)
-
-