public class CreateSnapshotOptions extends BaseEC2RequestOptions
import static org.jclouds.ec2.options.CreateSnapshotOptions.Builder.*
EC2Client connection = // get connection
Snapshot snapshot = connection.getElasticBlockStoreServices().createSnapshotInRegion(volumeId, withDescription("123125"));
-
-
Nested Class Summary
Nested Classes
Modifier and Type
Class and Description
static class
CreateSnapshotOptions.Builder
-
Field Summary
-
Fields inherited from class org.jclouds.http.options.BaseHttpRequestOptions
formParameters, headers, pathSuffix, payload, queryParameters
-
Constructor Summary
Constructors
Constructor and Description
CreateSnapshotOptions()
-
Method Summary
Methods
Modifier and Type
Method and Description
String
getDescription()
CreateSnapshotOptions
withDescription(String description)
Description of the Amazon EBS snapshot.
-
Methods inherited from class org.jclouds.ec2.options.internal.BaseEC2RequestOptions
getFormValuesWithKeysPrefixedBy, indexFormValuesWithPrefix, indexFormValuesWithPrefix, toString
-
Methods inherited from class org.jclouds.http.options.BaseHttpRequestOptions
buildFormParameters, buildPathSuffix, buildQueryParameters, buildRequestHeaders, buildStringPayload, equals, getFirstFormOrNull, getFirstHeaderOrNull, getFirstQueryOrNull, hashCode, replaceHeader
-
-
Method Detail
-
withDescription
public CreateSnapshotOptions withDescription(String description)
Description of the Amazon EBS snapshot.
Up to 255 characters
-
getDescription
public String getDescription()
Copyright © 2009-2013 jclouds. All Rights Reserved.