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

software.amazon.awssdk.services.s3.model.ServerSideEncryptionByDefault Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon S3 module holds the client classes that are used for communicating with Amazon Simple Storage Service

There is a newer version: 2.28.3
Show newest version
/*
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */

package software.amazon.awssdk.services.s3.model;

import java.io.Serializable;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.function.BiConsumer;
import java.util.function.Function;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.core.SdkField;
import software.amazon.awssdk.core.SdkPojo;
import software.amazon.awssdk.core.protocol.MarshallLocation;
import software.amazon.awssdk.core.protocol.MarshallingType;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.core.traits.RequiredTrait;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;

/**
 * 

* Describes the default server-side encryption to apply to new objects in the bucket. If a PUT Object request doesn't * specify any server-side encryption, this default encryption will be applied. If you don't specify a customer managed * key at configuration, Amazon S3 automatically creates an Amazon Web Services KMS key in your Amazon Web Services * account the first time that you add an object encrypted with SSE-KMS to a bucket. By default, Amazon S3 uses this KMS * key for SSE-KMS. For more information, see PUT Bucket encryption in the * Amazon S3 API Reference. *

* *

* If you're specifying a customer managed KMS key, we recommend using a fully qualified KMS key ARN. If you use a KMS * key alias instead, then KMS resolves the key within the requester’s account. This behavior can result in data that's * encrypted with a KMS key that belongs to the requester, and not the bucket owner. *

*
*/ @Generated("software.amazon.awssdk:codegen") public final class ServerSideEncryptionByDefault implements SdkPojo, Serializable, ToCopyableBuilder { private static final SdkField SSE_ALGORITHM_FIELD = SdkField . builder(MarshallingType.STRING) .memberName("SSEAlgorithm") .getter(getter(ServerSideEncryptionByDefault::sseAlgorithmAsString)) .setter(setter(Builder::sseAlgorithm)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("SSEAlgorithm") .unmarshallLocationName("SSEAlgorithm").build(), RequiredTrait.create()).build(); private static final SdkField KMS_MASTER_KEY_ID_FIELD = SdkField . builder(MarshallingType.STRING) .memberName("KMSMasterKeyID") .getter(getter(ServerSideEncryptionByDefault::kmsMasterKeyID)) .setter(setter(Builder::kmsMasterKeyID)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("KMSMasterKeyID") .unmarshallLocationName("KMSMasterKeyID").build()).build(); private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(SSE_ALGORITHM_FIELD, KMS_MASTER_KEY_ID_FIELD)); private static final long serialVersionUID = 1L; private final String sseAlgorithm; private final String kmsMasterKeyID; private ServerSideEncryptionByDefault(BuilderImpl builder) { this.sseAlgorithm = builder.sseAlgorithm; this.kmsMasterKeyID = builder.kmsMasterKeyID; } /** *

* Server-side encryption algorithm to use for the default encryption. *

*

* If the service returns an enum value that is not available in the current SDK version, {@link #sseAlgorithm} will * return {@link ServerSideEncryption#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available * from {@link #sseAlgorithmAsString}. *

* * @return Server-side encryption algorithm to use for the default encryption. * @see ServerSideEncryption */ public final ServerSideEncryption sseAlgorithm() { return ServerSideEncryption.fromValue(sseAlgorithm); } /** *

* Server-side encryption algorithm to use for the default encryption. *

*

* If the service returns an enum value that is not available in the current SDK version, {@link #sseAlgorithm} will * return {@link ServerSideEncryption#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available * from {@link #sseAlgorithmAsString}. *

* * @return Server-side encryption algorithm to use for the default encryption. * @see ServerSideEncryption */ public final String sseAlgorithmAsString() { return sseAlgorithm; } /** *

* Amazon Web Services Key Management Service (KMS) customer Amazon Web Services KMS key ID to use for the default * encryption. This parameter is allowed if and only if SSEAlgorithm is set to aws:kms or * aws:kms:dsse. *

*

* You can specify the key ID, key alias, or the Amazon Resource Name (ARN) of the KMS key. *

*
    *
  • *

    * Key ID: 1234abcd-12ab-34cd-56ef-1234567890ab *

    *
  • *
  • *

    * Key ARN: arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab *

    *
  • *
  • *

    * Key Alias: alias/alias-name *

    *
  • *
*

* If you use a key ID, you can run into a LogDestination undeliverable error when creating a VPC flow log. *

*

* If you are using encryption with cross-account or Amazon Web Services service operations you must use a fully * qualified KMS key ARN. For more information, see Using encryption for cross-account operations. *

* *

* Amazon S3 only supports symmetric encryption KMS keys. For more information, see Asymmetric keys in Amazon * Web Services KMS in the Amazon Web Services Key Management Service Developer Guide. *

*
* * @return Amazon Web Services Key Management Service (KMS) customer Amazon Web Services KMS key ID to use for the * default encryption. This parameter is allowed if and only if SSEAlgorithm is set to * aws:kms or aws:kms:dsse.

*

* You can specify the key ID, key alias, or the Amazon Resource Name (ARN) of the KMS key. *

*
    *
  • *

    * Key ID: 1234abcd-12ab-34cd-56ef-1234567890ab *

    *
  • *
  • *

    * Key ARN: arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab *

    *
  • *
  • *

    * Key Alias: alias/alias-name *

    *
  • *
*

* If you use a key ID, you can run into a LogDestination undeliverable error when creating a VPC flow log. *

*

* If you are using encryption with cross-account or Amazon Web Services service operations you must use a * fully qualified KMS key ARN. For more information, see Using encryption for cross-account operations. *

* *

* Amazon S3 only supports symmetric encryption KMS keys. For more information, see Asymmetric keys in * Amazon Web Services KMS in the Amazon Web Services Key Management Service Developer Guide. *

*/ public final String kmsMasterKeyID() { return kmsMasterKeyID; } @Override public Builder toBuilder() { return new BuilderImpl(this); } public static Builder builder() { return new BuilderImpl(); } public static Class serializableBuilderClass() { return BuilderImpl.class; } @Override public final int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + Objects.hashCode(sseAlgorithmAsString()); hashCode = 31 * hashCode + Objects.hashCode(kmsMasterKeyID()); return hashCode; } @Override public final boolean equals(Object obj) { return equalsBySdkFields(obj); } @Override public final boolean equalsBySdkFields(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (!(obj instanceof ServerSideEncryptionByDefault)) { return false; } ServerSideEncryptionByDefault other = (ServerSideEncryptionByDefault) obj; return Objects.equals(sseAlgorithmAsString(), other.sseAlgorithmAsString()) && Objects.equals(kmsMasterKeyID(), other.kmsMasterKeyID()); } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. */ @Override public final String toString() { return ToString.builder("ServerSideEncryptionByDefault").add("SSEAlgorithm", sseAlgorithmAsString()) .add("KMSMasterKeyID", kmsMasterKeyID() == null ? null : "*** Sensitive Data Redacted ***").build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "SSEAlgorithm": return Optional.ofNullable(clazz.cast(sseAlgorithmAsString())); case "KMSMasterKeyID": return Optional.ofNullable(clazz.cast(kmsMasterKeyID())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((ServerSideEncryptionByDefault) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends SdkPojo, CopyableBuilder { /** *

* Server-side encryption algorithm to use for the default encryption. *

* * @param sseAlgorithm * Server-side encryption algorithm to use for the default encryption. * @see ServerSideEncryption * @return Returns a reference to this object so that method calls can be chained together. * @see ServerSideEncryption */ Builder sseAlgorithm(String sseAlgorithm); /** *

* Server-side encryption algorithm to use for the default encryption. *

* * @param sseAlgorithm * Server-side encryption algorithm to use for the default encryption. * @see ServerSideEncryption * @return Returns a reference to this object so that method calls can be chained together. * @see ServerSideEncryption */ Builder sseAlgorithm(ServerSideEncryption sseAlgorithm); /** *

* Amazon Web Services Key Management Service (KMS) customer Amazon Web Services KMS key ID to use for the * default encryption. This parameter is allowed if and only if SSEAlgorithm is set to * aws:kms or aws:kms:dsse. *

*

* You can specify the key ID, key alias, or the Amazon Resource Name (ARN) of the KMS key. *

*
    *
  • *

    * Key ID: 1234abcd-12ab-34cd-56ef-1234567890ab *

    *
  • *
  • *

    * Key ARN: arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab *

    *
  • *
  • *

    * Key Alias: alias/alias-name *

    *
  • *
*

* If you use a key ID, you can run into a LogDestination undeliverable error when creating a VPC flow log. *

*

* If you are using encryption with cross-account or Amazon Web Services service operations you must use a fully * qualified KMS key ARN. For more information, see Using encryption for cross-account operations. *

* *

* Amazon S3 only supports symmetric encryption KMS keys. For more information, see Asymmetric keys in * Amazon Web Services KMS in the Amazon Web Services Key Management Service Developer Guide. *

*
* * @param kmsMasterKeyID * Amazon Web Services Key Management Service (KMS) customer Amazon Web Services KMS key ID to use for * the default encryption. This parameter is allowed if and only if SSEAlgorithm is set to * aws:kms or aws:kms:dsse.

*

* You can specify the key ID, key alias, or the Amazon Resource Name (ARN) of the KMS key. *

*
    *
  • *

    * Key ID: 1234abcd-12ab-34cd-56ef-1234567890ab *

    *
  • *
  • *

    * Key ARN: arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab *

    *
  • *
  • *

    * Key Alias: alias/alias-name *

    *
  • *
*

* If you use a key ID, you can run into a LogDestination undeliverable error when creating a VPC flow * log. *

*

* If you are using encryption with cross-account or Amazon Web Services service operations you must use * a fully qualified KMS key ARN. For more information, see Using encryption for cross-account operations. *

* *

* Amazon S3 only supports symmetric encryption KMS keys. For more information, see Asymmetric keys * in Amazon Web Services KMS in the Amazon Web Services Key Management Service Developer * Guide. *

* @return Returns a reference to this object so that method calls can be chained together. */ Builder kmsMasterKeyID(String kmsMasterKeyID); } static final class BuilderImpl implements Builder { private String sseAlgorithm; private String kmsMasterKeyID; private BuilderImpl() { } private BuilderImpl(ServerSideEncryptionByDefault model) { sseAlgorithm(model.sseAlgorithm); kmsMasterKeyID(model.kmsMasterKeyID); } public final String getSseAlgorithm() { return sseAlgorithm; } public final void setSseAlgorithm(String sseAlgorithm) { this.sseAlgorithm = sseAlgorithm; } @Override public final Builder sseAlgorithm(String sseAlgorithm) { this.sseAlgorithm = sseAlgorithm; return this; } @Override public final Builder sseAlgorithm(ServerSideEncryption sseAlgorithm) { this.sseAlgorithm(sseAlgorithm == null ? null : sseAlgorithm.toString()); return this; } public final String getKmsMasterKeyID() { return kmsMasterKeyID; } public final void setKmsMasterKeyID(String kmsMasterKeyID) { this.kmsMasterKeyID = kmsMasterKeyID; } @Override public final Builder kmsMasterKeyID(String kmsMasterKeyID) { this.kmsMasterKeyID = kmsMasterKeyID; return this; } @Override public ServerSideEncryptionByDefault build() { return new ServerSideEncryptionByDefault(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy