Repository Encryption Configuration
data class RepositoryEncryptionConfiguration(val encryptionType: RepositoryEncryptionType, val kmsKey: String? = null)
The encryption configuration for the repository. This determines how the contents of your repository are encrypted at rest. By default, when no encryption configuration is set or the AES256 encryption type is used, Amazon ECR uses server-side encryption with Amazon S3-managed encryption keys which encrypts your data at rest using an AES-256 encryption algorithm. This does not require any action on your part. For more information, see https://docs.aws.amazon.com/AmazonECR/latest/userguide/encryption-at-rest.html
Constructors
Link copied to clipboard
fun RepositoryEncryptionConfiguration(encryptionType: RepositoryEncryptionType, kmsKey: String? = null)