interface SchemaChangePlannedForDataSetProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataExchange.Events.SchemaChangePlannedForDataSet.SchemaChangePlannedForDataSetProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdataexchange/events#SchemaChangePlannedForDataSet_SchemaChangePlannedForDataSetProps |
Java | software.amazon.awscdk.mixins.preview.services.dataexchange.events.SchemaChangePlannedForDataSet.SchemaChangePlannedForDataSetProps |
Python | aws_cdk.mixins_preview.aws_dataexchange.events.SchemaChangePlannedForDataSet.SchemaChangePlannedForDataSetProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_dataexchange ยป events ยป SchemaChangePlannedForDataSet ยป SchemaChangePlannedForDataSetProps |
Props type for aws.dataexchange@SchemaChangePlannedForDataSet event.
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 schemaChangePlannedForDataSetProps: dataexchange_events.SchemaChangePlannedForDataSet.SchemaChangePlannedForDataSetProps = {
dataSet: {
assetType: ['assetType'],
id: ['id'],
name: ['name'],
},
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
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'],
},
product: {
id: ['id'],
name: ['name'],
providerContact: ['providerContact'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| data | Data | DataSet property. |
| event | AWSEvent | EventBridge event metadata. |
| notification? | Notification | Notification property. |
| product? | Product | Product property. |
dataSet?
Type:
Data
(optional, default: Do not filter on this field)
DataSet property.
Specify an array of string values to match this event if the actual value of DataSet 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.
notification?
Type:
Notification
(optional, default: Do not filter on this field)
Notification property.
Specify an array of string values to match this event if the actual value of Notification is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
product?
Type:
Product
(optional, default: Do not filter on this field)
Product property.
Specify an array of string values to match this event if the actual value of Product 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