Struct aws_sdk_devopsguru::operation::describe_organization_overview::DescribeOrganizationOverviewInput
source · #[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§
source§impl DescribeOrganizationOverviewInput
impl DescribeOrganizationOverviewInput
sourcepub fn from_time(&self) -> Option<&DateTime>
pub fn from_time(&self) -> 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.
sourcepub fn to_time(&self) -> Option<&DateTime>
pub fn to_time(&self) -> 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.
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()
.
source§impl DescribeOrganizationOverviewInput
impl DescribeOrganizationOverviewInput
sourcepub fn builder() -> DescribeOrganizationOverviewInputBuilder
pub fn builder() -> DescribeOrganizationOverviewInputBuilder
Creates a new builder-style object to manufacture DescribeOrganizationOverviewInput
.
Trait Implementations§
source§impl Clone for DescribeOrganizationOverviewInput
impl Clone for DescribeOrganizationOverviewInput
source§fn clone(&self) -> DescribeOrganizationOverviewInput
fn clone(&self) -> DescribeOrganizationOverviewInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for DescribeOrganizationOverviewInput
impl PartialEq for DescribeOrganizationOverviewInput
source§fn eq(&self, other: &DescribeOrganizationOverviewInput) -> bool
fn eq(&self, other: &DescribeOrganizationOverviewInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeOrganizationOverviewInput
Auto Trait Implementations§
impl Freeze for DescribeOrganizationOverviewInput
impl RefUnwindSafe for DescribeOrganizationOverviewInput
impl Send for DescribeOrganizationOverviewInput
impl Sync for DescribeOrganizationOverviewInput
impl Unpin for DescribeOrganizationOverviewInput
impl UnwindSafe for DescribeOrganizationOverviewInput
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