Interface CfnDataSource.RedshiftRunConfigurationInputProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSource.RedshiftRunConfigurationInputProperty.Jsii$Proxy
- Enclosing class:
CfnDataSource
@Stability(Stable)
public static interface CfnDataSource.RedshiftRunConfigurationInputProperty
extends software.amazon.jsii.JsiiSerializable
The relational filter configurations included in the configuration details of the Amazon Redshift data source.
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.datazone.*;
RedshiftRunConfigurationInputProperty redshiftRunConfigurationInputProperty = RedshiftRunConfigurationInputProperty.builder()
.relationalFilterConfigurations(List.of(RelationalFilterConfigurationProperty.builder()
.databaseName("databaseName")
// the properties below are optional
.filterExpressions(List.of(FilterExpressionProperty.builder()
.expression("expression")
.type("type")
.build()))
.schemaName("schemaName")
.build()))
// the properties below are optional
.dataAccessRole("dataAccessRole")
.redshiftCredentialConfiguration(RedshiftCredentialConfigurationProperty.builder()
.secretManagerArn("secretManagerArn")
.build())
.redshiftStorage(RedshiftStorageProperty.builder()
.redshiftClusterSource(RedshiftClusterStorageProperty.builder()
.clusterName("clusterName")
.build())
.redshiftServerlessSource(RedshiftServerlessStorageProperty.builder()
.workgroupName("workgroupName")
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSource.RedshiftRunConfigurationInputPropertystatic final classAn implementation forCfnDataSource.RedshiftRunConfigurationInputProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe data access role included in the configuration details of the Amazon Redshift data source.default ObjectThe details of the credentials required to access an Amazon Redshift cluster.default ObjectThe details of the Amazon Redshift storage as part of the configuration of an Amazon Redshift data source run.The relational filter configurations included in the configuration details of the AWS Glue data source.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRelationalFilterConfigurations
The relational filter configurations included in the configuration details of the AWS Glue data source.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDataSource.RelationalFilterConfigurationProperty>- See Also:
-
getDataAccessRole
The data access role included in the configuration details of the Amazon Redshift data source.- See Also:
-
getRedshiftCredentialConfiguration
The details of the credentials required to access an Amazon Redshift cluster.Returns union: either
IResolvableorCfnDataSource.RedshiftCredentialConfigurationProperty- See Also:
-
getRedshiftStorage
The details of the Amazon Redshift storage as part of the configuration of an Amazon Redshift data source run.Returns union: either
IResolvableorCfnDataSource.RedshiftStorageProperty- See Also:
-
builder
-