interface OpenIDConnectProviderConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QBusiness.Mixins.CfnWebExperiencePropsMixin.OpenIDConnectProviderConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsqbusiness/mixins#CfnWebExperiencePropsMixin_OpenIDConnectProviderConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.qbusiness.mixins.CfnWebExperiencePropsMixin.OpenIDConnectProviderConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_qbusiness.mixins.CfnWebExperiencePropsMixin.OpenIDConnectProviderConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_qbusiness » mixins » CfnWebExperiencePropsMixin » OpenIDConnectProviderConfigurationProperty |
Information about the OIDC-compliant 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 openIDConnectProviderConfigurationProperty: qbusiness_mixins.CfnWebExperiencePropsMixin.OpenIDConnectProviderConfigurationProperty = {
secretsArn: 'secretsArn',
secretsRole: 'secretsRole',
};
Properties
| Name | Type | Description |
|---|---|---|
| secrets | string | The Amazon Resource Name (ARN) of a Secrets Manager secret containing the OIDC client secret. |
| secrets | string | An IAM role with permissions to access AWS to decrypt the Secrets Manager secret containing your OIDC client secret. |
secretsArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of a Secrets Manager secret containing the OIDC client secret.
secretsRole?
Type:
string
(optional)
An IAM role with permissions to access AWS to decrypt the Secrets Manager secret containing your OIDC client secret.

.NET
Go
Java
Python
TypeScript