class DatasetEvents
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Events.DatasetEvents |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotanalytics/events#DatasetEvents |
Java | software.amazon.awscdk.mixins.preview.services.iotanalytics.events.DatasetEvents |
Python | aws_cdk.mixins_preview.aws_iotanalytics.events.DatasetEvents |
TypeScript | @aws-cdk/mixins-preview ยป aws_iotanalytics ยป events ยป DatasetEvents |
EventBridge event patterns for Dataset.
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';
import { aws_iotanalytics as interfaces_iotanalytics } from 'aws-cdk-lib/interfaces';
declare const datasetRef: interfaces_iotanalytics.IDatasetRef;
const datasetEvents = iotanalytics_events.DatasetEvents.fromDataset(datasetRef);
Methods
| Name | Description |
|---|---|
| io | EventBridge event pattern for Dataset IoT Analytics DataSet Lifecycle Notification. |
| static from | Create DatasetEvents from a Dataset reference. |
ioTAnalyticsDataSetLifeCycleNotificationPattern(options?)
public ioTAnalyticsDataSetLifeCycleNotificationPattern(options?: IoTAnalyticsDataSetLifeCycleNotificationProps): EventPattern
Parameters
Returns
EventBridge event pattern for Dataset IoT Analytics DataSet Lifecycle Notification.
static fromDataset(datasetRef)
public static fromDataset(datasetRef: IDatasetRef): DatasetEvents
Parameters
- datasetRef
IDatasetRef
Returns
Create DatasetEvents from a Dataset reference.

.NET
Go
Java
Python
TypeScript