Interface CfnComponentVersion.LambdaEventSourceProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnComponentVersion.LambdaEventSourceProperty.Jsii$Proxy
Enclosing class:
CfnComponentVersion

@Stability(Stable) public static interface CfnComponentVersion.LambdaEventSourceProperty extends software.amazon.jsii.JsiiSerializable
Contains information about an event source for an AWS Lambda function.

The event source defines the topics on which this Lambda function subscribes to receive messages that run the function.

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.greengrassv2.*;
 LambdaEventSourceProperty lambdaEventSourceProperty = LambdaEventSourceProperty.builder()
         .topic("topic")
         .type("type")
         .build();