interface RedshiftServerlessConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.CfnKnowledgeBase.RedshiftServerlessConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnKnowledgeBase_RedshiftServerlessConfigurationProperty |
Java | software.amazon.awscdk.services.bedrock.CfnKnowledgeBase.RedshiftServerlessConfigurationProperty |
Python | aws_cdk.aws_bedrock.CfnKnowledgeBase.RedshiftServerlessConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnKnowledgeBase » RedshiftServerlessConfigurationProperty |
Contains configurations for authentication to Amazon Redshift Serverless.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrock as bedrock } from 'aws-cdk-lib';
const redshiftServerlessConfigurationProperty: bedrock.CfnKnowledgeBase.RedshiftServerlessConfigurationProperty = {
authConfiguration: {
type: 'type',
// the properties below are optional
usernamePasswordSecretArn: 'usernamePasswordSecretArn',
},
workgroupArn: 'workgroupArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| auth | IResolvable | Redshift | Specifies configurations for authentication to an Amazon Redshift provisioned data warehouse. |
| workgroup | string | The ARN of the Amazon Redshift workgroup. |
authConfiguration
Type:
IResolvable | Redshift
Specifies configurations for authentication to an Amazon Redshift provisioned data warehouse.
workgroupArn
Type:
string
The ARN of the Amazon Redshift workgroup.

.NET
Go
Java
Python
TypeScript