/* * Copyright 2018-2023 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 com.amazonaws.services.dynamodbv2.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *

* The description of the server-side encryption status on the specified table. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class SSEDescription implements Serializable, Cloneable, StructuredPojo { /** *

* Represents the current state of server-side encryption. The only supported values are: *

* */ private String status; /** *

* Server-side encryption type. The only supported value is: *

* */ private String sSEType; /** *

* The KMS key ARN used for the KMS encryption. *

*/ private String kMSMasterKeyArn; /** *

* Indicates the time, in UNIX epoch date format, when DynamoDB detected that the table's KMS key was inaccessible. * This attribute will automatically be cleared when DynamoDB detects that the table's KMS key is accessible again. * DynamoDB will initiate the table archival process when table's KMS key remains inaccessible for more than seven * days from this date. *

*/ private java.util.Date inaccessibleEncryptionDateTime; /** *

* Represents the current state of server-side encryption. The only supported values are: *

* * * @param status * Represents the current state of server-side encryption. The only supported values are:

*