Codota Logo
ListResourceRecordSetsRequest.setStartRecordName
Code IndexAdd Codota to your IDE (free)

How to use
setStartRecordName
method
in
com.amazonaws.services.route53.model.ListResourceRecordSetsRequest

Best Java code snippets using com.amazonaws.services.route53.model.ListResourceRecordSetsRequest.setStartRecordName (Showing top 2 results out of 315)

  • Common ways to obtain ListResourceRecordSetsRequest
private void myMethod () {
ListResourceRecordSetsRequest l =
  • Codota Iconnew ListResourceRecordSetsRequest()
  • Smart code suggestions by Codota
}
origin: aws/aws-sdk-java

/**
 * <p>
 * The first name in the lexicographic ordering of resource record sets that you want to list.
 * </p>
 * 
 * @param startRecordName
 *        The first name in the lexicographic ordering of resource record sets that you want to list.
 * @return Returns a reference to this object so that method calls can be chained together.
 */
public ListResourceRecordSetsRequest withStartRecordName(String startRecordName) {
  setStartRecordName(startRecordName);
  return this;
}
origin: LendingClub/mercator

protected void projectHostedZoneResult(GetHostedZoneResult hostedZoneResult) {
  HostedZone hz = hostedZoneResult.getHostedZone();
  ObjectNode n = toJson(hostedZoneResult);
  getNeoRxClient().execCypher(
      "merge (a:AwsRoute53HostedZone {aws_id:{aws_id}}) set a+={props}, a.updateTs=timestamp() return a",
      "aws_id", n.get("aws_id").asText(), "props", n);
  ListResourceRecordSetsRequest request = new ListResourceRecordSetsRequest();
  request.setHostedZoneId(hz.getId());
  ListResourceRecordSetsResult result;
  long timestamp = System.currentTimeMillis();
  do {
    rateLimit();
    result = getClient().listResourceRecordSets(request);
    request.setStartRecordName(result.getNextRecordName());
    for (ResourceRecordSet rs : result.getResourceRecordSets()) {
      projectResourceRecordSet(hz.getId(), rs, timestamp);
    }
  } while (result.isTruncated());
  getNeoRxClient().execCypher(
      "match (z:AwsRoute53HostedZone {aws_id:{aws_id}})--(r:AwsRoute53RecordSet) where r.updateTs<{ts} detach delete r",
      "ts", timestamp, "aws_id", hz.getId());
  getNeoRxClient().execCypher(
      "match (a:AwsRoute53RecordSet) where not (a)-[:CONTAINS]-(:AwsRoute53HostedZone) detach delete a");
}
com.amazonaws.services.route53.modelListResourceRecordSetsRequestsetStartRecordName

Javadoc

The first name in the lexicographic ordering of resource record sets that you want to list.

Popular methods of ListResourceRecordSetsRequest

  • <init>
    Constructs a new ListResourceRecordSetsRequest object. Callers should use the setter or fluent sette
  • setHostedZoneId
  • setMaxItems
  • getHostedZoneId
    The ID of the hosted zone that contains the resource record sets that you want to list.
  • getMaxItems
    (Optional) The maximum number of resource records sets to include in the response body for this req
  • getStartRecordIdentifier
    Weighted resource record sets only: If results were truncated for a given DNS name and type, specify
  • getStartRecordName
    The first name in the lexicographic ordering of resource record sets that you want to list.
  • getStartRecordType
    The type of resource record set to begin the record listing from. Valid values for basic resource
  • setStartRecordIdentifier
    Weighted resource record sets only: If results were truncated for a given DNS name and type, specify
  • setStartRecordType
    The type of resource record set to begin the record listing from. Valid values for basic resource
  • withHostedZoneId
  • withStartRecordName
  • withHostedZoneId,
  • withStartRecordName,
  • withStartRecordType

Popular in Java

  • Making http post requests using okhttp
  • getSupportFragmentManager (FragmentActivity)
  • getApplicationContext (Context)
  • startActivity (Activity)
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • ResourceBundle (java.util)
    Resource bundles contain locale-specific objects. When your program needs a locale-specific resource
  • StringUtils (org.apache.commons.lang)
    Operations on java.lang.String that arenull safe. * IsEmpty/IsBlank - checks if a String contains
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now