Struct aws_sdk_inspector2::operation::list_finding_aggregations::ListFindingAggregationsInput
source · #[non_exhaustive]pub struct ListFindingAggregationsInput {
pub aggregation_type: Option<AggregationType>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
pub account_ids: Option<Vec<StringFilter>>,
pub aggregation_request: Option<AggregationRequest>,
}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.aggregation_type: Option<AggregationType>The type of the aggregation request.
next_token: Option<String>A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the maxResults maximum value it will also return a nextToken value. For subsequent calls, use the nextToken value returned from the previous request to continue listing results after the first page.
max_results: Option<i32>The maximum number of results the response can return. If your request would return more than the maximum the response will return a nextToken value, use this value when you call the action again to get the remaining results.
account_ids: Option<Vec<StringFilter>>The Amazon Web Services account IDs to retrieve finding aggregation data for.
aggregation_request: Option<AggregationRequest>Details of the aggregation request that is used to filter your aggregation results.
Implementations§
source§impl ListFindingAggregationsInput
impl ListFindingAggregationsInput
sourcepub fn aggregation_type(&self) -> Option<&AggregationType>
pub fn aggregation_type(&self) -> Option<&AggregationType>
The type of the aggregation request.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the maxResults maximum value it will also return a nextToken value. For subsequent calls, use the nextToken value returned from the previous request to continue listing results after the first page.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results the response can return. If your request would return more than the maximum the response will return a nextToken value, use this value when you call the action again to get the remaining results.
sourcepub fn account_ids(&self) -> &[StringFilter]
pub fn account_ids(&self) -> &[StringFilter]
The Amazon Web Services account IDs to retrieve finding aggregation data for.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .account_ids.is_none().
sourcepub fn aggregation_request(&self) -> Option<&AggregationRequest>
pub fn aggregation_request(&self) -> Option<&AggregationRequest>
Details of the aggregation request that is used to filter your aggregation results.
source§impl ListFindingAggregationsInput
impl ListFindingAggregationsInput
sourcepub fn builder() -> ListFindingAggregationsInputBuilder
pub fn builder() -> ListFindingAggregationsInputBuilder
Creates a new builder-style object to manufacture ListFindingAggregationsInput.
Trait Implementations§
source§impl Clone for ListFindingAggregationsInput
impl Clone for ListFindingAggregationsInput
source§fn clone(&self) -> ListFindingAggregationsInput
fn clone(&self) -> ListFindingAggregationsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListFindingAggregationsInput
impl Debug for ListFindingAggregationsInput
source§impl PartialEq for ListFindingAggregationsInput
impl PartialEq for ListFindingAggregationsInput
source§fn eq(&self, other: &ListFindingAggregationsInput) -> bool
fn eq(&self, other: &ListFindingAggregationsInput) -> bool
self and other values to be equal, and is used
by ==.