MDAA TS Docs
    Preparing search index...

    Source configuration for data quality targets. Describes where the data lives so downstream DQ evaluation jobs know how to read it.

    interface DataQualitySourceConfig {
        connectionName?: string;
        redshiftTable?: string;
        s3Format?: string;
        s3Paths?: string[];
        sourceType?: "glue" | "s3" | "redshift";
    }
    Index

    Properties

    connectionName?: string

    Glue connection name for Redshift source type (can be an SSM reference).

    redshiftTable?: string

    Redshift table name for Redshift source type.

    s3Format?: string

    S3 data format for S3 source type (e.g., 'parquet', 'csv', 'json').

    s3Paths?: string[]

    S3 paths for S3 source type.

    sourceType?: "glue" | "s3" | "redshift"

    Source type: 'glue' (Glue Catalog table), 's3' (S3 paths), or 'redshift' (via Glue connection). Default: 'glue'.