interface IdentityProviderConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QBusiness.Mixins.CfnWebExperiencePropsMixin.IdentityProviderConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsqbusiness/mixins#CfnWebExperiencePropsMixin_IdentityProviderConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.qbusiness.mixins.CfnWebExperiencePropsMixin.IdentityProviderConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_qbusiness.mixins.CfnWebExperiencePropsMixin.IdentityProviderConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_qbusiness » mixins » CfnWebExperiencePropsMixin » IdentityProviderConfigurationProperty |
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 { mixins as qbusiness_mixins } from '@aws-cdk/mixins-preview/aws-qbusiness';
const identityProviderConfigurationProperty: qbusiness_mixins.CfnWebExperiencePropsMixin.IdentityProviderConfigurationProperty = {
openIdConnectConfiguration: {
secretsArn: 'secretsArn',
secretsRole: 'secretsRole',
},
samlConfiguration: {
authenticationUrl: 'authenticationUrl',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| open | IResolvable | Open | The OIDC-compliant identity provider (IdP) used to authenticate end users of an Amazon Q Business web experience. |
| saml | IResolvable | Saml | The SAML 2.0-compliant identity provider (IdP) used to authenticate end users of an Amazon Q Business web experience. |
openIdConnectConfiguration?
Type:
IResolvable | Open
(optional)
The OIDC-compliant identity provider (IdP) used to authenticate end users of an Amazon Q Business web experience.
samlConfiguration?
Type:
IResolvable | Saml
(optional)
The SAML 2.0-compliant identity provider (IdP) used to authenticate end users of an Amazon Q Business web experience.

.NET
Go
Java
Python
TypeScript