interface DataSetUpdateDelayedProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataExchange.Events.DataSetUpdateDelayed.DataSetUpdateDelayedProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdataexchange/events#DataSetUpdateDelayed_DataSetUpdateDelayedProps |
Java | software.amazon.awscdk.mixins.preview.services.dataexchange.events.DataSetUpdateDelayed.DataSetUpdateDelayedProps |
Python | aws_cdk.mixins_preview.aws_dataexchange.events.DataSetUpdateDelayed.DataSetUpdateDelayedProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_dataexchange ยป events ยป DataSetUpdateDelayed ยป DataSetUpdateDelayedProps |
Props type for aws.dataexchange@DataSetUpdateDelayed 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 dataSetUpdateDelayedProps: dataexchange_events.DataSetUpdateDelayed.DataSetUpdateDelayedProps = {
dataSet: {
assetType: ['assetType'],
id: ['id'],
name: ['name'],
},
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
notification: {
comment: ['comment'],
scope: {
lakeFormationTagPolicies: [{
database: ['database'],
table: ['table'],
}],
redshiftDataShares: [{
arn: ['arn'],
database: ['database'],
function: ['function'],
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