AWS ebs documentation change
Summary
Minor text corrections, restructured command-line examples, and removed redundant section headers. No substantive changes to security-related content.
Security assessment
Changes are primarily grammatical improvements and command syntax updates. No references to encryption, access controls, or security-related configurations were added or modified in these changes.
Diff
diff --git a/ebs/latest/userguide/ebs-creating-volume.md b/ebs/latest/userguide/ebs-creating-volume.md index 228115cde..500c2c653 100644 --- a//ebs/latest/userguide/ebs-creating-volume.md +++ b//ebs/latest/userguide/ebs-creating-volume.md @@ -13 +13 @@ You can either **create an empty volume** , or you can **create a volume from an -When you create a volume from a snapshot, the storage blocks from the snapshot must be downloaded from Amazon S3 and written to the volume before you can access them. This process is called volume initialization. During this time, the volume will experience increased I/O latency. Full volume performance is achieved only once all storage blocks have been downloaded and written to the volume. +When you create a volume from a snapshot, the storage blocks from the snapshot must be downloaded from Amazon S3 and written to the volume before you can access them. This process is called volume initialization. During this time, the volume will experience increased I/O latency. Full volume performance is achieved only after all storage blocks have been downloaded and written to the volume. @@ -34 +34 @@ Enabled | Yes, encrypted | Automatic encryption | You can specify the KMS key to - * Volumes can be attached to instances in the same Availability Zone only. + * Volumes must be attached to instances in the same Availability Zone. @@ -36 +36 @@ Enabled | Yes, encrypted | Automatic encryption | You can specify the KMS key to - * Volumes are ready for use only once they reach the `available` state. + * Volumes are ready for use only after they enter the `available` state. @@ -49,2 +48,0 @@ Enabled | Yes, encrypted | Automatic encryption | You can specify the KMS key to -Use one of the following methods to create a volume. - @@ -99 +97,6 @@ Console -Command line +AWS CLI + + +###### To create a volume + +Use the [create-volume](https://awscli.amazonaws.com/v2/documentation/api/latest/reference/ec2/create-volume.html) command. The following example creates an empty gp3 volume with a size of 100 GiB in the specified Availability Zone. @@ -102 +105,9 @@ Command line -###### To create a volume using the AWS CLI + aws ec2 create-volume \ + --volume-type gp3 \ + --size 100 \ + --availability-zone us-east-1a + +PowerShell + + +###### To create a volume @@ -104 +115 @@ Command line -Use the [create-volume](https://awscli.amazonaws.com/v2/documentation/api/latest/reference/ec2/create-volume.html) command. +Use the [New-EC2Volume](https://docs.aws.amazon.com/powershell/latest/reference/items/New-EC2Volume.html) cmdlet. The following example creates an empty gp3 volume with a size of 100 GiB in the specified Availability Zone. @@ -106 +116,0 @@ Use the [create-volume](https://awscli.amazonaws.com/v2/documentation/api/latest -###### To create a volume using the Tools for Windows PowerShell @@ -108 +118,4 @@ Use the [create-volume](https://awscli.amazonaws.com/v2/documentation/api/latest -Use the [New-EC2Volume](https://docs.aws.amazon.com/powershell/latest/reference/items/New-EC2Volume.html) command. + New-EC2Volume ` + -VolumeType gp3 ` + -Size 100 ` + -AvailabilityZone us-east-1a