Interface CfnPlan.ExecutionApprovalConfigurationProperty

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

@Stability(Stable) public static interface CfnPlan.ExecutionApprovalConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration for approval steps in a Region switch plan execution.

Approval steps require manual intervention before the execution can proceed.

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.*;
 ExecutionApprovalConfigurationProperty executionApprovalConfigurationProperty = ExecutionApprovalConfigurationProperty.builder()
         .approvalRole("approvalRole")
         // the properties below are optional
         .timeoutMinutes(123)
         .build();
 

See Also: