Interface CfnWebExperience.IdentityProviderConfigurationProperty
- All Superinterfaces:
 software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
 CfnWebExperience.IdentityProviderConfigurationProperty.Jsii$Proxy
- Enclosing class:
 CfnWebExperience
@Stability(Stable)
public static interface CfnWebExperience.IdentityProviderConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Provides information about the identity provider (IdP) used to authenticate end users of an Amazon Q Business web experience.
 
Example:
 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.qbusiness.*;
 IdentityProviderConfigurationProperty identityProviderConfigurationProperty = IdentityProviderConfigurationProperty.builder()
         .openIdConnectConfiguration(OpenIDConnectProviderConfigurationProperty.builder()
                 .secretsArn("secretsArn")
                 .secretsRole("secretsRole")
                 .build())
         .samlConfiguration(SamlProviderConfigurationProperty.builder()
                 .authenticationUrl("authenticationUrl")
                 .build())
         .build();
 
 - See Also:
 
- 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWebExperience.IdentityProviderConfigurationPropertystatic final classAn implementation forCfnWebExperience.IdentityProviderConfigurationProperty - 
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe OIDC-compliant identity provider (IdP) used to authenticate end users of an Amazon Q Business web experience.default ObjectThe SAML 2.0-compliant identity provider (IdP) used to authenticate end users of an Amazon Q Business web experience.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getOpenIdConnectConfiguration
The OIDC-compliant identity provider (IdP) used to authenticate end users of an Amazon Q Business web experience.Returns union: either
IResolvableorCfnWebExperience.OpenIDConnectProviderConfigurationProperty- See Also:
 
 - 
getSamlConfiguration
The SAML 2.0-compliant identity provider (IdP) used to authenticate end users of an Amazon Q Business web experience.Returns union: either
IResolvableorCfnWebExperience.SamlProviderConfigurationProperty- See Also:
 
 - 
builder
 
 -