Using Console
Using CLI
aws kms list-keys
to list all the AWS KMS CMKs in your account.aws kms schedule-key-deletion
to schedule the deletion of any unwanted AWS KMS CMKs. The command requires the ARN of the AWS KMS CMK to be deleted and the number of days until the key is permanently deleted. For example, the command to schedule the deletion of an AWS KMS CMK with the ARN arn:aws:kms:us-east-1:123456789012:key/1234abcd-12ab-34cd-56ef-1234567890ab
in 30 days would be:Using Python