Tabnine Logo
ListRuleNamesByTargetRequest.limit
Code IndexAdd Tabnine to your IDE (free)

How to use
limit
method
in
software.amazon.awssdk.services.cloudwatchevents.model.ListRuleNamesByTargetRequest

Best Java code snippets using software.amazon.awssdk.services.cloudwatchevents.model.ListRuleNamesByTargetRequest.limit (Showing top 13 results out of 315)

origin: software.amazon.awssdk/events

public <T> Optional<T> getValueForField(String fieldName, Class<T> clazz) {
  switch (fieldName) {
  case "TargetArn":
    return Optional.ofNullable(clazz.cast(targetArn()));
  case "NextToken":
    return Optional.ofNullable(clazz.cast(nextToken()));
  case "Limit":
    return Optional.ofNullable(clazz.cast(limit()));
  default:
    return Optional.empty();
  }
}
origin: aws/aws-sdk-java-v2

public <T> Optional<T> getValueForField(String fieldName, Class<T> clazz) {
  switch (fieldName) {
  case "TargetArn":
    return Optional.ofNullable(clazz.cast(targetArn()));
  case "NextToken":
    return Optional.ofNullable(clazz.cast(nextToken()));
  case "Limit":
    return Optional.ofNullable(clazz.cast(limit()));
  default:
    return Optional.empty();
  }
}
origin: software.amazon.awssdk/cloudwatchevents

public <T> Optional<T> getValueForField(String fieldName, Class<T> clazz) {
  switch (fieldName) {
  case "TargetArn":
    return Optional.ofNullable(clazz.cast(targetArn()));
  case "NextToken":
    return Optional.ofNullable(clazz.cast(nextToken()));
  case "Limit":
    return Optional.ofNullable(clazz.cast(limit()));
  default:
    return Optional.empty();
  }
}
origin: aws/aws-sdk-java-v2

/**
 * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
 * redacted from this string using a placeholder value.
 */
@Override
public String toString() {
  return ToString.builder("ListRuleNamesByTargetRequest").add("TargetArn", targetArn()).add("NextToken", nextToken())
      .add("Limit", limit()).build();
}
origin: software.amazon.awssdk/events

@Override
public String toString() {
  return ToString.builder("ListRuleNamesByTargetRequest").add("TargetArn", targetArn()).add("NextToken", nextToken())
      .add("Limit", limit()).build();
}
origin: software.amazon.awssdk/cloudwatchevents

/**
 * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
 * redacted from this string using a placeholder value.
 */
@Override
public String toString() {
  return ToString.builder("ListRuleNamesByTargetRequest").add("TargetArn", targetArn()).add("NextToken", nextToken())
      .add("Limit", limit()).build();
}
origin: aws/aws-sdk-java-v2

@Override
public int hashCode() {
  int hashCode = 1;
  hashCode = 31 * hashCode + Objects.hashCode(targetArn());
  hashCode = 31 * hashCode + Objects.hashCode(nextToken());
  hashCode = 31 * hashCode + Objects.hashCode(limit());
  return hashCode;
}
origin: software.amazon.awssdk/events

@Override
public int hashCode() {
  int hashCode = 1;
  hashCode = 31 * hashCode + Objects.hashCode(targetArn());
  hashCode = 31 * hashCode + Objects.hashCode(nextToken());
  hashCode = 31 * hashCode + Objects.hashCode(limit());
  return hashCode;
}
origin: software.amazon.awssdk/cloudwatchevents

@Override
public int hashCode() {
  int hashCode = 1;
  hashCode = 31 * hashCode + Objects.hashCode(targetArn());
  hashCode = 31 * hashCode + Objects.hashCode(nextToken());
  hashCode = 31 * hashCode + Objects.hashCode(limit());
  return hashCode;
}
origin: aws/aws-sdk-java-v2

@Override
public boolean equals(Object obj) {
  if (this == obj) {
    return true;
  }
  if (obj == null) {
    return false;
  }
  if (!(obj instanceof ListRuleNamesByTargetRequest)) {
    return false;
  }
  ListRuleNamesByTargetRequest other = (ListRuleNamesByTargetRequest) obj;
  return Objects.equals(targetArn(), other.targetArn()) && Objects.equals(nextToken(), other.nextToken())
      && Objects.equals(limit(), other.limit());
}
origin: software.amazon.awssdk/events

@Override
public boolean equals(Object obj) {
  if (this == obj) {
    return true;
  }
  if (obj == null) {
    return false;
  }
  if (!(obj instanceof ListRuleNamesByTargetRequest)) {
    return false;
  }
  ListRuleNamesByTargetRequest other = (ListRuleNamesByTargetRequest) obj;
  return Objects.equals(targetArn(), other.targetArn()) && Objects.equals(nextToken(), other.nextToken())
      && Objects.equals(limit(), other.limit());
}
origin: software.amazon.awssdk/cloudwatchevents

@Override
public boolean equals(Object obj) {
  if (this == obj) {
    return true;
  }
  if (obj == null) {
    return false;
  }
  if (!(obj instanceof ListRuleNamesByTargetRequest)) {
    return false;
  }
  ListRuleNamesByTargetRequest other = (ListRuleNamesByTargetRequest) obj;
  return Objects.equals(targetArn(), other.targetArn()) && Objects.equals(nextToken(), other.nextToken())
      && Objects.equals(limit(), other.limit());
}
origin: software.amazon.awssdk/events

  /**
   * Marshall the given parameter object
   */
  public void marshall(ListRuleNamesByTargetRequest listRuleNamesByTargetRequest, ProtocolMarshaller protocolMarshaller) {
    Validate.paramNotNull(listRuleNamesByTargetRequest, "listRuleNamesByTargetRequest");
    Validate.paramNotNull(protocolMarshaller, "protocolMarshaller");
    try {
      protocolMarshaller.marshall(listRuleNamesByTargetRequest.targetArn(), TARGETARN_BINDING);
      protocolMarshaller.marshall(listRuleNamesByTargetRequest.nextToken(), NEXTTOKEN_BINDING);
      protocolMarshaller.marshall(listRuleNamesByTargetRequest.limit(), LIMIT_BINDING);
    } catch (Exception e) {
      throw SdkClientException.builder().message("Unable to marshall request to JSON: " + e.getMessage()).cause(e).build();
    }
  }
}
software.amazon.awssdk.services.cloudwatchevents.modelListRuleNamesByTargetRequestlimit

Javadoc

The maximum number of results to return.

Popular methods of ListRuleNamesByTargetRequest

  • <init>
  • builder
  • nextToken
    The token returned by a previous call to retrieve the next set of results.
  • targetArn
    The Amazon Resource Name (ARN) of the target resource.

Popular in Java

  • Finding current android device location
  • getContentResolver (Context)
  • scheduleAtFixedRate (Timer)
  • notifyDataSetChanged (ArrayAdapter)
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • PriorityQueue (java.util)
    A PriorityQueue holds elements on a priority heap, which orders the elements according to their natu
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now