Interface CfnKnowledgeBase.RedshiftServerlessConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnKnowledgeBase.RedshiftServerlessConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnKnowledgeBase

@Stability(Stable) public static interface CfnKnowledgeBase.RedshiftServerlessConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.bedrock.*;
 RedshiftServerlessConfigurationProperty redshiftServerlessConfigurationProperty = RedshiftServerlessConfigurationProperty.builder()
         .authConfiguration(RedshiftServerlessAuthConfigurationProperty.builder()
                 .type("type")
                 // the properties below are optional
                 .usernamePasswordSecretArn("usernamePasswordSecretArn")
                 .build())
         .workgroupArn("workgroupArn")
         .build();
 

See Also: