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

io.burkard.cdk.services.resourcegroups.cfnGroup.ResourceQueryProperty.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.resourcegroups.cfnGroup

@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object ResourceQueryProperty {

  def apply(
    `type`: Option[String] = None,
    query: Option[software.amazon.awscdk.services.resourcegroups.CfnGroup.QueryProperty] = None
  ): software.amazon.awscdk.services.resourcegroups.CfnGroup.ResourceQueryProperty =
    (new software.amazon.awscdk.services.resourcegroups.CfnGroup.ResourceQueryProperty.Builder)
      .`type`(`type`.orNull)
      .query(query.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy