interface SchemaChange
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataExchange.Events.SchemaChangePlannedForDataSet.SchemaChange |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdataexchange/events#SchemaChangePlannedForDataSet_SchemaChange |
Java | software.amazon.awscdk.mixins.preview.services.dataexchange.events.SchemaChangePlannedForDataSet.SchemaChange |
Python | aws_cdk.mixins_preview.aws_dataexchange.events.SchemaChangePlannedForDataSet.SchemaChange |
TypeScript | @aws-cdk/mixins-preview ยป aws_dataexchange ยป events ยป SchemaChangePlannedForDataSet ยป SchemaChange |
Type definition for SchemaChange.
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 schemaChange: dataexchange_events.SchemaChangePlannedForDataSet.SchemaChange = {
changes: [{
description: ['description'],
name: ['name'],
type: ['type'],
}],
schemaChangeAt: ['schemaChangeAt'],
};
Properties
| Name | Type | Description |
|---|---|---|
| changes? | Schema[] | Changes property. |
| schema | string[] | SchemaChangeAt property. |
changes?
Type:
Schema[]
(optional, default: Do not filter on this field)
Changes property.
Specify an array of string values to match this event if the actual value of Changes is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
schemaChangeAt?
Type:
string[]
(optional, default: Do not filter on this field)
SchemaChangeAt property.
Specify an array of string values to match this event if the actual value of SchemaChangeAt 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