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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPlan.CustomActionLambdaConfigurationProperty
static final class
An implementation forCfnPlan.CustomActionLambdaConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLambdas
The AWS Lambda functions for the execution block.- See Also:
-
getRegionToRun
The AWS Region for the function to run in.- See Also:
-
getRetryIntervalMinutes
The retry interval specified.- See Also:
-
getTimeoutMinutes
The timeout value specified for the configuration.Default: - 60
- See Also:
-
getUngraceful
The settings for ungraceful execution.- See Also:
-
builder
-