Struct aws_sdk_devopsguru::operation::describe_organization_overview::builders::DescribeOrganizationOverviewInputBuilder
source · #[non_exhaustive]pub struct DescribeOrganizationOverviewInputBuilder { /* private fields */ }
Expand description
A builder for DescribeOrganizationOverviewInput
.
Implementations§
source§impl DescribeOrganizationOverviewInputBuilder
impl DescribeOrganizationOverviewInputBuilder
sourcepub fn from_time(self, input: DateTime) -> Self
pub fn from_time(self, input: DateTime) -> Self
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.
This field is required.sourcepub fn set_from_time(self, input: Option<DateTime>) -> Self
pub fn set_from_time(self, input: Option<DateTime>) -> Self
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 get_from_time(&self) -> &Option<DateTime>
pub fn get_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, input: DateTime) -> Self
pub fn to_time(self, input: DateTime) -> Self
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 set_to_time(self, input: Option<DateTime>) -> Self
pub fn set_to_time(self, input: Option<DateTime>) -> Self
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 get_to_time(&self) -> &Option<DateTime>
pub fn get_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, input: impl Into<String>) -> Self
pub fn account_ids(self, input: impl Into<String>) -> Self
Appends an item to account_ids
.
To override the contents of this collection use set_account_ids
.
The ID of the Amazon Web Services account.
sourcepub fn set_account_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_account_ids(self, input: Option<Vec<String>>) -> Self
The ID of the Amazon Web Services account.
sourcepub fn get_account_ids(&self) -> &Option<Vec<String>>
pub fn get_account_ids(&self) -> &Option<Vec<String>>
The ID of the Amazon Web Services account.
sourcepub fn organizational_unit_ids(self, input: impl Into<String>) -> Self
pub fn organizational_unit_ids(self, input: impl Into<String>) -> Self
Appends an item to organizational_unit_ids
.
To override the contents of this collection use set_organizational_unit_ids
.
The ID of the organizational unit.
sourcepub fn set_organizational_unit_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_organizational_unit_ids(self, input: Option<Vec<String>>) -> Self
The ID of the organizational unit.
sourcepub fn get_organizational_unit_ids(&self) -> &Option<Vec<String>>
pub fn get_organizational_unit_ids(&self) -> &Option<Vec<String>>
The ID of the organizational unit.
sourcepub fn build(self) -> Result<DescribeOrganizationOverviewInput, BuildError>
pub fn build(self) -> Result<DescribeOrganizationOverviewInput, BuildError>
Consumes the builder and constructs a DescribeOrganizationOverviewInput
.
source§impl DescribeOrganizationOverviewInputBuilder
impl DescribeOrganizationOverviewInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<DescribeOrganizationOverviewOutput, SdkError<DescribeOrganizationOverviewError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<DescribeOrganizationOverviewOutput, SdkError<DescribeOrganizationOverviewError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DescribeOrganizationOverviewInputBuilder
impl Clone for DescribeOrganizationOverviewInputBuilder
source§fn clone(&self) -> DescribeOrganizationOverviewInputBuilder
fn clone(&self) -> DescribeOrganizationOverviewInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DescribeOrganizationOverviewInputBuilder
impl Default for DescribeOrganizationOverviewInputBuilder
source§fn default() -> DescribeOrganizationOverviewInputBuilder
fn default() -> DescribeOrganizationOverviewInputBuilder
source§impl PartialEq for DescribeOrganizationOverviewInputBuilder
impl PartialEq for DescribeOrganizationOverviewInputBuilder
source§fn eq(&self, other: &DescribeOrganizationOverviewInputBuilder) -> bool
fn eq(&self, other: &DescribeOrganizationOverviewInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeOrganizationOverviewInputBuilder
Auto Trait Implementations§
impl Freeze for DescribeOrganizationOverviewInputBuilder
impl RefUnwindSafe for DescribeOrganizationOverviewInputBuilder
impl Send for DescribeOrganizationOverviewInputBuilder
impl Sync for DescribeOrganizationOverviewInputBuilder
impl Unpin for DescribeOrganizationOverviewInputBuilder
impl UnwindSafe for DescribeOrganizationOverviewInputBuilder
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