Interface CfnPlan.LambdaEventSourceMappingConfigurationProperty

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

@Stability(Stable) public static interface CfnPlan.LambdaEventSourceMappingConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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.arcregionswitch.*;
 LambdaEventSourceMappingConfigurationProperty lambdaEventSourceMappingConfigurationProperty = LambdaEventSourceMappingConfigurationProperty.builder()
         .action("action")
         .regionEventSourceMappings(Map.of(
                 "regionEventSourceMappingsKey", EventSourceMappingProperty.builder()
                         .arn("arn")
                         // the properties below are optional
                         .crossAccountRole("crossAccountRole")
                         .externalId("externalId")
                         .build()))
         // the properties below are optional
         .timeoutMinutes(123)
         .ungraceful(LambdaEventSourceMappingUngracefulProperty.builder()
                 .behavior("behavior")
                 .build())
         .build();
 

See Also: