Interface EventBridgePutEventsEntry

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
EventBridgePutEventsEntry.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:48.088Z") @Stability(Stable) public interface EventBridgePutEventsEntry extends software.amazon.jsii.JsiiSerializable
An entry to be sent to EventBridge.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.events.*;
 import software.amazon.awscdk.services.stepfunctions.*;
 import software.amazon.awscdk.services.stepfunctions.tasks.*;
 EventBus eventBus;
 TaskInput taskInput;
 EventBridgePutEventsEntry eventBridgePutEventsEntry = EventBridgePutEventsEntry.builder()
         .detail(taskInput)
         .detailType("detailType")
         .source("source")
         // the properties below are optional
         .eventBus(eventBus)
         .build();
 

See Also: