Show / Hide Table of Contents

Class CfnPluginPropsMixin.BasicAuthConfigurationProperty

Information about the basic authentication credentials used to configure a plugin.

Inheritance
object
CfnPluginPropsMixin.BasicAuthConfigurationProperty
Implements
CfnPluginPropsMixin.IBasicAuthConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-plugin-basicauthconfiguration.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-plugin-basicauthconfiguration.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-plugin-basicauthconfiguration.html#cfn-qbusiness-plugin-basicauthconfiguration-rolearn

SecretArn

The ARN of the Secrets Manager secret that stores the basic authentication credentials used for plugin configuration..

public string? SecretArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-plugin-basicauthconfiguration.html#cfn-qbusiness-plugin-basicauthconfiguration-secretarn

Implements

CfnPluginPropsMixin.IBasicAuthConfigurationProperty
Back to top Generated by DocFX