interface OAuth2ClientCredentialConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QBusiness.Mixins.CfnPluginPropsMixin.OAuth2ClientCredentialConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsqbusiness/mixins#CfnPluginPropsMixin_OAuth2ClientCredentialConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.qbusiness.mixins.CfnPluginPropsMixin.OAuth2ClientCredentialConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_qbusiness.mixins.CfnPluginPropsMixin.OAuth2ClientCredentialConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_qbusiness » mixins » CfnPluginPropsMixin » OAuth2ClientCredentialConfigurationProperty |
Information about the OAuth 2.0 authentication credential/token used to configure a plugin.
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 oAuth2ClientCredentialConfigurationProperty: qbusiness_mixins.CfnPluginPropsMixin.OAuth2ClientCredentialConfigurationProperty = {
authorizationUrl: 'authorizationUrl',
roleArn: 'roleArn',
secretArn: 'secretArn',
tokenUrl: 'tokenUrl',
};
Properties
| Name | Type | Description |
|---|---|---|
| authorization | string | The redirect URL required by the OAuth 2.0 protocol for Amazon Q Business to authenticate a plugin user through a third party authentication server. |
| role | string | The ARN of an IAM role used by Amazon Q Business to access the OAuth 2.0 authentication credentials stored in a Secrets Manager secret. |
| secret | string | The ARN of the Secrets Manager secret that stores the OAuth 2.0 credentials/token used for plugin configuration. |
| token | string | The URL required by the OAuth 2.0 protocol to exchange an end user authorization code for an access token. |
authorizationUrl?
Type:
string
(optional)
The redirect URL required by the OAuth 2.0 protocol for Amazon Q Business to authenticate a plugin user through a third party authentication server.
roleArn?
Type:
string
(optional)
The ARN of an IAM role used by Amazon Q Business to access the OAuth 2.0 authentication credentials stored in a Secrets Manager secret.
secretArn?
Type:
string
(optional)
The ARN of the Secrets Manager secret that stores the OAuth 2.0 credentials/token used for plugin configuration.
tokenUrl?
Type:
string
(optional)
The URL required by the OAuth 2.0 protocol to exchange an end user authorization code for an access token.

.NET
Go
Java
Python
TypeScript