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

io.burkard.cdk.services.apprunner.cfnService.ImageRepositoryProperty.scala Maven / Gradle / Ivy

package io.burkard.cdk.services.apprunner.cfnService

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

  def apply(
    imageIdentifier: String,
    imageRepositoryType: String,
    imageConfiguration: Option[software.amazon.awscdk.services.apprunner.CfnService.ImageConfigurationProperty] = None
  ): software.amazon.awscdk.services.apprunner.CfnService.ImageRepositoryProperty =
    (new software.amazon.awscdk.services.apprunner.CfnService.ImageRepositoryProperty.Builder)
      .imageIdentifier(imageIdentifier)
      .imageRepositoryType(imageRepositoryType)
      .imageConfiguration(imageConfiguration.orNull)
      .build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy