interface DeprecationPlannedForDataSetProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataExchange.Events.DeprecationPlannedForDataSet.DeprecationPlannedForDataSetProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdataexchange/events#DeprecationPlannedForDataSet_DeprecationPlannedForDataSetProps |
Java | software.amazon.awscdk.mixins.preview.services.dataexchange.events.DeprecationPlannedForDataSet.DeprecationPlannedForDataSetProps |
Python | aws_cdk.mixins_preview.aws_dataexchange.events.DeprecationPlannedForDataSet.DeprecationPlannedForDataSetProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_dataexchange ยป events ยป DeprecationPlannedForDataSet ยป DeprecationPlannedForDataSetProps |
Props type for aws.dataexchange@DeprecationPlannedForDataSet 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 deprecationPlannedForDataSetProps: dataexchange_events.DeprecationPlannedForDataSet.DeprecationPlannedForDataSetProps = {
dataSet: {
assetType: ['assetType'],
id: ['id'],
name: ['name'],
},
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
notification: {
comment: ['comment'],
details: {
deprecation: {
deprecationAt: ['deprecationAt'],
},
},
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