interface RedshiftRunConfigurationInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins.CfnDataSourcePropsMixin.RedshiftRunConfigurationInputProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatazone/mixins#CfnDataSourcePropsMixin_RedshiftRunConfigurationInputProperty |
Java | software.amazon.awscdk.mixins.preview.services.datazone.mixins.CfnDataSourcePropsMixin.RedshiftRunConfigurationInputProperty |
Python | aws_cdk.mixins_preview.aws_datazone.mixins.CfnDataSourcePropsMixin.RedshiftRunConfigurationInputProperty |
TypeScript | @aws-cdk/mixins-preview » aws_datazone » mixins » CfnDataSourcePropsMixin » RedshiftRunConfigurationInputProperty |
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 { mixins as datazone_mixins } from '@aws-cdk/mixins-preview/aws-datazone';
const redshiftRunConfigurationInputProperty: datazone_mixins.CfnDataSourcePropsMixin.RedshiftRunConfigurationInputProperty = {
dataAccessRole: 'dataAccessRole',
redshiftCredentialConfiguration: {
secretManagerArn: 'secretManagerArn',
},
redshiftStorage: {
redshiftClusterSource: {
clusterName: 'clusterName',
},
redshiftServerlessSource: {
workgroupName: 'workgroupName',
},
},
relationalFilterConfigurations: [{
databaseName: 'databaseName',
filterExpressions: [{
expression: 'expression',
type: 'type',
}],
schemaName: 'schemaName',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| data | string | The data access role included in the configuration details of the Amazon Redshift data source. |
| redshift | IResolvable | Redshift | The details of the credentials required to access an Amazon Redshift cluster. |
| redshift | IResolvable | Redshift | The details of the Amazon Redshift storage as part of the configuration of an Amazon Redshift data source run. |
| relational | IResolvable | (IResolvable | Relational)[] | The relational filter configurations included in the configuration details of the AWS Glue data source. |
dataAccessRole?
Type:
string
(optional)
The data access role included in the configuration details of the Amazon Redshift data source.
redshiftCredentialConfiguration?
Type:
IResolvable | Redshift
(optional)
The details of the credentials required to access an Amazon Redshift cluster.
redshiftStorage?
Type:
IResolvable | Redshift
(optional)
The details of the Amazon Redshift storage as part of the configuration of an Amazon Redshift data source run.
relationalFilterConfigurations?
Type:
IResolvable | (IResolvable | Relational)[]
(optional)
The relational filter configurations included in the configuration details of the AWS Glue data source.

.NET
Go
Java
Python
TypeScript