interface GlueDataCatalogDatabaseStateChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Events.DatabaseEvents.GlueDataCatalogDatabaseStateChange.GlueDataCatalogDatabaseStateChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/events#DatabaseEvents_GlueDataCatalogDatabaseStateChange_GlueDataCatalogDatabaseStateChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.glue.events.DatabaseEvents.GlueDataCatalogDatabaseStateChange.GlueDataCatalogDatabaseStateChangeProps |
Python | aws_cdk.mixins_preview.aws_glue.events.DatabaseEvents.GlueDataCatalogDatabaseStateChange.GlueDataCatalogDatabaseStateChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_glue ยป events ยป DatabaseEvents ยป GlueDataCatalogDatabaseStateChange ยป GlueDataCatalogDatabaseStateChangeProps |
Props type for Database aws.glue@GlueDataCatalogDatabaseStateChange 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 glueDataCatalogDatabaseStateChangeProps: glue_events.DatabaseEvents.GlueDataCatalogDatabaseStateChange.GlueDataCatalogDatabaseStateChangeProps = {
changedTables: ['changedTables'],
databaseName: ['databaseName'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
typeOfChange: ['typeOfChange'],
};
Properties
| Name | Type | Description |
|---|---|---|
| changed | string[] | changedTables property. |
| database | string[] | databaseName property. |
| event | AWSEvent | EventBridge event metadata. |
| type | string[] | typeOfChange property. |
changedTables?
Type:
string[]
(optional, default: Do not filter on this field)
changedTables property.
Specify an array of string values to match this event if the actual value of changedTables 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.
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