From d77fabbb0ff32a8755ed19485ba31409c8ca7985 Mon Sep 17 00:00:00 2001 From: June Blender Date: Tue, 17 Jan 2023 18:24:37 +0000 Subject: [PATCH] Fix number-of-bytes error --- awscli/examples/kms/generate-data-key.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/awscli/examples/kms/generate-data-key.rst b/awscli/examples/kms/generate-data-key.rst index aaa5e68bbdea..6196df1c7e46 100644 --- a/awscli/examples/kms/generate-data-key.rst +++ b/awscli/examples/kms/generate-data-key.rst @@ -1,6 +1,6 @@ **Example 1: To generate a 256-bit symmetric data key** -The following ``generate-data-key`` example requests a 256-bit symmetric data key for use outside of AWS. The command returns a plaintext data key for immediate use and deletion, and a copy of that data key encrypted under the specified KMS key. You can safely store the encrypted data key with the encrypted data. +The following ``generate-data-key`` example requests a 256-bit symmetric data key for use outside of AWS. The command returns a plaintext data key for immediate use and deletion, and a copy of that data key encrypted under the specified KMS key. You can safely store the encrypted data key with the encrypted data. To request a 256-bit data key, use the ``key-spec`` parameter with a value of ``AES_256``. To request a 128-bit data key, use the ``key-spec`` parameter with a value of ``AES_128``. For all other data key lengths, use the ``number-of-bytes`` parameter. @@ -24,9 +24,9 @@ For more information, see `Data keys