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.

Deletes a snapshot of a volume.

You can take snapshots of your gateway volumes on a scheduled or ad hoc basis. This API action enables you to delete a snapshot schedule for a volume. For more information, see Backing up your volumes. In the DeleteSnapshotSchedule request, you identify the volume by providing its Amazon Resource Name (ARN). This operation is only supported for cached volume gateway types.

To list or delete a snapshot, you must use the Amazon EC2 API. For more information, go to DescribeSnapshots in the Amazon Elastic Compute Cloud API Reference.

Note:

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

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

Syntax

C#
public abstract DeleteSnapshotScheduleResponse DeleteSnapshotSchedule(
         DeleteSnapshotScheduleRequest request
)

Parameters

request
Type: Amazon.StorageGateway.Model.DeleteSnapshotScheduleRequest

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

Return Value


The response from the DeleteSnapshotSchedule service method, as returned by StorageGateway.

Exceptions

ExceptionCondition
InternalServerErrorException An internal server error has occurred during the request. For more information, see the error and message fields.
InvalidGatewayRequestException An exception occurred because an invalid gateway request was issued to the service. For more information, see the error and message fields.

Examples

This action enables you to delete a snapshot schedule for a volume.

To delete a snapshot of a volume


var client = new AmazonStorageGatewayClient();
var response = client.DeleteSnapshotSchedule(new DeleteSnapshotScheduleRequest 
{
    VolumeARN = "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB"
});

string volumeARN = response.VolumeARN;

            

Version Information

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

See Also