io.burkard.cdk.services.config.cfnRemediationConfiguration.SsmControlsProperty.scala Maven / Gradle / Ivy
The newest version!
package io.burkard.cdk.services.config.cfnRemediationConfiguration
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object SsmControlsProperty {
def apply(
concurrentExecutionRatePercentage: Option[Number] = None,
errorPercentage: Option[Number] = None
): software.amazon.awscdk.services.config.CfnRemediationConfiguration.SsmControlsProperty =
(new software.amazon.awscdk.services.config.CfnRemediationConfiguration.SsmControlsProperty.Builder)
.concurrentExecutionRatePercentage(concurrentExecutionRatePercentage.orNull)
.errorPercentage(errorPercentage.orNull)
.build()
}