interface IdentityProviderConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QBusiness.CfnWebExperiencePropsMixin.IdentityProviderConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsqbusiness#CfnWebExperiencePropsMixin_IdentityProviderConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.qbusiness.CfnWebExperiencePropsMixin.IdentityProviderConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_qbusiness.CfnWebExperiencePropsMixin.IdentityProviderConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_qbusiness » 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 { aws_qbusiness as qbusiness } from '@aws-cdk/cfn-property-mixins';
const identityProviderConfigurationProperty: qbusiness.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