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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnKnowledgeBase.RedshiftServerlessConfigurationProperty
static final class
An implementation forCfnKnowledgeBase.RedshiftServerlessConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Specifies configurations for authentication to an Amazon Redshift provisioned data warehouse.The ARN of the Amazon Redshift workgroup.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAuthConfiguration
Specifies configurations for authentication to an Amazon Redshift provisioned data warehouse.- See Also:
-
getWorkgroupArn
The ARN of the Amazon Redshift workgroup.- See Also:
-
builder
@Stability(Stable) static CfnKnowledgeBase.RedshiftServerlessConfigurationProperty.Builder builder()
-