Interface GlueDataCatalogTableStateChange.GlueDataCatalogTableStateChangeProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
GlueDataCatalogTableStateChange.GlueDataCatalogTableStateChangeProps.Jsii$Proxy
Enclosing class:
GlueDataCatalogTableStateChange

@Stability(Experimental) public static interface GlueDataCatalogTableStateChange.GlueDataCatalogTableStateChangeProps extends software.amazon.jsii.JsiiSerializable
(experimental) Props type for aws.glue@GlueDataCatalogTableStateChange event.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.glue.events.*;
 GlueDataCatalogTableStateChangeProps glueDataCatalogTableStateChangeProps = GlueDataCatalogTableStateChangeProps.builder()
         .changedPartitions(List.of("changedPartitions"))
         .databaseName(List.of("databaseName"))
         .eventMetadata(AWSEventMetadataProps.builder()
                 .region(List.of("region"))
                 .resources(List.of("resources"))
                 .version(List.of("version"))
                 .build())
         .tableName(List.of("tableName"))
         .typeOfChange(List.of("typeOfChange"))
         .build();
 
  • Method Details

    • getChangedPartitions

      @Stability(Experimental) @Nullable default List<String> getChangedPartitions()
      (experimental) changedPartitions property.

      Specify an array of string values to match this event if the actual value of changedPartitions is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getDatabaseName

      @Stability(Experimental) @Nullable default List<String> getDatabaseName()
      (experimental) databaseName property.

      Specify an array of string values to match this event if the actual value of databaseName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

      Default: - Filter with the Database reference

    • getEventMetadata

      @Stability(Experimental) @Nullable default AWSEventMetadataProps getEventMetadata()
      (experimental) EventBridge event metadata.

      Default: - -

    • getTableName

      @Stability(Experimental) @Nullable default List<String> getTableName()
      (experimental) tableName property.

      Specify an array of string values to match this event if the actual value of tableName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getTypeOfChange

      @Stability(Experimental) @Nullable default List<String> getTypeOfChange()
      (experimental) typeOfChange property.

      Specify an array of string values to match this event if the actual value of typeOfChange is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

      Default: - Do not filter on this field

    • builder

      Returns:
      a GlueDataCatalogTableStateChange.GlueDataCatalogTableStateChangeProps.Builder of GlueDataCatalogTableStateChange.GlueDataCatalogTableStateChangeProps