Interface CfnPlan.CustomActionLambdaConfigurationProperty

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

@Stability(Stable) public static interface CfnPlan.CustomActionLambdaConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration for AWS Lambda functions that perform custom actions during a Region switch.

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.*;
 CustomActionLambdaConfigurationProperty customActionLambdaConfigurationProperty = CustomActionLambdaConfigurationProperty.builder()
         .lambdas(List.of(LambdasProperty.builder()
                 .arn("arn")
                 .crossAccountRole("crossAccountRole")
                 .externalId("externalId")
                 .build()))
         .regionToRun("regionToRun")
         .retryIntervalMinutes(123)
         // the properties below are optional
         .timeoutMinutes(123)
         .ungraceful(LambdaUngracefulProperty.builder()
                 .behavior("behavior")
                 .build())
         .build();
 

See Also: