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