Enum BucketEncryption

java.lang.Object
java.lang.Enum<BucketEncryption>
software.amazon.awscdk.services.s3.BucketEncryption
All Implemented Interfaces:
Serializable, Comparable<BucketEncryption>, java.lang.constant.Constable

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:37.497Z") @Stability(Stable) public enum BucketEncryption extends Enum<BucketEncryption>
What kind of server-side encryption to apply to this bucket.

Example:

 Bucket bucket = Bucket.Builder.create(this, "MyEncryptedBucket")
         .encryption(BucketEncryption.KMS)
         .build();
 // you can access the encryption key:
 assert(bucket.getEncryptionKey() instanceof Key);
 
  • Enum Constant Details

    • UNENCRYPTED

      @Stability(Stable) public static final BucketEncryption UNENCRYPTED
      Objects in the bucket are not encrypted.
    • KMS_MANAGED

      @Stability(Stable) public static final BucketEncryption KMS_MANAGED
      Server-side KMS encryption with a master key managed by KMS.
    • S3_MANAGED

      @Stability(Stable) public static final BucketEncryption S3_MANAGED
      Server-side encryption with a master key managed by S3.
    • KMS

      @Stability(Stable) public static final BucketEncryption KMS
      Server-side encryption with a KMS key managed by the user.

      If encryptionKey is specified, this key will be used, otherwise, one will be defined.

  • Method Details

    • values

      public static BucketEncryption[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static BucketEncryption valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null