Enum BucketEncryption
- All Implemented Interfaces:
Serializable
,Comparable<BucketEncryption>
,java.lang.constant.Constable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:16.216Z")
@Stability(Stable)
public enum BucketEncryption
extends Enum<BucketEncryption>
What kind of server-side encryption to apply to this bucket.
Example:
import software.amazon.awscdk.services.s3.BucketEncryption; App app = App.Builder.create() .defaultStackSynthesizer(AppStagingSynthesizer.defaultResources(DefaultResourcesOptions.builder() .appId("my-app-id") .stagingBucketEncryption(BucketEncryption.S3_MANAGED) .fileAssetPublishingRole(BootstrapRole.fromRoleArn("arn:aws:iam::123456789012:role/S3Access")) .imageAssetPublishingRole(BootstrapRole.fromRoleArn("arn:aws:iam::123456789012:role/ECRAccess")) .build())) .build();
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionDouble server-side encryption with a KMS key managed by the user.Double server-side KMS encryption with a master key managed by KMS.Server-side encryption with a KMS key managed by the user.Server-side KMS encryption with a master key managed by KMS.Server-side encryption with a master key managed by S3.Deprecated.S3 applies server-side encryption with SSE-S3 for every bucket that default encryption is not configured. -
Method Summary
Modifier and TypeMethodDescriptionstatic BucketEncryption
Returns the enum constant of this type with the specified name.static BucketEncryption[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
UNENCRYPTED
Deprecated.S3 applies server-side encryption with SSE-S3 for every bucket that default encryption is not configured.(deprecated) Previous option.Buckets can not be unencrypted now.
- See Also:
-
KMS_MANAGED
Server-side KMS encryption with a master key managed by KMS. -
S3_MANAGED
Server-side encryption with a master key managed by S3. -
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. -
DSSE_MANAGED
Double server-side KMS encryption with a master key managed by KMS. -
DSSE
Double 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
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
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 nameNullPointerException
- if the argument is null
-