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

io.burkard.cdk.services.applicationinsights.cfnApplication.ComponentMonitoringSettingProperty.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.applicationinsights.cfnApplication

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

  def apply(
    tier: String,
    componentConfigurationMode: String,
    defaultOverwriteComponentConfiguration: Option[software.amazon.awscdk.services.applicationinsights.CfnApplication.ComponentConfigurationProperty] = None,
    componentArn: Option[String] = None,
    componentName: Option[String] = None,
    customComponentConfiguration: Option[software.amazon.awscdk.services.applicationinsights.CfnApplication.ComponentConfigurationProperty] = None
  ): software.amazon.awscdk.services.applicationinsights.CfnApplication.ComponentMonitoringSettingProperty =
    (new software.amazon.awscdk.services.applicationinsights.CfnApplication.ComponentMonitoringSettingProperty.Builder)
      .tier(tier)
      .componentConfigurationMode(componentConfigurationMode)
      .defaultOverwriteComponentConfiguration(defaultOverwriteComponentConfiguration.orNull)
      .componentArn(componentArn.orNull)
      .componentName(componentName.orNull)
      .customComponentConfiguration(customComponentConfiguration.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy