Interface CfnKnowledgeBasePropsMixin.RedshiftServerlessConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnKnowledgeBasePropsMixin.RedshiftServerlessConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnKnowledgeBasePropsMixin
@Stability(Stable)
public static interface CfnKnowledgeBasePropsMixin.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.cfnpropertymixins.services.bedrock.*;
RedshiftServerlessConfigurationProperty redshiftServerlessConfigurationProperty = RedshiftServerlessConfigurationProperty.builder()
.authConfiguration(RedshiftServerlessAuthConfigurationProperty.builder()
.type("type")
.usernamePasswordSecretArn("usernamePasswordSecretArn")
.build())
.workgroupArn("workgroupArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnKnowledgeBasePropsMixin.RedshiftServerlessConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAuthConfiguration
Specifies configurations for authentication to an Amazon Redshift provisioned data warehouse.Returns union: either
IResolvableorCfnKnowledgeBasePropsMixin.RedshiftServerlessAuthConfigurationProperty- See Also:
-
getWorkgroupArn
The ARN of the Amazon Redshift workgroup.- See Also:
-
builder
@Stability(Stable) static CfnKnowledgeBasePropsMixin.RedshiftServerlessConfigurationProperty.Builder builder()
-