Interface CfnRemediationConfiguration.ExecutionControlsProperty

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

@Stability(Stable) public static interface CfnRemediationConfiguration.ExecutionControlsProperty extends software.amazon.jsii.JsiiSerializable
An ExecutionControls object.

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.config.*;
 ExecutionControlsProperty executionControlsProperty = ExecutionControlsProperty.builder()
         .ssmControls(SsmControlsProperty.builder()
                 .concurrentExecutionRatePercentage(123)
                 .errorPercentage(123)
                 .build())
         .build();