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
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOpenIdConnectConfiguration
- See Also:
-
getSamlConfiguration
- See Also:
-
builder
-