Package org.jclouds.route53
Interface Route53Api
-
- All Superinterfaces:
AutoCloseable
,Closeable
@Path("/{jclouds.api-version}") public interface Route53Api extends Closeable
Provides access to Amazon Route53 via the Query API
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Change
getChange(String changeID)
returns the current status of a change batch request.HostedZoneApi
getHostedZoneApi()
Provides access to Zone features.ResourceRecordSetApi
getResourceRecordSetApiForHostedZone(String zoneId)
Provides access to record set features.
-
-
-
Method Detail
-
getChange
@Named("GetChange") @GET @Path("/change/{changeId}") @Nullable Change getChange(@PathParam("changeId") String changeID)
returns the current status of a change batch request.- Parameters:
changeID
- The ID of the change batch request.- Returns:
- null, if not found
-
getHostedZoneApi
HostedZoneApi getHostedZoneApi()
Provides access to Zone features.
-
getResourceRecordSetApiForHostedZone
@Path("/hostedzone/{zoneId}") ResourceRecordSetApi getResourceRecordSetApiForHostedZone(@PathParam("zoneId") String zoneId)
Provides access to record set features.
-
-