#[non_exhaustive]pub struct DescribeOrganizationOverviewInput {
pub from_time: Option<DateTime>,
pub to_time: Option<DateTime>,
pub account_ids: Option<Vec<String>>,
pub organizational_unit_ids: Option<Vec<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.from_time: Option<DateTime>
The start of the time range passed in. The start time granularity is at the day level. The floor of the start time is used. Returned information occurred after this day.
to_time: Option<DateTime>
The end of the time range passed in. The start time granularity is at the day level. The floor of the start time is used. Returned information occurred before this day. If this is not specified, then the current day is used.
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.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeOrganizationOverview, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeOrganizationOverview, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DescribeOrganizationOverview
>
Creates a new builder-style object to manufacture DescribeOrganizationOverviewInput
The start of the time range passed in. The start time granularity is at the day level. The floor of the start time is used. Returned information occurred after this day.
The end of the time range passed in. The start time granularity is at the day level. The floor of the start time is used. Returned information occurred before this day. If this is not specified, then the current day is used.
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 DescribeOrganizationOverviewInput
impl Sync for DescribeOrganizationOverviewInput
impl Unpin for DescribeOrganizationOverviewInput
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