Class SearchRequest
- java.lang.Object
-
- software.amazon.awssdk.core.SdkRequest
-
- software.amazon.awssdk.awscore.AwsRequest
-
- software.amazon.awssdk.services.resourceexplorer2.model.ResourceExplorer2Request
-
- software.amazon.awssdk.services.resourceexplorer2.model.SearchRequest
-
- All Implemented Interfaces:
SdkPojo,ToCopyableBuilder<SearchRequest.Builder,SearchRequest>
@Generated("software.amazon.awssdk:codegen") public final class SearchRequest extends ResourceExplorer2Request implements ToCopyableBuilder<SearchRequest.Builder,SearchRequest>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceSearchRequest.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SearchRequest.Builderbuilder()booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()IntegermaxResults()The maximum number of results that you want included on each page of the response.StringnextToken()The parameter for receiving additional results if you receive aNextTokenresponse in a previous request.StringqueryString()A string that includes keywords and filters that specify the resources that you want to include in the results.List<SdkField<?>>sdkFields()static Class<? extends SearchRequest.Builder>serializableBuilderClass()SearchRequest.BuildertoBuilder()StringtoString()Returns a string representation of this object.StringviewArn()Specifies the Amazon resource name (ARN) of the view to use for the query.-
Methods inherited from class software.amazon.awssdk.awscore.AwsRequest
overrideConfiguration
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
maxResults
public final Integer maxResults()
The maximum number of results that you want included on each page of the response. If you do not include this parameter, it defaults to a value appropriate to the operation. If additional items exist beyond those included in the current response, the
NextTokenresponse element is present and has a value (is not null). Include that value as theNextTokenrequest parameter in the next call to the operation to get the next part of the results.An API operation can return fewer results than the maximum even when there are more results available. You should check
NextTokenafter every operation to ensure that you receive all of the results.- Returns:
- The maximum number of results that you want included on each page of the response. If you do not include
this parameter, it defaults to a value appropriate to the operation. If additional items exist beyond
those included in the current response, the
NextTokenresponse element is present and has a value (is not null). Include that value as theNextTokenrequest parameter in the next call to the operation to get the next part of the results.An API operation can return fewer results than the maximum even when there are more results available. You should check
NextTokenafter every operation to ensure that you receive all of the results.
-
nextToken
public final String nextToken()
The parameter for receiving additional results if you receive a
NextTokenresponse in a previous request. ANextTokenresponse indicates that more output is available. Set this parameter to the value of the previous call'sNextTokenresponse to indicate where the output should continue from. The pagination tokens expire after 24 hours.- Returns:
- The parameter for receiving additional results if you receive a
NextTokenresponse in a previous request. ANextTokenresponse indicates that more output is available. Set this parameter to the value of the previous call'sNextTokenresponse to indicate where the output should continue from. The pagination tokens expire after 24 hours.
-
queryString
public final String queryString()
A string that includes keywords and filters that specify the resources that you want to include in the results.
For the complete syntax supported by the
QueryStringparameter, see Search query syntax reference for Resource Explorer.The search is completely case insensitive. You can specify an empty string to return all results up to the limit of 1,000 total results.
The operation can return only the first 1,000 results. If the resource you want is not included, then use a different value for
QueryStringto refine the results.- Returns:
- A string that includes keywords and filters that specify the resources that you want to include in the
results.
For the complete syntax supported by the
QueryStringparameter, see Search query syntax reference for Resource Explorer.The search is completely case insensitive. You can specify an empty string to return all results up to the limit of 1,000 total results.
The operation can return only the first 1,000 results. If the resource you want is not included, then use a different value for
QueryStringto refine the results.
-
viewArn
public final String viewArn()
Specifies the Amazon resource name (ARN) of the view to use for the query. If you don't specify a value for this parameter, then the operation automatically uses the default view for the Amazon Web Services Region in which you called this operation. If the Region either doesn't have a default view or if you don't have permission to use the default view, then the operation fails with a
401 Unauthorizedexception.- Returns:
- Specifies the Amazon
resource name (ARN) of the view to use for the query. If you don't specify a value for this
parameter, then the operation automatically uses the default view for the Amazon Web Services Region in
which you called this operation. If the Region either doesn't have a default view or if you don't have
permission to use the default view, then the operation fails with a
401 Unauthorizedexception.
-
toBuilder
public SearchRequest.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<SearchRequest.Builder,SearchRequest>- Specified by:
toBuilderin classResourceExplorer2Request
-
builder
public static SearchRequest.Builder builder()
-
serializableBuilderClass
public static Class<? extends SearchRequest.Builder> serializableBuilderClass()
-
hashCode
public final int hashCode()
- Overrides:
hashCodein classAwsRequest
-
equals
public final boolean equals(Object obj)
- Overrides:
equalsin classAwsRequest
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
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.
-
getValueForField
public final <T> Optional<T> getValueForField(String fieldName, Class<T> clazz)
- Overrides:
getValueForFieldin classSdkRequest
-
-