interface BasicAuthConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QBusiness.Mixins.CfnPluginPropsMixin.BasicAuthConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsqbusiness/mixins#CfnPluginPropsMixin_BasicAuthConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.qbusiness.mixins.CfnPluginPropsMixin.BasicAuthConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_qbusiness.mixins.CfnPluginPropsMixin.BasicAuthConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_qbusiness » mixins » CfnPluginPropsMixin » BasicAuthConfigurationProperty |
Information about the basic authentication credentials 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 basicAuthConfigurationProperty: qbusiness_mixins.CfnPluginPropsMixin.BasicAuthConfigurationProperty = {
roleArn: 'roleArn',
secretArn: 'secretArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| role | string | The ARN of an IAM role used by Amazon Q Business to access the basic authentication credentials stored in a Secrets Manager secret. |
| secret | string | The ARN of the Secrets Manager secret that stores the basic authentication credentials used for plugin configuration.. |
roleArn?
Type:
string
(optional)
The ARN of an IAM role used by Amazon Q Business to access the basic authentication credentials stored in a Secrets Manager secret.
secretArn?
Type:
string
(optional)
The ARN of the Secrets Manager secret that stores the basic authentication credentials used for plugin configuration..

.NET
Go
Java
Python
TypeScript