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 class
A builder forCfnWebExperience.IdentityProviderConfigurationProperty
static final class
An implementation forCfnWebExperience.IdentityProviderConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
The OIDC-compliant identity provider (IdP) used to authenticate end users of an Amazon Q Business web experience.default Object
The 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.- See Also:
-
getSamlConfiguration
The SAML 2.0-compliant identity provider (IdP) used to authenticate end users of an Amazon Q Business web experience.- See Also:
-
builder
-