Struct aws_sdk_devopsguru::operation::list_organization_insights::ListOrganizationInsightsInput
source · #[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§
source§impl ListOrganizationInsightsInput
impl ListOrganizationInsightsInput
sourcepub fn status_filter(&self) -> Option<&ListInsightsStatusFilter>
pub fn status_filter(&self) -> Option<&ListInsightsStatusFilter>
A filter used by ListInsights
to specify which insights to return.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> 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.
sourcepub fn account_ids(&self) -> &[String]
pub fn account_ids(&self) -> &[String]
The ID of the Amazon Web Services account.
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 organizational_unit_ids(&self) -> &[String]
pub fn organizational_unit_ids(&self) -> &[String]
The ID of the organizational unit.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .organizational_unit_ids.is_none()
.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
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.
source§impl ListOrganizationInsightsInput
impl ListOrganizationInsightsInput
sourcepub fn builder() -> ListOrganizationInsightsInputBuilder
pub fn builder() -> ListOrganizationInsightsInputBuilder
Creates a new builder-style object to manufacture ListOrganizationInsightsInput
.
Trait Implementations§
source§impl Clone for ListOrganizationInsightsInput
impl Clone for ListOrganizationInsightsInput
source§fn clone(&self) -> ListOrganizationInsightsInput
fn clone(&self) -> ListOrganizationInsightsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for ListOrganizationInsightsInput
impl PartialEq for ListOrganizationInsightsInput
source§fn eq(&self, other: &ListOrganizationInsightsInput) -> bool
fn eq(&self, other: &ListOrganizationInsightsInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListOrganizationInsightsInput
Auto Trait Implementations§
impl Freeze for ListOrganizationInsightsInput
impl RefUnwindSafe for ListOrganizationInsightsInput
impl Send for ListOrganizationInsightsInput
impl Sync for ListOrganizationInsightsInput
impl Unpin for ListOrganizationInsightsInput
impl UnwindSafe for ListOrganizationInsightsInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more