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

io.burkard.cdk.services.codedeploy.LambdaDeploymentGroupAttributes.scala Maven / Gradle / Ivy

package io.burkard.cdk.services.codedeploy

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

  def apply(
    application: software.amazon.awscdk.services.codedeploy.ILambdaApplication,
    deploymentGroupName: String,
    deploymentConfig: Option[software.amazon.awscdk.services.codedeploy.ILambdaDeploymentConfig] = None
  ): software.amazon.awscdk.services.codedeploy.LambdaDeploymentGroupAttributes =
    (new software.amazon.awscdk.services.codedeploy.LambdaDeploymentGroupAttributes.Builder)
      .application(application)
      .deploymentGroupName(deploymentGroupName)
      .deploymentConfig(deploymentConfig.orNull)
      .build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy