![JAR search and dependency download from the Maven repository](/logo.png)
io.burkard.cdk.services.ecr.cfnRepository.EncryptionConfigurationProperty.scala Maven / Gradle / Ivy
package io.burkard.cdk.services.ecr.cfnRepository
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object EncryptionConfigurationProperty {
def apply(
encryptionType: String,
kmsKey: Option[String] = None
): software.amazon.awscdk.services.ecr.CfnRepository.EncryptionConfigurationProperty =
(new software.amazon.awscdk.services.ecr.CfnRepository.EncryptionConfigurationProperty.Builder)
.encryptionType(encryptionType)
.kmsKey(kmsKey.orNull)
.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy