public static interface ListConfigurationsRequest.Builder extends ApplicationDiscoveryRequest.Builder, SdkPojo, CopyableBuilder<ListConfigurationsRequest.Builder,ListConfigurationsRequest>
Modifier and Type | Method and Description |
---|---|
ListConfigurationsRequest.Builder |
configurationType(ConfigurationItemType configurationType)
A valid configuration identified by Application Discovery Service.
|
ListConfigurationsRequest.Builder |
configurationType(String configurationType)
A valid configuration identified by Application Discovery Service.
|
ListConfigurationsRequest.Builder |
filters(Collection<Filter> filters)
You can filter the request using various logical operators and a key-value format.
|
ListConfigurationsRequest.Builder |
filters(Consumer<Filter.Builder>... filters)
You can filter the request using various logical operators and a key-value format.
|
ListConfigurationsRequest.Builder |
filters(Filter... filters)
You can filter the request using various logical operators and a key-value format.
|
ListConfigurationsRequest.Builder |
maxResults(Integer maxResults)
The total number of items to return.
|
ListConfigurationsRequest.Builder |
nextToken(String nextToken)
Token to retrieve the next set of results.
|
ListConfigurationsRequest.Builder |
orderBy(Collection<OrderByElement> orderBy)
Certain filter criteria return output that can be sorted in ascending or descending order.
|
ListConfigurationsRequest.Builder |
orderBy(Consumer<OrderByElement.Builder>... orderBy)
Certain filter criteria return output that can be sorted in ascending or descending order.
|
ListConfigurationsRequest.Builder |
orderBy(OrderByElement... orderBy)
Certain filter criteria return output that can be sorted in ascending or descending order.
|
ListConfigurationsRequest.Builder |
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
Add an optional request override configuration.
|
ListConfigurationsRequest.Builder |
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
Add an optional request override configuration.
|
build
overrideConfiguration
copy
applyMutation, build
ListConfigurationsRequest.Builder configurationType(String configurationType)
A valid configuration identified by Application Discovery Service.
configurationType
- A valid configuration identified by Application Discovery Service.ConfigurationItemType
,
ConfigurationItemType
ListConfigurationsRequest.Builder configurationType(ConfigurationItemType configurationType)
A valid configuration identified by Application Discovery Service.
configurationType
- A valid configuration identified by Application Discovery Service.ConfigurationItemType
,
ConfigurationItemType
ListConfigurationsRequest.Builder filters(Collection<Filter> filters)
You can filter the request using various logical operators and a key-value format. For example:
{"key": "serverType", "value": "webServer"}
For a complete list of filter options and guidance about using them with this action, see Querying Discovered Configuration Items.
filters
- You can filter the request using various logical operators and a key-value format. For
example:
{"key": "serverType", "value": "webServer"}
For a complete list of filter options and guidance about using them with this action, see Querying Discovered Configuration Items.
ListConfigurationsRequest.Builder filters(Filter... filters)
You can filter the request using various logical operators and a key-value format. For example:
{"key": "serverType", "value": "webServer"}
For a complete list of filter options and guidance about using them with this action, see Querying Discovered Configuration Items.
filters
- You can filter the request using various logical operators and a key-value format. For
example:
{"key": "serverType", "value": "webServer"}
For a complete list of filter options and guidance about using them with this action, see Querying Discovered Configuration Items.
ListConfigurationsRequest.Builder filters(Consumer<Filter.Builder>... filters)
You can filter the request using various logical operators and a key-value format. For example:
{"key": "serverType", "value": "webServer"}
For a complete list of filter options and guidance about using them with this action, see Querying Discovered Configuration Items.
This is a convenience that creates an instance of theList.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 #filters(List)
.filters
- a consumer that will call methods on List.Builder
#filters(List)
ListConfigurationsRequest.Builder maxResults(Integer maxResults)
The total number of items to return. The maximum value is 100.
maxResults
- The total number of items to return. The maximum value is 100.ListConfigurationsRequest.Builder nextToken(String nextToken)
Token to retrieve the next set of results. For example, if a previous call to ListConfigurations returned 100
items, but you set ListConfigurationsRequest$maxResults
to 10, you received a set of 10 results
along with a token. Use that token in this query to get the next set of 10.
nextToken
- Token to retrieve the next set of results. For example, if a previous call to ListConfigurations
returned 100 items, but you set ListConfigurationsRequest$maxResults
to 10, you received
a set of 10 results along with a token. Use that token in this query to get the next set of 10.ListConfigurationsRequest.Builder orderBy(Collection<OrderByElement> orderBy)
Certain filter criteria return output that can be sorted in ascending or descending order. For a list of output characteristics for each filter, see Using the ListConfigurations Action.
orderBy
- Certain filter criteria return output that can be sorted in ascending or descending order. For a list
of output characteristics for each filter, see Using the ListConfigurations Action.ListConfigurationsRequest.Builder orderBy(OrderByElement... orderBy)
Certain filter criteria return output that can be sorted in ascending or descending order. For a list of output characteristics for each filter, see Using the ListConfigurations Action.
orderBy
- Certain filter criteria return output that can be sorted in ascending or descending order. For a list
of output characteristics for each filter, see Using the ListConfigurations Action.ListConfigurationsRequest.Builder orderBy(Consumer<OrderByElement.Builder>... orderBy)
Certain filter criteria return output that can be sorted in ascending or descending order. For a list of output characteristics for each filter, see Using the ListConfigurations Action.
This is a convenience that creates an instance of theList.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 #orderBy(List)
.orderBy
- a consumer that will call methods on List.Builder
#orderBy(List)
ListConfigurationsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
AwsRequest.Builder
overrideConfiguration
in interface AwsRequest.Builder
overrideConfiguration
- The override configuration.ListConfigurationsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
AwsRequest.Builder
overrideConfiguration
in interface AwsRequest.Builder
builderConsumer
- A Consumer
to which an empty AwsRequestOverrideConfiguration.Builder
will be
given.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.