interface DataSourceConfigurationInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins.CfnDataSourcePropsMixin.DataSourceConfigurationInputProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatazone/mixins#CfnDataSourcePropsMixin_DataSourceConfigurationInputProperty |
Java | software.amazon.awscdk.mixins.preview.services.datazone.mixins.CfnDataSourcePropsMixin.DataSourceConfigurationInputProperty |
Python | aws_cdk.mixins_preview.aws_datazone.mixins.CfnDataSourcePropsMixin.DataSourceConfigurationInputProperty |
TypeScript | @aws-cdk/mixins-preview » aws_datazone » mixins » CfnDataSourcePropsMixin » DataSourceConfigurationInputProperty |
The configuration of the 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 dataSourceConfigurationInputProperty: datazone_mixins.CfnDataSourcePropsMixin.DataSourceConfigurationInputProperty = {
glueRunConfiguration: {
autoImportDataQualityResult: false,
catalogName: 'catalogName',
dataAccessRole: 'dataAccessRole',
relationalFilterConfigurations: [{
databaseName: 'databaseName',
filterExpressions: [{
expression: 'expression',
type: 'type',
}],
schemaName: 'schemaName',
}],
},
redshiftRunConfiguration: {
dataAccessRole: 'dataAccessRole',
redshiftCredentialConfiguration: {
secretManagerArn: 'secretManagerArn',
},
redshiftStorage: {
redshiftClusterSource: {
clusterName: 'clusterName',
},
redshiftServerlessSource: {
workgroupName: 'workgroupName',
},
},
relationalFilterConfigurations: [{
databaseName: 'databaseName',
filterExpressions: [{
expression: 'expression',
type: 'type',
}],
schemaName: 'schemaName',
}],
},
sageMakerRunConfiguration: {
trackingAssets: {
trackingAssetsKey: ['trackingAssets'],
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| glue | IResolvable | Glue | The configuration of the AWS Glue data source. |
| redshift | IResolvable | Redshift | The configuration of the Amazon Redshift data source. |
| sage | IResolvable | Sage | The configuration details of the Amazon SageMaker data source. |
glueRunConfiguration?
Type:
IResolvable | Glue
(optional)
The configuration of the AWS Glue data source.
redshiftRunConfiguration?
Type:
IResolvable | Redshift
(optional)
The configuration of the Amazon Redshift data source.
sageMakerRunConfiguration?
Type:
IResolvable | Sage
(optional)
The configuration details of the Amazon SageMaker data source.

.NET
Go
Java
Python
TypeScript