AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Copies a point-in-time snapshot of an EBS volume and stores it in Amazon S3. You can copy a snapshot within the same Region, from one Region to another, or from a Region to an Outpost. You can't copy a snapshot from an Outpost to a Region, from one Outpost to another, or within the same Outpost.

You can use the snapshot to create EBS volumes or Amazon Machine Images (AMIs).

When copying snapshots to a Region, copies of encrypted EBS snapshots remain encrypted. Copies of unencrypted snapshots remain unencrypted, unless you enable encryption for the snapshot copy operation. By default, encrypted snapshot copies use the default Key Management Service (KMS) KMS key; however, you can specify a different KMS key. To copy an encrypted snapshot that has been shared from another account, you must have permissions for the KMS key used to encrypt the snapshot.

Snapshots copied to an Outpost are encrypted by default using the default encryption key for the Region, or a different key that you specify in the request using KmsKeyId. Outposts do not support unencrypted snapshots. For more information, Amazon EBS local snapshots on Outposts in the Amazon EBS User Guide.

Snapshots created by copying another snapshot have an arbitrary volume ID that should not be used for any purpose.

For more information, see Copy an Amazon EBS snapshot in the Amazon EBS User Guide.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to CopySnapshotAsync.

Namespace: Amazon.EC2
Assembly: AWSSDK.EC2.dll
Version: 3.x.y.z

Syntax

C#
public abstract CopySnapshotResponse CopySnapshot(
         CopySnapshotRequest request
)

Parameters

request
Type: Amazon.EC2.Model.CopySnapshotRequest

Container for the necessary parameters to execute the CopySnapshot service method.

Return Value


The response from the CopySnapshot service method, as returned by EC2.

Examples

This example copies a snapshot with the snapshot ID of ``snap-066877671789bd71b`` from the ``us-west-2`` region to the ``us-east-1`` region and adds a short description to identify the snapshot.

To copy a snapshot


var client = new AmazonEC2Client();
var response = client.CopySnapshot(new CopySnapshotRequest 
{
    Description = "This is my copied snapshot.",
    DestinationRegion = "us-east-1",
    SourceRegion = "us-west-2",
    SourceSnapshotId = "snap-066877671789bd71b"
});

string snapshotId = response.SnapshotId;

            

Version Information

.NET Framework:
Supported in: 4.5, 4.0, 3.5

See Also