Interface CfnKnowledgeBase.RedshiftProvisionedAuthConfigurationProperty

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

@Stability(Stable) public static interface CfnKnowledgeBase.RedshiftProvisionedAuthConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Contains configurations for authentication to an Amazon Redshift provisioned data warehouse.

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.

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.*;
 RedshiftProvisionedAuthConfigurationProperty redshiftProvisionedAuthConfigurationProperty = RedshiftProvisionedAuthConfigurationProperty.builder()
         .type("type")
         // the properties below are optional
         .databaseUser("databaseUser")
         .usernamePasswordSecretArn("usernamePasswordSecretArn")
         .build();
 

See Also: