interface Notification
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataExchange.Events.SchemaChangePlannedForDataSet.Notification |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdataexchange/events#SchemaChangePlannedForDataSet_Notification |
Java | software.amazon.awscdk.mixins.preview.services.dataexchange.events.SchemaChangePlannedForDataSet.Notification |
Python | aws_cdk.mixins_preview.aws_dataexchange.events.SchemaChangePlannedForDataSet.Notification |
TypeScript | @aws-cdk/mixins-preview ยป aws_dataexchange ยป events ยป SchemaChangePlannedForDataSet ยป Notification |
Type definition for Notification.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as dataexchange_events } from '@aws-cdk/mixins-preview/aws-dataexchange';
const notification: dataexchange_events.SchemaChangePlannedForDataSet.Notification = {
comment: ['comment'],
details: {
schemaChange: {
changes: [{
description: ['description'],
name: ['name'],
type: ['type'],
}],
schemaChangeAt: ['schemaChangeAt'],
},
},
scope: {
lakeFormationTagPolicies: [{
database: ['database'],
table: ['table'],
}],
redshiftDataShares: [{
arn: ['arn'],
database: ['database'],
function: ['function'],
schema: ['schema'],
table: ['table'],
view: ['view'],
}],
s3DataAccesses: [{
keyPrefixes: ['keyPrefixes'],
keys: ['keys'],
}],
},
type: ['type'],
};
Properties
| Name | Type | Description |
|---|---|---|
| comment? | string[] | Comment property. |
| details? | Details | Details property. |
| scope? | Scope | Scope property. |
| type? | string[] | Type property. |
comment?
Type:
string[]
(optional, default: Do not filter on this field)
Comment property.
Specify an array of string values to match this event if the actual value of Comment is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
details?
Type:
Details
(optional, default: Do not filter on this field)
Details property.
Specify an array of string values to match this event if the actual value of Details is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
scope?
Type:
Scope
(optional, default: Do not filter on this field)
Scope property.
Specify an array of string values to match this event if the actual value of Scope is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
type?
Type:
string[]
(optional, default: Do not filter on this field)
Type property.
Specify an array of string values to match this event if the actual value of Type 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