createVolume

Creates an EBS volume that can be attached to an instance in the same Availability Zone.

You can create a new empty volume or restore a volume from an EBS snapshot. Any Amazon Web Services Marketplace product codes from the snapshot are propagated to the volume.

You can create encrypted volumes. Encrypted volumes must be attached to instances that support Amazon EBS encryption. Volumes that are created from encrypted snapshots are also automatically encrypted. For more information, see Amazon EBS encryption in the Amazon EBS User Guide.

You can tag your volumes during creation. For more information, see Tag your Amazon EC2 resources in the Amazon EC2 User Guide.

For more information, see Create an Amazon EBS volume in the Amazon EBS User Guide.

Samples

import aws.sdk.kotlin.services.ec2.model.VolumeType

fun main() { 
   //sampleStart 
   // This example creates a new Provisioned IOPS (SSD) volume with 1000 provisioned IOPS from a snapshot
// in the Availability Zone us east 1a
val resp = ec2Client.createVolume {
    availabilityZone = "us-east-1a"
    iops = 1000
    volumeType = VolumeType.fromValue("io1")
    snapshotId = "snap-066877671789bd71b"
} 
   //sampleEnd
}
import aws.sdk.kotlin.services.ec2.model.VolumeType

fun main() { 
   //sampleStart 
   // This example creates an 80 GiB General Purpose (SSD) volume in the Availability Zone us east 1a
val resp = ec2Client.createVolume {
    availabilityZone = "us-east-1a"
    size = 80
    volumeType = VolumeType.fromValue("gp2")
} 
   //sampleEnd
}