Struct aws_sdk_config::operation::put_configuration_aggregator::builders::PutConfigurationAggregatorInputBuilder
source · #[non_exhaustive]pub struct PutConfigurationAggregatorInputBuilder { /* private fields */ }Expand description
A builder for PutConfigurationAggregatorInput.
Implementations§
source§impl PutConfigurationAggregatorInputBuilder
impl PutConfigurationAggregatorInputBuilder
sourcepub fn configuration_aggregator_name(self, input: impl Into<String>) -> Self
pub fn configuration_aggregator_name(self, input: impl Into<String>) -> Self
The name of the configuration aggregator.
This field is required.sourcepub fn set_configuration_aggregator_name(self, input: Option<String>) -> Self
pub fn set_configuration_aggregator_name(self, input: Option<String>) -> Self
The name of the configuration aggregator.
sourcepub fn get_configuration_aggregator_name(&self) -> &Option<String>
pub fn get_configuration_aggregator_name(&self) -> &Option<String>
The name of the configuration aggregator.
sourcepub fn account_aggregation_sources(
self,
input: AccountAggregationSource,
) -> Self
pub fn account_aggregation_sources( self, input: AccountAggregationSource, ) -> Self
Appends an item to account_aggregation_sources.
To override the contents of this collection use set_account_aggregation_sources.
A list of AccountAggregationSource object.
sourcepub fn set_account_aggregation_sources(
self,
input: Option<Vec<AccountAggregationSource>>,
) -> Self
pub fn set_account_aggregation_sources( self, input: Option<Vec<AccountAggregationSource>>, ) -> Self
A list of AccountAggregationSource object.
sourcepub fn get_account_aggregation_sources(
&self,
) -> &Option<Vec<AccountAggregationSource>>
pub fn get_account_aggregation_sources( &self, ) -> &Option<Vec<AccountAggregationSource>>
A list of AccountAggregationSource object.
sourcepub fn organization_aggregation_source(
self,
input: OrganizationAggregationSource,
) -> Self
pub fn organization_aggregation_source( self, input: OrganizationAggregationSource, ) -> Self
An OrganizationAggregationSource object.
sourcepub fn set_organization_aggregation_source(
self,
input: Option<OrganizationAggregationSource>,
) -> Self
pub fn set_organization_aggregation_source( self, input: Option<OrganizationAggregationSource>, ) -> Self
An OrganizationAggregationSource object.
sourcepub fn get_organization_aggregation_source(
&self,
) -> &Option<OrganizationAggregationSource>
pub fn get_organization_aggregation_source( &self, ) -> &Option<OrganizationAggregationSource>
An OrganizationAggregationSource object.
Appends an item to tags.
To override the contents of this collection use set_tags.
An array of tag object.
An array of tag object.
An array of tag object.
sourcepub fn build(self) -> Result<PutConfigurationAggregatorInput, BuildError>
pub fn build(self) -> Result<PutConfigurationAggregatorInput, BuildError>
Consumes the builder and constructs a PutConfigurationAggregatorInput.
source§impl PutConfigurationAggregatorInputBuilder
impl PutConfigurationAggregatorInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<PutConfigurationAggregatorOutput, SdkError<PutConfigurationAggregatorError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<PutConfigurationAggregatorOutput, SdkError<PutConfigurationAggregatorError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for PutConfigurationAggregatorInputBuilder
impl Clone for PutConfigurationAggregatorInputBuilder
source§fn clone(&self) -> PutConfigurationAggregatorInputBuilder
fn clone(&self) -> PutConfigurationAggregatorInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for PutConfigurationAggregatorInputBuilder
impl Default for PutConfigurationAggregatorInputBuilder
source§fn default() -> PutConfigurationAggregatorInputBuilder
fn default() -> PutConfigurationAggregatorInputBuilder
source§impl PartialEq for PutConfigurationAggregatorInputBuilder
impl PartialEq for PutConfigurationAggregatorInputBuilder
source§fn eq(&self, other: &PutConfigurationAggregatorInputBuilder) -> bool
fn eq(&self, other: &PutConfigurationAggregatorInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for PutConfigurationAggregatorInputBuilder
Auto Trait Implementations§
impl Freeze for PutConfigurationAggregatorInputBuilder
impl RefUnwindSafe for PutConfigurationAggregatorInputBuilder
impl Send for PutConfigurationAggregatorInputBuilder
impl Sync for PutConfigurationAggregatorInputBuilder
impl Unpin for PutConfigurationAggregatorInputBuilder
impl UnwindSafe for PutConfigurationAggregatorInputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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