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

io.burkard.cdk.services.config.cfnConfigRule.ScopeProperty.scala Maven / Gradle / Ivy

package io.burkard.cdk.services.config.cfnConfigRule

import scala.collection.JavaConverters._

@scala.annotation.nowarn("cat=deprecation")
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object ScopeProperty {

  def apply(
    complianceResourceId: Option[String] = None,
    complianceResourceTypes: Option[List[String]] = None,
    tagKey: Option[String] = None,
    tagValue: Option[String] = None
  ): software.amazon.awscdk.services.config.CfnConfigRule.ScopeProperty =
    (new software.amazon.awscdk.services.config.CfnConfigRule.ScopeProperty.Builder)
      .complianceResourceId(complianceResourceId.orNull)
      .complianceResourceTypes(complianceResourceTypes.map(_.asJava).orNull)
      .tagKey(tagKey.orNull)
      .tagValue(tagValue.orNull)
      .build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy