interface ExecutionControlsProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Config.CfnRemediationConfiguration.ExecutionControlsProperty | 
|  Java | software.amazon.awscdk.services.config.CfnRemediationConfiguration.ExecutionControlsProperty | 
|  Python | aws_cdk.aws_config.CfnRemediationConfiguration.ExecutionControlsProperty | 
|  TypeScript | @aws-cdk/aws-config»CfnRemediationConfiguration»ExecutionControlsProperty | 
An ExecutionControls object.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as config from '@aws-cdk/aws-config';
const executionControlsProperty: config.CfnRemediationConfiguration.ExecutionControlsProperty = {
  ssmControls: {
    concurrentExecutionRatePercentage: 123,
    errorPercentage: 123,
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| ssm | IResolvable | Ssm | A SsmControls object. | 
ssmControls?
Type:
IResolvable | Ssm
(optional)
A SsmControls object.
