MDAA TS Docs
    Preparing search index...

    Target table in the Glue Catalog for data quality ruleset validation.

    Use cases: Table identification for data quality checks, cross-account catalog access

    AWS: AWS Glue Data Quality ruleset target table configuration

    Validation: databaseName and tableName are required; catalogId is optional for cross-account access

    interface DataQualityTargetTable {
        catalogId?: string;
        databaseName: string;
        tableName: string;
    }
    Index

    Properties

    catalogId?: string

    AWS account ID for cross-account Glue Catalog access.

    Use cases: Cross-account access, multi-account architectures, catalog federation

    AWS: AWS Glue Catalog ID (account ID)

    Validation: Must be a valid AWS account ID if provided

    databaseName: string

    Glue database name containing the target table.

    Use cases: Database identification, catalog navigation

    AWS: AWS Glue Catalog database name

    Validation: Must be a valid Glue database name; required

    tableName: string

    Glue table name to validate with data quality rules.

    Use cases: Table identification, validation scope definition

    AWS: AWS Glue Catalog table name

    Validation: Must be a valid Glue table name; required; table must exist before ruleset evaluation