AWSKMSScheduleKeyDeletionResponse
Objective-C
@interface AWSKMSScheduleKeyDeletionResponse
Swift
class AWSKMSScheduleKeyDeletionResponse
-
The date and time after which KMS deletes the KMS key.
If the KMS key is a multi-Region primary key with replica keys, this field does not appear. The deletion date for the primary key isn’t known until its last replica key is deleted.
Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable deletionDate;
Swift
var deletionDate: Date? { get set }
-
The Amazon Resource Name (key ARN) of the KMS key whose deletion is scheduled.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable keyId;
Swift
var keyId: String? { get set }
-
The current status of the KMS key.
For more information about how key state affects the use of a KMS key, see Key states of KMS keys in the Key Management Service Developer Guide.
Declaration
Objective-C
@property (nonatomic) AWSKMSKeyState keyState;
Swift
var keyState: AWSKMSKeyState { get set }
-
The waiting period before the KMS key is deleted.
If the KMS key is a multi-Region primary key with replicas, the waiting period begins when the last of its replica keys is deleted. Otherwise, the waiting period begins immediately.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable pendingWindowInDays;
Swift
var pendingWindowInDays: NSNumber? { get set }