interface RedshiftServerlessConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnKnowledgeBasePropsMixin.RedshiftServerlessConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnKnowledgeBasePropsMixin_RedshiftServerlessConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnKnowledgeBasePropsMixin.RedshiftServerlessConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnKnowledgeBasePropsMixin.RedshiftServerlessConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » CfnKnowledgeBasePropsMixin » 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/cfn-property-mixins';
const redshiftServerlessConfigurationProperty: bedrock.CfnKnowledgeBasePropsMixin.RedshiftServerlessConfigurationProperty = {
authConfiguration: {
type: 'type',
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
(optional)
Specifies configurations for authentication to an Amazon Redshift provisioned data warehouse.
workgroupArn?
Type:
string
(optional)
The ARN of the Amazon Redshift workgroup.

.NET
Go
Java
Python
TypeScript