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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPlan.LambdaEventSourceMappingConfigurationPropertystatic final classAn implementation forCfnPlan.LambdaEventSourceMappingConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Returns union: eitherIResolvableor Mapinvalid input: '<'String, eitherIResolvableorCfnPlan.EventSourceMappingProperty>default NumberDefault: - 60default ObjectReturns union: eitherIResolvableorCfnPlan.LambdaEventSourceMappingUngracefulPropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAction
- See Also:
-
getRegionEventSourceMappings
Returns union: eitherIResolvableor Mapinvalid input: '<'String, eitherIResolvableorCfnPlan.EventSourceMappingProperty>- See Also:
-
getTimeoutMinutes
Default: - 60- See Also:
-
getUngraceful
Returns union: eitherIResolvableorCfnPlan.LambdaEventSourceMappingUngracefulProperty- See Also:
-
builder
-