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

io.burkard.cdk.services.ecr.CfnPullThroughCacheRule.scala Maven / Gradle / Ivy

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

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

  def apply(
    internalResourceId: String,
    ecrRepositoryPrefix: Option[String] = None,
    upstreamRegistryUrl: Option[String] = None
  )(implicit stackCtx: software.amazon.awscdk.Stack): software.amazon.awscdk.services.ecr.CfnPullThroughCacheRule =
    software.amazon.awscdk.services.ecr.CfnPullThroughCacheRule.Builder
      .create(stackCtx, internalResourceId)
      .ecrRepositoryPrefix(ecrRepositoryPrefix.orNull)
      .upstreamRegistryUrl(upstreamRegistryUrl.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy