Package org.jclouds.aws.ec2.options
Class RouteTableOptions
java.lang.Object
org.jclouds.http.options.BaseHttpRequestOptions
org.jclouds.ec2.options.internal.BaseEC2RequestOptions
org.jclouds.aws.ec2.options.RouteTableOptions
- All Implemented Interfaces:
HttpRequestOptions
Contains options supported in the Form API for the RouteTable operations.
Usage
The recommended way to instantiate such an object is to statically import RouteTableOptions.Builder.* and invoke a static creation method followed by an instance mutator (if needed):
import static org.jclouds.ec2.options.RouteTableOptions.Builder.*
EC2Api connection = // get connection
RouteTable table = connection.getRouteTableApi().get().createRouteTable(vpcId, dryRun());
- See Also:
-
Nested Class Summary
Nested Classes -
Field Summary
Fields inherited from class org.jclouds.http.options.BaseHttpRequestOptions
formParameters, headers, pathSuffix, payload, queryParameters
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondestinationCidrBlock
(String destinationCidrBlock) The IPv4 CIDR address block used for the destination match.dryRun()
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response.boolean
isDryRun()
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
-
Constructor Details
-
RouteTableOptions
public RouteTableOptions()
-
-
Method Details
-
dryRun
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. -
isDryRun
public boolean isDryRun() -
destinationCidrBlock
The IPv4 CIDR address block used for the destination match. Routing decisions are based on the most specific match.
-