All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy