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