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: