Interface ListQueuesRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<ListQueuesRequest.Builder,ListQueuesRequest>
,SdkBuilder<ListQueuesRequest.Builder,ListQueuesRequest>
,SdkPojo
,SdkRequest.Builder
,SqsRequest.Builder
- Enclosing class:
- ListQueuesRequest
public static interface ListQueuesRequest.Builder extends SqsRequest.Builder, SdkPojo, CopyableBuilder<ListQueuesRequest.Builder,ListQueuesRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListQueuesRequest.Builder
maxResults(Integer maxResults)
Maximum number of results to include in the response.ListQueuesRequest.Builder
nextToken(String nextToken)
Pagination token to request the next set of results.ListQueuesRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
ListQueuesRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
ListQueuesRequest.Builder
queueNamePrefix(String queueNamePrefix)
A string to use for filtering the list results.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.services.sqs.model.SqsRequest.Builder
build
-
-
-
-
Method Detail
-
queueNamePrefix
ListQueuesRequest.Builder queueNamePrefix(String queueNamePrefix)
A string to use for filtering the list results. Only those queues whose name begins with the specified string are returned.
Queue URLs and names are case-sensitive.
- Parameters:
queueNamePrefix
- A string to use for filtering the list results. Only those queues whose name begins with the specified string are returned.Queue URLs and names are case-sensitive.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextToken
ListQueuesRequest.Builder nextToken(String nextToken)
Pagination token to request the next set of results.
- Parameters:
nextToken
- Pagination token to request the next set of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxResults
ListQueuesRequest.Builder maxResults(Integer maxResults)
Maximum number of results to include in the response. Value range is 1 to 1000. You must set
MaxResults
to receive a value forNextToken
in the response.- Parameters:
maxResults
- Maximum number of results to include in the response. Value range is 1 to 1000. You must setMaxResults
to receive a value forNextToken
in the response.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
ListQueuesRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
ListQueuesRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-