Class CfnPluginPropsMixin.BasicAuthConfigurationProperty
Information about the basic authentication credentials used to configure a plugin.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QBusiness
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnPluginPropsMixin.BasicAuthConfigurationProperty : CfnPluginPropsMixin.IBasicAuthConfigurationProperty
Syntax (vb)
Public Class CfnPluginPropsMixin.BasicAuthConfigurationProperty Implements CfnPluginPropsMixin.IBasicAuthConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.QBusiness;
var basicAuthConfigurationProperty = new BasicAuthConfigurationProperty {
RoleArn = "roleArn",
SecretArn = "secretArn"
};
Synopsis
Constructors
| BasicAuthConfigurationProperty() | Information about the basic authentication credentials used to configure a plugin. |
Properties
| RoleArn | The ARN of an IAM role used by Amazon Q Business to access the basic authentication credentials stored in a Secrets Manager secret. |
| SecretArn | The ARN of the Secrets Manager secret that stores the basic authentication credentials used for plugin configuration.. |
Constructors
BasicAuthConfigurationProperty()
Information about the basic authentication credentials used to configure a plugin.
public BasicAuthConfigurationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.QBusiness;
var basicAuthConfigurationProperty = new BasicAuthConfigurationProperty {
RoleArn = "roleArn",
SecretArn = "secretArn"
};
Properties
RoleArn
The ARN of an IAM role used by Amazon Q Business to access the basic authentication credentials stored in a Secrets Manager secret.
public string? RoleArn { get; set; }
Property Value
Remarks
SecretArn
The ARN of the Secrets Manager secret that stores the basic authentication credentials used for plugin configuration..
public string? SecretArn { get; set; }