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

io.burkard.cdk.services.codeguruprofiler.ProfilingGroup.scala Maven / Gradle / Ivy

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

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

  def apply(
    internalResourceId: String,
    profilingGroupName: Option[String] = None,
    computePlatform: Option[software.amazon.awscdk.services.codeguruprofiler.ComputePlatform] = None
  )(implicit stackCtx: software.amazon.awscdk.Stack): software.amazon.awscdk.services.codeguruprofiler.ProfilingGroup =
    software.amazon.awscdk.services.codeguruprofiler.ProfilingGroup.Builder
      .create(stackCtx, internalResourceId)
      .profilingGroupName(profilingGroupName.orNull)
      .computePlatform(computePlatform.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy