AWSDynamoDBSSEDescription
Objective-C
@interface AWSDynamoDBSSEDescription
Swift
class AWSDynamoDBSSEDescription
The description of the server-side encryption status on the specified table.
-
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.
Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable inaccessibleEncryptionDateTime;
Swift
var inaccessibleEncryptionDateTime: Date? { get set }
-
The KMS key ARN used for the KMS encryption.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable KMSMasterKeyArn;
Swift
var kmsMasterKeyArn: String? { get set }
-
Server-side encryption type. The only supported value is:
KMS
- Server-side encryption that uses Key Management Service. The key is stored in your account and is managed by KMS (KMS charges apply).
Declaration
Objective-C
@property (nonatomic) AWSDynamoDBSSEType SSEType;
Swift
var sseType: AWSDynamoDBSSEType { get set }
-
Represents the current state of server-side encryption. The only supported values are:
ENABLED
- Server-side encryption is enabled.UPDATING
- Server-side encryption is being updated.
Declaration
Objective-C
@property (nonatomic) AWSDynamoDBSSEStatus status;
Swift
var status: AWSDynamoDBSSEStatus { get set }