Interface CfnKnowledgeBasePropsMixin.IRedshiftServerlessAuthConfigurationProperty
Specifies configurations for authentication to a Redshift Serverless.
Namespace: Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnKnowledgeBasePropsMixin.IRedshiftServerlessAuthConfigurationProperty
Syntax (vb)
Public Interface CfnKnowledgeBasePropsMixin.IRedshiftServerlessAuthConfigurationProperty
Remarks
Specify the type of authentication to use in the type field and include the corresponding field. If you specify IAM authentication, you don't need to include another field.
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.Mixins.Preview.AWS.Bedrock.Mixins;
var redshiftServerlessAuthConfigurationProperty = new RedshiftServerlessAuthConfigurationProperty {
Type = "type",
UsernamePasswordSecretArn = "usernamePasswordSecretArn"
};
Synopsis
Properties
| Type | The type of authentication to use. |
| UsernamePasswordSecretArn | The ARN of an Secrets Manager secret for authentication. |
Properties
Type
The type of authentication to use.
string? Type { get; }
Property Value
Remarks
UsernamePasswordSecretArn
The ARN of an Secrets Manager secret for authentication.
string? UsernamePasswordSecretArn { get; }