Show / Hide Table of Contents

Class EventAction

The EventAction class describes a LambdaSharp App EventBus event.

Inheritance
System.Object
AAction
EventAction
Inherited Members
AAction.Action
AAction.RequestId
AAction.AcknowledgeOk()
AAction.AcknowledgeError(String)
Namespace: LambdaSharp.App.EventBus.Actions
Assembly: LambdaSharp.App.dll
Syntax
public sealed class EventAction : AAction

Constructors

EventAction()

Create new instance of EventAction.

Declaration
public EventAction()

Properties

Event

The Event property holds the JSON serialization of the CloudWatch event data structure.

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

Rules

The Rules property holds the names of all matching subscription rules.

Declaration
public List<string> Rules { get; set; }
Property Value
Type Description
System.Collections.Generic.List<System.String>

Source

The Source property holds the name of the event source.

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

Type

The Type property holds the name of the event type.

Declaration
public string Type { get; set; }
Property Value
Type Description
System.String
In This Article
Back to top Generated by DocFX