Class: Aws::ApplicationDiscoveryService::Types::DescribeAgentsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationDiscoveryService::Types::DescribeAgentsRequest
- Defined in:
- gems/aws-sdk-applicationdiscoveryservice/lib/aws-sdk-applicationdiscoveryservice/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#agent_ids ⇒ Array<String>
The agent or the collector IDs for which you want information.
-
#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 agents/collectors to return in a single page of output.
-
#next_token ⇒ String
Token to retrieve the next set of results.
Instance Attribute Details
#agent_ids ⇒ Array<String>
The agent or the collector IDs for which you want information. If you specify no IDs, the system returns information about all agents/collectors associated with your user.
833 834 835 836 837 838 839 840 |
# File 'gems/aws-sdk-applicationdiscoveryservice/lib/aws-sdk-applicationdiscoveryservice/types.rb', line 833 class DescribeAgentsRequest < Struct.new( :agent_ids, :filters, :max_results, :next_token) 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:
{"key": "collectionStatus", "value": "STARTED"}
833 834 835 836 837 838 839 840 |
# File 'gems/aws-sdk-applicationdiscoveryservice/lib/aws-sdk-applicationdiscoveryservice/types.rb', line 833 class DescribeAgentsRequest < Struct.new( :agent_ids, :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The total number of agents/collectors to return in a single page of output. The maximum value is 100.
833 834 835 836 837 838 839 840 |
# File 'gems/aws-sdk-applicationdiscoveryservice/lib/aws-sdk-applicationdiscoveryservice/types.rb', line 833 class DescribeAgentsRequest < Struct.new( :agent_ids, :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
Token to retrieve the next set of results. For example, if you
previously specified 100 IDs for DescribeAgentsRequest$agentIds
but set DescribeAgentsRequest$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.
833 834 835 836 837 838 839 840 |
# File 'gems/aws-sdk-applicationdiscoveryservice/lib/aws-sdk-applicationdiscoveryservice/types.rb', line 833 class DescribeAgentsRequest < Struct.new( :agent_ids, :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |