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

io.burkard.cdk.services.config.CfnConfigurationAggregatorProps.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.config

import scala.collection.JavaConverters._

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

  def apply(
    tags: Option[List[_ <: software.amazon.awscdk.CfnTag]] = None,
    accountAggregationSources: Option[List[_]] = None,
    configurationAggregatorName: Option[String] = None,
    organizationAggregationSource: Option[software.amazon.awscdk.services.config.CfnConfigurationAggregator.OrganizationAggregationSourceProperty] = None
  ): software.amazon.awscdk.services.config.CfnConfigurationAggregatorProps =
    (new software.amazon.awscdk.services.config.CfnConfigurationAggregatorProps.Builder)
      .tags(tags.map(_.asJava).orNull)
      .accountAggregationSources(accountAggregationSources.map(_.asJava).orNull)
      .configurationAggregatorName(configurationAggregatorName.orNull)
      .organizationAggregationSource(organizationAggregationSource.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy