Class: Aws::ApplicationDiscoveryService::Types::ListConfigurationsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationDiscoveryService::Types::ListConfigurationsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-applicationdiscoveryservice/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#configuration_type ⇒ String
A valid configuration identified by Application Discovery Service.
-
#filters ⇒ Array<Types::Filter>
You can filter the request using various logical operators and a key-value format.
-
#max_results ⇒ Integer
The total number of items to return.
-
#next_token ⇒ String
Token to retrieve the next set of results.
-
#order_by ⇒ Array<Types::OrderByElement>
Certain filter criteria return output that can be sorted in ascending or descending order.
Instance Attribute Details
#configuration_type ⇒ String
A valid configuration identified by Application Discovery Service.
1655 1656 1657 1658 1659 1660 1661 1662 1663 |
# File 'lib/aws-sdk-applicationdiscoveryservice/types.rb', line 1655 class ListConfigurationsRequest < Struct.new( :configuration_type, :filters, :max_results, :next_token, :order_by) SENSITIVE = [] include Aws::Structure end |
#filters ⇒ Array<Types::Filter>
You can filter the request using various logical operators and a key-value format. For example:
‘“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*.
1655 1656 1657 1658 1659 1660 1661 1662 1663 |
# File 'lib/aws-sdk-applicationdiscoveryservice/types.rb', line 1655 class ListConfigurationsRequest < Struct.new( :configuration_type, :filters, :max_results, :next_token, :order_by) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The total number of items to return. The maximum value is 100.
1655 1656 1657 1658 1659 1660 1661 1662 1663 |
# File 'lib/aws-sdk-applicationdiscoveryservice/types.rb', line 1655 class ListConfigurationsRequest < Struct.new( :configuration_type, :filters, :max_results, :next_token, :order_by) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
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.
1655 1656 1657 1658 1659 1660 1661 1662 1663 |
# File 'lib/aws-sdk-applicationdiscoveryservice/types.rb', line 1655 class ListConfigurationsRequest < Struct.new( :configuration_type, :filters, :max_results, :next_token, :order_by) SENSITIVE = [] include Aws::Structure end |
#order_by ⇒ Array<Types::OrderByElement>
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*.
1655 1656 1657 1658 1659 1660 1661 1662 1663 |
# File 'lib/aws-sdk-applicationdiscoveryservice/types.rb', line 1655 class ListConfigurationsRequest < Struct.new( :configuration_type, :filters, :max_results, :next_token, :order_by) SENSITIVE = [] include Aws::Structure end |