public static interface ListServicesResponse.Builder extends ServiceDiscoveryResponse.Builder, SdkPojo, CopyableBuilder<ListServicesResponse.Builder,ListServicesResponse>
Modifier and Type | Method and Description |
---|---|
ListServicesResponse.Builder |
nextToken(String nextToken)
If the response contains
NextToken , submit another ListServices request to get the
next group of results. |
ListServicesResponse.Builder |
services(Collection<ServiceSummary> services)
An array that contains one
ServiceSummary object for each service that matches the specified
filter criteria. |
ListServicesResponse.Builder |
services(Consumer<ServiceSummary.Builder>... services)
An array that contains one
ServiceSummary object for each service that matches the specified
filter criteria. |
ListServicesResponse.Builder |
services(ServiceSummary... services)
An array that contains one
ServiceSummary object for each service that matches the specified
filter criteria. |
build, responseMetadata, responseMetadata
sdkHttpResponse, sdkHttpResponse
copy
applyMutation, build
ListServicesResponse.Builder services(Collection<ServiceSummary> services)
An array that contains one ServiceSummary
object for each service that matches the specified
filter criteria.
services
- An array that contains one ServiceSummary
object for each service that matches the
specified filter criteria.ListServicesResponse.Builder services(ServiceSummary... services)
An array that contains one ServiceSummary
object for each service that matches the specified
filter criteria.
services
- An array that contains one ServiceSummary
object for each service that matches the
specified filter criteria.ListServicesResponse.Builder services(Consumer<ServiceSummary.Builder>... services)
An array that contains one ServiceSummary
object for each service that matches the specified
filter criteria.
List.Builder
avoiding the need
to create one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called immediately and
its result is passed to #services(List)
.services
- a consumer that will call methods on List.Builder
#services(List)
ListServicesResponse.Builder nextToken(String nextToken)
If the response contains NextToken
, submit another ListServices
request to get the
next group of results. Specify the value of NextToken
from the previous response in the next
request.
AWS Cloud Map gets MaxResults
services and then filters them based on the specified criteria.
It's possible that no services in the first MaxResults
services matched the specified criteria
but that subsequent groups of MaxResults
services do contain services that match the criteria.
nextToken
- If the response contains NextToken
, submit another ListServices
request to
get the next group of results. Specify the value of NextToken
from the previous response
in the next request.
AWS Cloud Map gets MaxResults
services and then filters them based on the specified
criteria. It's possible that no services in the first MaxResults
services matched the
specified criteria but that subsequent groups of MaxResults
services do contain services
that match the criteria.
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.