Struct aws_sdk_config::operation::put_configuration_aggregator::PutConfigurationAggregatorInput
source · #[non_exhaustive]pub struct PutConfigurationAggregatorInput {
pub configuration_aggregator_name: Option<String>,
pub account_aggregation_sources: Option<Vec<AccountAggregationSource>>,
pub organization_aggregation_source: Option<OrganizationAggregationSource>,
pub tags: Option<Vec<Tag>>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.configuration_aggregator_name: Option<String>The name of the configuration aggregator.
account_aggregation_sources: Option<Vec<AccountAggregationSource>>A list of AccountAggregationSource object.
organization_aggregation_source: Option<OrganizationAggregationSource>An OrganizationAggregationSource object.
An array of tag object.
Implementations§
source§impl PutConfigurationAggregatorInput
impl PutConfigurationAggregatorInput
sourcepub fn configuration_aggregator_name(&self) -> Option<&str>
pub fn configuration_aggregator_name(&self) -> Option<&str>
The name of the configuration aggregator.
sourcepub fn account_aggregation_sources(&self) -> &[AccountAggregationSource]
pub fn account_aggregation_sources(&self) -> &[AccountAggregationSource]
A list of AccountAggregationSource object.
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_aggregation_sources.is_none().
sourcepub fn organization_aggregation_source(
&self
) -> Option<&OrganizationAggregationSource>
pub fn organization_aggregation_source( &self ) -> Option<&OrganizationAggregationSource>
An OrganizationAggregationSource object.
An array of tag object.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none().
source§impl PutConfigurationAggregatorInput
impl PutConfigurationAggregatorInput
sourcepub fn builder() -> PutConfigurationAggregatorInputBuilder
pub fn builder() -> PutConfigurationAggregatorInputBuilder
Creates a new builder-style object to manufacture PutConfigurationAggregatorInput.
Trait Implementations§
source§impl Clone for PutConfigurationAggregatorInput
impl Clone for PutConfigurationAggregatorInput
source§fn clone(&self) -> PutConfigurationAggregatorInput
fn clone(&self) -> PutConfigurationAggregatorInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl PartialEq for PutConfigurationAggregatorInput
impl PartialEq for PutConfigurationAggregatorInput
source§fn eq(&self, other: &PutConfigurationAggregatorInput) -> bool
fn eq(&self, other: &PutConfigurationAggregatorInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for PutConfigurationAggregatorInput
Auto Trait Implementations§
impl RefUnwindSafe for PutConfigurationAggregatorInput
impl Send for PutConfigurationAggregatorInput
impl Sync for PutConfigurationAggregatorInput
impl Unpin for PutConfigurationAggregatorInput
impl UnwindSafe for PutConfigurationAggregatorInput
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.