interface IoTAnalyticsDataSetLifeCycleNotificationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Events.DatasetEvents.IoTAnalyticsDataSetLifeCycleNotification.IoTAnalyticsDataSetLifeCycleNotificationProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotanalytics/events#DatasetEvents_IoTAnalyticsDataSetLifeCycleNotification_IoTAnalyticsDataSetLifeCycleNotificationProps |
Java | software.amazon.awscdk.mixins.preview.services.iotanalytics.events.DatasetEvents.IoTAnalyticsDataSetLifeCycleNotification.IoTAnalyticsDataSetLifeCycleNotificationProps |
Python | aws_cdk.mixins_preview.aws_iotanalytics.events.DatasetEvents.IoTAnalyticsDataSetLifeCycleNotification.IoTAnalyticsDataSetLifeCycleNotificationProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_iotanalytics ยป events ยป DatasetEvents ยป IoTAnalyticsDataSetLifeCycleNotification ยป IoTAnalyticsDataSetLifeCycleNotificationProps |
Props type for Dataset aws.iotanalytics@IoTAnalyticsDataSetLifeCycleNotification event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as iotanalytics_events } from '@aws-cdk/mixins-preview/aws-iotanalytics';
const ioTAnalyticsDataSetLifeCycleNotificationProps: iotanalytics_events.DatasetEvents.IoTAnalyticsDataSetLifeCycleNotification.IoTAnalyticsDataSetLifeCycleNotificationProps = {
contentDeliveryRuleIndex: ['contentDeliveryRuleIndex'],
datasetName: ['datasetName'],
eventDetailVersion: ['eventDetailVersion'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
message: ['message'],
state: ['state'],
versionId: ['versionId'],
};
Properties
| Name | Type | Description |
|---|---|---|
| content | string[] | content-delivery-rule-index property. |
| dataset | string[] | dataset-name property. |
| event | string[] | event-detail-version property. |
| event | AWSEvent | EventBridge event metadata. |
| message? | string[] | message property. |
| state? | string[] | state property. |
| version | string[] | version-id property. |
contentDeliveryRuleIndex?
Type:
string[]
(optional, default: Do not filter on this field)
content-delivery-rule-index property.
Specify an array of string values to match this event if the actual value of content-delivery-rule-index is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
datasetName?
Type:
string[]
(optional, default: Filter with the Dataset reference)
dataset-name property.
Specify an array of string values to match this event if the actual value of dataset-name is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
eventDetailVersion?
Type:
string[]
(optional, default: Do not filter on this field)
event-detail-version property.
Specify an array of string values to match this event if the actual value of event-detail-version 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.
message?
Type:
string[]
(optional, default: Do not filter on this field)
message property.
Specify an array of string values to match this event if the actual value of message is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
state?
Type:
string[]
(optional, default: Do not filter on this field)
state property.
Specify an array of string values to match this event if the actual value of state is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
versionId?
Type:
string[]
(optional, default: Do not filter on this field)
version-id property.
Specify an array of string values to match this event if the actual value of version-id 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