Show / Hide Table of Contents

Class LambdaScheduleEvent

This class represents the event sent by the Schedule source on a λ# module function. It is similar to the event sent by CloudWatch Events Rule with the addition of the Name property.

Inheritance
System.Object
LambdaScheduleEvent
Namespace: LambdaSharp.Schedule
Assembly: LambdaSharp.Schedule.dll
Syntax
public class LambdaScheduleEvent

Properties

Id

A unique value is generated for every event. This can be helpful in tracing events as they move through rules to targets, and are processed.

Declaration
public string Id { get; set; }
Property Value
Type Description
System.String

Unique event identifier

Name

The name corresponds to the optional name defined in the Schedule source using the Name attribute.

Declaration
public string Name { get; set; }
Property Value
Type Description
System.String

Event name

Time

The event timestamp, which can be specified by the service originating the event. If the event spans a time interval, the service might choose to report the start time, so this value can be noticeably before the time the event is actually received.

Declaration
public DateTime Time { get; set; }
Property Value
Type Description
System.DateTime

Event timestamp

In This Article
Back to top Generated by DocFX