Interface ListConfigurationsRequest.Builder
-
- All Superinterfaces:
ApplicationDiscoveryRequest.Builder,AwsRequest.Builder,Buildable,CopyableBuilder<ListConfigurationsRequest.Builder,ListConfigurationsRequest>,SdkBuilder<ListConfigurationsRequest.Builder,ListConfigurationsRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- ListConfigurationsRequest
public static interface ListConfigurationsRequest.Builder extends ApplicationDiscoveryRequest.Builder, SdkPojo, CopyableBuilder<ListConfigurationsRequest.Builder,ListConfigurationsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListConfigurationsRequest.BuilderconfigurationType(String configurationType)A valid configuration identified by Application Discovery Service.ListConfigurationsRequest.BuilderconfigurationType(ConfigurationItemType configurationType)A valid configuration identified by Application Discovery Service.ListConfigurationsRequest.Builderfilters(Collection<Filter> filters)You can filter the request using various logical operators and a key-value format.ListConfigurationsRequest.Builderfilters(Consumer<Filter.Builder>... filters)You can filter the request using various logical operators and a key-value format.ListConfigurationsRequest.Builderfilters(Filter... filters)You can filter the request using various logical operators and a key-value format.ListConfigurationsRequest.BuildermaxResults(Integer maxResults)The total number of items to return.ListConfigurationsRequest.BuildernextToken(String nextToken)Token to retrieve the next set of results.ListConfigurationsRequest.BuilderorderBy(Collection<OrderByElement> orderBy)Certain filter criteria return output that can be sorted in ascending or descending order.ListConfigurationsRequest.BuilderorderBy(Consumer<OrderByElement.Builder>... orderBy)Certain filter criteria return output that can be sorted in ascending or descending order.ListConfigurationsRequest.BuilderorderBy(OrderByElement... orderBy)Certain filter criteria return output that can be sorted in ascending or descending order.ListConfigurationsRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)ListConfigurationsRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
Methods inherited from interface software.amazon.awssdk.services.applicationdiscovery.model.ApplicationDiscoveryRequest.Builder
build
-
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
-
-
-
-
Method Detail
-
configurationType
ListConfigurationsRequest.Builder configurationType(String configurationType)
A valid configuration identified by Application Discovery Service.
- Parameters:
configurationType- A valid configuration identified by Application Discovery Service.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConfigurationItemType,ConfigurationItemType
-
configurationType
ListConfigurationsRequest.Builder configurationType(ConfigurationItemType configurationType)
A valid configuration identified by Application Discovery Service.
- Parameters:
configurationType- A valid configuration identified by Application Discovery Service.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConfigurationItemType,ConfigurationItemType
-
filters
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 Using the ListConfigurations Action in the Amazon Web Services Application Discovery Service User Guide.
- Parameters:
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 Using the ListConfigurations Action in the Amazon Web Services Application Discovery Service User Guide.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
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 Using the ListConfigurations Action in the Amazon Web Services Application Discovery Service User Guide.
- Parameters:
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 Using the ListConfigurations Action in the Amazon Web Services Application Discovery Service User Guide.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
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 Using the ListConfigurations Action in the Amazon Web Services Application Discovery Service User Guide.
This is a convenience method that creates an instance of theFilter.Builderavoiding the need to create one manually viaFilter.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#filters(List.) - Parameters:
filters- a consumer that will call methods onFilter.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#filters(java.util.Collection)
-
maxResults
ListConfigurationsRequest.Builder maxResults(Integer maxResults)
The total number of items to return. The maximum value is 100.
- Parameters:
maxResults- The total number of items to return. The maximum value is 100.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextToken
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$maxResultsto 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.- Parameters:
nextToken- Token to retrieve the next set of results. For example, if a previous call to ListConfigurations returned 100 items, but you setListConfigurationsRequest$maxResultsto 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
orderBy
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 in the Amazon Web Services Application Discovery Service User Guide.
- Parameters:
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 in the Amazon Web Services Application Discovery Service User Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
orderBy
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 in the Amazon Web Services Application Discovery Service User Guide.
- Parameters:
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 in the Amazon Web Services Application Discovery Service User Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
orderBy
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 in the Amazon Web Services Application Discovery Service User Guide.
This is a convenience method that creates an instance of theOrderByElement.Builderavoiding the need to create one manually viaOrderByElement.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#orderBy(List.) - Parameters:
orderBy- a consumer that will call methods onOrderByElement.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#orderBy(java.util.Collection)
-
overrideConfiguration
ListConfigurationsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
ListConfigurationsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-