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

io.burkard.cdk.services.codebuild.ProjectNotificationEvents.scala Maven / Gradle / Ivy

There is a newer version: 0.5.0
Show newest version
package io.burkard.cdk.services.codebuild

sealed abstract class ProjectNotificationEvents(val underlying: software.amazon.awscdk.services.codebuild.ProjectNotificationEvents)
  extends Product
    with Serializable

object ProjectNotificationEvents {
  implicit def toAws(value: ProjectNotificationEvents): software.amazon.awscdk.services.codebuild.ProjectNotificationEvents =
    Option(value).map(_.underlying).orNull

  case object BuildFailed
    extends ProjectNotificationEvents(software.amazon.awscdk.services.codebuild.ProjectNotificationEvents.BUILD_FAILED)

  case object BuildInProgress
    extends ProjectNotificationEvents(software.amazon.awscdk.services.codebuild.ProjectNotificationEvents.BUILD_IN_PROGRESS)

  case object BuildPhaseFailed
    extends ProjectNotificationEvents(software.amazon.awscdk.services.codebuild.ProjectNotificationEvents.BUILD_PHASE_FAILED)

  case object BuildPhaseSucceeded
    extends ProjectNotificationEvents(software.amazon.awscdk.services.codebuild.ProjectNotificationEvents.BUILD_PHASE_SUCCEEDED)

  case object BuildStopped
    extends ProjectNotificationEvents(software.amazon.awscdk.services.codebuild.ProjectNotificationEvents.BUILD_STOPPED)

  case object BuildSucceeded
    extends ProjectNotificationEvents(software.amazon.awscdk.services.codebuild.ProjectNotificationEvents.BUILD_SUCCEEDED)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy