Interface IdentityProviderConfiguration.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<IdentityProviderConfiguration.Builder,
,IdentityProviderConfiguration> SdkBuilder<IdentityProviderConfiguration.Builder,
,IdentityProviderConfiguration> SdkPojo
- Enclosing class:
IdentityProviderConfiguration
@Mutable
@NotThreadSafe
public static interface IdentityProviderConfiguration.Builder
extends SdkPojo, CopyableBuilder<IdentityProviderConfiguration.Builder,IdentityProviderConfiguration>
-
Method Summary
Modifier and TypeMethodDescriptionopenIDConnectConfiguration
(Consumer<OpenIDConnectProviderConfiguration.Builder> openIDConnectConfiguration) Sets the value of the OpenIDConnectConfiguration property for this object.openIDConnectConfiguration
(OpenIDConnectProviderConfiguration openIDConnectConfiguration) Sets the value of the OpenIDConnectConfiguration property for this object.samlConfiguration
(Consumer<SamlProviderConfiguration.Builder> samlConfiguration) Sets the value of the SamlConfiguration property for this object.samlConfiguration
(SamlProviderConfiguration samlConfiguration) Sets the value of the SamlConfiguration property for this object.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 Details
-
samlConfiguration
IdentityProviderConfiguration.Builder samlConfiguration(SamlProviderConfiguration samlConfiguration) Sets the value of the SamlConfiguration property for this object.- Parameters:
samlConfiguration
- The new value for the SamlConfiguration property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
samlConfiguration
default IdentityProviderConfiguration.Builder samlConfiguration(Consumer<SamlProviderConfiguration.Builder> samlConfiguration) Sets the value of the SamlConfiguration property for this object. This is a convenience method that creates an instance of theSamlProviderConfiguration.Builder
avoiding the need to create one manually viaSamlProviderConfiguration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tosamlConfiguration(SamlProviderConfiguration)
.- Parameters:
samlConfiguration
- a consumer that will call methods onSamlProviderConfiguration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
openIDConnectConfiguration
IdentityProviderConfiguration.Builder openIDConnectConfiguration(OpenIDConnectProviderConfiguration openIDConnectConfiguration) Sets the value of the OpenIDConnectConfiguration property for this object.- Parameters:
openIDConnectConfiguration
- The new value for the OpenIDConnectConfiguration property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
openIDConnectConfiguration
default IdentityProviderConfiguration.Builder openIDConnectConfiguration(Consumer<OpenIDConnectProviderConfiguration.Builder> openIDConnectConfiguration) Sets the value of the OpenIDConnectConfiguration property for this object. This is a convenience method that creates an instance of theOpenIDConnectProviderConfiguration.Builder
avoiding the need to create one manually viaOpenIDConnectProviderConfiguration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toopenIDConnectConfiguration(OpenIDConnectProviderConfiguration)
.- Parameters:
openIDConnectConfiguration
- a consumer that will call methods onOpenIDConnectProviderConfiguration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-