Interface Identity.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Identity.Builder,Identity>,SdkBuilder<Identity.Builder,Identity>,SdkPojo
- Enclosing class:
- Identity
public static interface Identity.Builder extends SdkPojo, CopyableBuilder<Identity.Builder,Identity>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Identity.Builderoidc(Consumer<OIDC.Builder> oidc)An object representing the OpenID Connect identity provider information.Identity.Builderoidc(OIDC oidc)An object representing the OpenID Connect identity provider information.-
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
-
oidc
Identity.Builder oidc(OIDC oidc)
An object representing the OpenID Connect identity provider information.
- Parameters:
oidc- An object representing the OpenID Connect identity provider information.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
oidc
default Identity.Builder oidc(Consumer<OIDC.Builder> oidc)
An object representing the OpenID Connect identity provider information.
This is a convenience method that creates an instance of theOIDC.Builderavoiding the need to create one manually viaOIDC.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tooidc(OIDC).- Parameters:
oidc- a consumer that will call methods onOIDC.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
oidc(OIDC)
-
-