Class DataQualityTargetTable

java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.glue.alpha.DataQualityTargetTable
All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-09-17T14:54:30.021Z") @Stability(Deprecated) @Deprecated public class DataQualityTargetTable extends software.amazon.jsii.JsiiObject
Deprecated.
(deprecated) The Glue table a DataQualityRuleset evaluates.

Example:

 IDatabase database;
 DataQualityRuleset.Builder.create(this, "MyRuleset")
         .rulesetName("my_ruleset")
         .dqdl(Dqdl.fromString("Rules = [ RowCount > 100, IsComplete \"order_id\" ]"))
         .targetTable(DataQualityTargetTable.fromTableName(database, "my_table"))
         .build();
 
  • Constructor Details

    • DataQualityTargetTable

      protected DataQualityTargetTable(software.amazon.jsii.JsiiObjectRef objRef)
      Deprecated.
    • DataQualityTargetTable

      protected DataQualityTargetTable(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
      Deprecated.
  • Method Details

    • fromTable

      @Stability(Deprecated) @Deprecated @NotNull public static DataQualityTargetTable fromTable(@NotNull IDatabaseRef database, @NotNull ITable table)
      Deprecated.
      (deprecated) Target an L2 table in a database.

      Parameters:
      database - the database that holds the table. This parameter is required.
      table - the table to evaluate. This parameter is required.
    • fromTableName

      @Stability(Deprecated) @Deprecated @NotNull public static DataQualityTargetTable fromTableName(@NotNull IDatabaseRef database, @NotNull String tableName)
      Deprecated.
      (deprecated) Target a table by name in a database.

      Use this when the table is not modeled as an L2 construct (e.g. it is imported or created elsewhere).

      Parameters:
      database - the database that holds the table. This parameter is required.
      tableName - the name of the table to evaluate. This parameter is required.
    • getDatabaseName

      @Stability(Deprecated) @Deprecated @NotNull public String getDatabaseName()
      Deprecated.
      (deprecated) The database name of the target table.
    • getTableName

      @Stability(Deprecated) @Deprecated @NotNull public String getTableName()
      Deprecated.
      (deprecated) The table name of the target table.