Struct aws_sdk_applicationdiscovery::input::DescribeAgentsInput [−][src]
#[non_exhaustive]pub struct DescribeAgentsInput {
pub agent_ids: Option<Vec<String>>,
pub filters: Option<Vec<Filter>>,
pub max_results: i32,
pub next_token: Option<String>,
}Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.agent_ids: Option<Vec<String>>The agent or the Connector IDs for which you want information. If you specify no IDs, the system returns information about all agents/Connectors associated with your AWS user account.
filters: Option<Vec<Filter>>You can filter the request using various logical operators and a key-value format. For example:
{"key": "collectionStatus", "value": "STARTED"}
max_results: i32The total number of agents/Connectors to return in a single page of output. The maximum value is 100.
next_token: Option<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.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeAgents, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeAgents, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DescribeAgents>
Creates a new builder-style object to manufacture DescribeAgentsInput
The agent or the Connector IDs for which you want information. If you specify no IDs, the system returns information about all agents/Connectors associated with your AWS user account.
You can filter the request using various logical operators and a key-value format. For example:
{"key": "collectionStatus", "value": "STARTED"}
The total number of agents/Connectors to return in a single page of output. The maximum value is 100.
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.
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for DescribeAgentsInput
impl Send for DescribeAgentsInput
impl Sync for DescribeAgentsInput
impl Unpin for DescribeAgentsInput
impl UnwindSafe for DescribeAgentsInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more
