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

io.burkard.cdk.services.codedeploy.cfnDeploymentGroup.RevisionLocationProperty.scala Maven / Gradle / Ivy

package io.burkard.cdk.services.codedeploy.cfnDeploymentGroup

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

  def apply(
    s3Location: Option[software.amazon.awscdk.services.codedeploy.CfnDeploymentGroup.S3LocationProperty] = None,
    gitHubLocation: Option[software.amazon.awscdk.services.codedeploy.CfnDeploymentGroup.GitHubLocationProperty] = None,
    revisionType: Option[String] = None
  ): software.amazon.awscdk.services.codedeploy.CfnDeploymentGroup.RevisionLocationProperty =
    (new software.amazon.awscdk.services.codedeploy.CfnDeploymentGroup.RevisionLocationProperty.Builder)
      .s3Location(s3Location.orNull)
      .gitHubLocation(gitHubLocation.orNull)
      .revisionType(revisionType.orNull)
      .build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy