Interface ListQueuesRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<ListQueuesRequest.Builder,ListQueuesRequest>,SdkBuilder<ListQueuesRequest.Builder,ListQueuesRequest>,SdkPojo,SdkRequest.Builder,SqsRequest.Builder
- Enclosing class:
- ListQueuesRequest
@Mutable @NotThreadSafe 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.BuildermaxResults(Integer maxResults)Maximum number of results to include in the response.ListQueuesRequest.BuildernextToken(String nextToken)Pagination token to request the next set of results.ListQueuesRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)ListQueuesRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)ListQueuesRequest.BuilderqueueNamePrefix(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, sdkFieldNameToField, 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
MaxResultsto receive a value forNextTokenin the response.- Parameters:
maxResults- Maximum number of results to include in the response. Value range is 1 to 1000. You must setMaxResultsto receive a value forNextTokenin 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:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
ListQueuesRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-