Interface CfnDataSourcePropsMixin.RedshiftRunConfigurationInputProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSourcePropsMixin.RedshiftRunConfigurationInputProperty.Jsii$Proxy
- Enclosing class:
CfnDataSourcePropsMixin
@Stability(Stable)
public static interface CfnDataSourcePropsMixin.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.cfnpropertymixins.services.datazone.*;
RedshiftRunConfigurationInputProperty redshiftRunConfigurationInputProperty = RedshiftRunConfigurationInputProperty.builder()
.dataAccessRole("dataAccessRole")
.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")
.filterExpressions(List.of(FilterExpressionProperty.builder()
.expression("expression")
.type("type")
.build()))
.schemaName("schemaName")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDataSourcePropsMixin.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.default ObjectThe 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
-
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
IResolvableorCfnDataSourcePropsMixin.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
IResolvableorCfnDataSourcePropsMixin.RedshiftStorageProperty- See Also:
-
getRelationalFilterConfigurations
The relational filter configurations included in the configuration details of the AWS Glue data source.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDataSourcePropsMixin.RelationalFilterConfigurationProperty>- See Also:
-
builder
@Stability(Stable) static CfnDataSourcePropsMixin.RedshiftRunConfigurationInputProperty.Builder builder()
-