#[non_exhaustive]pub struct ListOrganizationInsightsInput {
pub status_filter: Option<ListInsightsStatusFilter>,
pub max_results: Option<i32>,
pub account_ids: Option<Vec<String>>,
pub organizational_unit_ids: Option<Vec<String>>,
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.status_filter: Option<ListInsightsStatusFilter>
A filter used by ListInsights
to specify which insights to return.
max_results: Option<i32>
The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken
value.
account_ids: Option<Vec<String>>
The ID of the Amazon Web Services account.
organizational_unit_ids: Option<Vec<String>>
The ID of the organizational unit.
next_token: Option<String>
The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListOrganizationInsights, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListOrganizationInsights, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListOrganizationInsights
>
Creates a new builder-style object to manufacture ListOrganizationInsightsInput
A filter used by ListInsights
to specify which insights to return.
The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken
value.
The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.
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 Send for ListOrganizationInsightsInput
impl Sync for ListOrganizationInsightsInput
impl Unpin for ListOrganizationInsightsInput
impl UnwindSafe for ListOrganizationInsightsInput
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