Interface JWTOptionsOutput.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<JWTOptionsOutput.Builder,JWTOptionsOutput>,SdkBuilder<JWTOptionsOutput.Builder,JWTOptionsOutput>,SdkPojo
- Enclosing class:
- JWTOptionsOutput
public static interface JWTOptionsOutput.Builder extends SdkPojo, CopyableBuilder<JWTOptionsOutput.Builder,JWTOptionsOutput>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JWTOptionsOutput.Builderenabled(Boolean enabled)True if JWT use is enabled.JWTOptionsOutput.BuilderpublicKey(String publicKey)The key used to verify the signature of incoming JWT requests.JWTOptionsOutput.BuilderrolesKey(String rolesKey)The key used for matching the JWT roles attribute.JWTOptionsOutput.BuildersubjectKey(String subjectKey)The key used for matching the JWT subject attribute.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
enabled
JWTOptionsOutput.Builder enabled(Boolean enabled)
True if JWT use is enabled.
- Parameters:
enabled- True if JWT use is enabled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subjectKey
JWTOptionsOutput.Builder subjectKey(String subjectKey)
The key used for matching the JWT subject attribute.
- Parameters:
subjectKey- The key used for matching the JWT subject attribute.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rolesKey
JWTOptionsOutput.Builder rolesKey(String rolesKey)
The key used for matching the JWT roles attribute.
- Parameters:
rolesKey- The key used for matching the JWT roles attribute.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
publicKey
JWTOptionsOutput.Builder publicKey(String publicKey)
The key used to verify the signature of incoming JWT requests.
- Parameters:
publicKey- The key used to verify the signature of incoming JWT requests.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-