interface GlueDataCatalogTableStateChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Events.DatabaseEvents.GlueDataCatalogTableStateChange.GlueDataCatalogTableStateChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/events#DatabaseEvents_GlueDataCatalogTableStateChange_GlueDataCatalogTableStateChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.glue.events.DatabaseEvents.GlueDataCatalogTableStateChange.GlueDataCatalogTableStateChangeProps |
Python | aws_cdk.mixins_preview.aws_glue.events.DatabaseEvents.GlueDataCatalogTableStateChange.GlueDataCatalogTableStateChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_glue ยป events ยป DatabaseEvents ยป GlueDataCatalogTableStateChange ยป GlueDataCatalogTableStateChangeProps |
Props type for Database 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 { events as glue_events } from '@aws-cdk/mixins-preview/aws-glue';
const glueDataCatalogTableStateChangeProps: glue_events.DatabaseEvents.GlueDataCatalogTableStateChange.GlueDataCatalogTableStateChangeProps = {
changedPartitions: ['changedPartitions'],
databaseName: ['databaseName'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
tableName: ['tableName'],
typeOfChange: ['typeOfChange'],
};
Properties
| Name | Type | Description |
|---|---|---|
| changed | string[] | changedPartitions property. |
| database | string[] | databaseName property. |
| event | AWSEvent | EventBridge event metadata. |
| table | string[] | tableName property. |
| type | string[] | typeOfChange property. |
changedPartitions?
Type:
string[]
(optional, default: Do not filter on this field)
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.
databaseName?
Type:
string[]
(optional, default: Filter with the Database reference)
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.
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
tableName?
Type:
string[]
(optional, default: Do not filter on this field)
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.
typeOfChange?
Type:
string[]
(optional, default: Do not filter on this field)
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.

.NET
Go
Java
Python
TypeScript