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()
         .redshiftCredentialConfiguration(RedshiftCredentialConfigurationProperty.builder()
                 .secretManagerArn("secretManagerArn")
                 .build())
         .redshiftStorage(RedshiftStorageProperty.builder()
                 .redshiftClusterSource(RedshiftClusterStorageProperty.builder()
                         .clusterName("clusterName")
                         .build())
                 .redshiftServerlessSource(RedshiftServerlessStorageProperty.builder()
                         .workgroupName("workgroupName")
                         .build())
                 .build())
         .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")
         .build();
 

See Also: