@Stability(value=Stable)
public static interface CfnDataSource.RedshiftParametersProperty
extends software.amazon.jsii.JsiiSerializable
The ClusterId field can be blank if Host and Port are both set. The Host and Port fields can be blank if the ClusterId field is set.
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.quicksight.*;
RedshiftParametersProperty redshiftParametersProperty = RedshiftParametersProperty.builder()
.database("database")
// the properties below are optional
.clusterId("clusterId")
.host("host")
.port(123)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataSource.RedshiftParametersProperty.Builder
A builder for
CfnDataSource.RedshiftParametersProperty |
static class |
CfnDataSource.RedshiftParametersProperty.Jsii$Proxy
An implementation for
CfnDataSource.RedshiftParametersProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataSource.RedshiftParametersProperty.Builder |
builder() |
default String |
getClusterId()
Cluster ID.
|
String |
getDatabase()
Database.
|
default String |
getHost()
Host.
|
default Number |
getPort()
Port.
|
@Stability(value=Stable) @NotNull String getDatabase()
@Stability(value=Stable) @Nullable default String getClusterId()
This field can be blank if the Host and Port are provided.
@Stability(value=Stable) @Nullable default String getHost()
This field can be blank if ClusterId is provided.
@Stability(value=Stable) @Nullable default Number getPort()
This field can be blank if the ClusterId is provided.
@Stability(value=Stable) static CfnDataSource.RedshiftParametersProperty.Builder builder()
Copyright © 2022. All rights reserved.