Interface ListResolverEndpointsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListResolverEndpointsResponse.Builder,ListResolverEndpointsResponse>,Route53ResolverResponse.Builder,SdkBuilder<ListResolverEndpointsResponse.Builder,ListResolverEndpointsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListResolverEndpointsResponse
public static interface ListResolverEndpointsResponse.Builder extends Route53ResolverResponse.Builder, SdkPojo, CopyableBuilder<ListResolverEndpointsResponse.Builder,ListResolverEndpointsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListResolverEndpointsResponse.BuildermaxResults(Integer maxResults)The value that you specified forMaxResultsin the request.ListResolverEndpointsResponse.BuildernextToken(String nextToken)If more thanMaxResultsIP addresses match the specified criteria, you can submit anotherListResolverEndpointrequest to get the next group of results.ListResolverEndpointsResponse.BuilderresolverEndpoints(Collection<ResolverEndpoint> resolverEndpoints)The Resolver endpoints that were created by using the current Amazon Web Services account, and that match the specified filters, if any.ListResolverEndpointsResponse.BuilderresolverEndpoints(Consumer<ResolverEndpoint.Builder>... resolverEndpoints)The Resolver endpoints that were created by using the current Amazon Web Services account, and that match the specified filters, if any.ListResolverEndpointsResponse.BuilderresolverEndpoints(ResolverEndpoint... resolverEndpoints)The Resolver endpoints that were created by using the current Amazon Web Services account, and that match the specified filters, if any.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.route53resolver.model.Route53ResolverResponse.Builder
build, responseMetadata, responseMetadata
-
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.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
nextToken
ListResolverEndpointsResponse.Builder nextToken(String nextToken)
If more than
MaxResultsIP addresses match the specified criteria, you can submit anotherListResolverEndpointrequest to get the next group of results. In the next request, specify the value ofNextTokenfrom the previous response.- Parameters:
nextToken- If more thanMaxResultsIP addresses match the specified criteria, you can submit anotherListResolverEndpointrequest to get the next group of results. In the next request, specify the value ofNextTokenfrom the previous response.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxResults
ListResolverEndpointsResponse.Builder maxResults(Integer maxResults)
The value that you specified for
MaxResultsin the request.- Parameters:
maxResults- The value that you specified forMaxResultsin the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resolverEndpoints
ListResolverEndpointsResponse.Builder resolverEndpoints(Collection<ResolverEndpoint> resolverEndpoints)
The Resolver endpoints that were created by using the current Amazon Web Services account, and that match the specified filters, if any.
- Parameters:
resolverEndpoints- The Resolver endpoints that were created by using the current Amazon Web Services account, and that match the specified filters, if any.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resolverEndpoints
ListResolverEndpointsResponse.Builder resolverEndpoints(ResolverEndpoint... resolverEndpoints)
The Resolver endpoints that were created by using the current Amazon Web Services account, and that match the specified filters, if any.
- Parameters:
resolverEndpoints- The Resolver endpoints that were created by using the current Amazon Web Services account, and that match the specified filters, if any.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resolverEndpoints
ListResolverEndpointsResponse.Builder resolverEndpoints(Consumer<ResolverEndpoint.Builder>... resolverEndpoints)
The Resolver endpoints that were created by using the current Amazon Web Services account, and that match the specified filters, if any.
This is a convenience method that creates an instance of theResolverEndpoint.Builderavoiding the need to create one manually viaResolverEndpoint.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#resolverEndpoints(List.) - Parameters:
resolverEndpoints- a consumer that will call methods onResolverEndpoint.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#resolverEndpoints(java.util.Collection)
-
-