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 ==
.