Struct aws_sdk_appflow::types::AggregationConfig
source · #[non_exhaustive]pub struct AggregationConfig { /* private fields */ }
Expand description
The aggregation settings that you can use to customize the output format of your flow data.
Implementations§
source§impl AggregationConfig
impl AggregationConfig
sourcepub fn aggregation_type(&self) -> Option<&AggregationType>
pub fn aggregation_type(&self) -> Option<&AggregationType>
Specifies whether Amazon AppFlow aggregates the flow records into a single file, or leave them unaggregated.
sourcepub fn target_file_size(&self) -> Option<i64>
pub fn target_file_size(&self) -> Option<i64>
The desired file size, in MB, for each output file that Amazon AppFlow writes to the flow destination. For each file, Amazon AppFlow attempts to achieve the size that you specify. The actual file sizes might differ from this target based on the number and size of the records that each file contains.
source§impl AggregationConfig
impl AggregationConfig
sourcepub fn builder() -> AggregationConfigBuilder
pub fn builder() -> AggregationConfigBuilder
Creates a new builder-style object to manufacture AggregationConfig
.
Trait Implementations§
source§impl Clone for AggregationConfig
impl Clone for AggregationConfig
source§fn clone(&self) -> AggregationConfig
fn clone(&self) -> AggregationConfig
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 Debug for AggregationConfig
impl Debug for AggregationConfig
source§impl PartialEq<AggregationConfig> for AggregationConfig
impl PartialEq<AggregationConfig> for AggregationConfig
source§fn eq(&self, other: &AggregationConfig) -> bool
fn eq(&self, other: &AggregationConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AggregationConfig
Auto Trait Implementations§
impl RefUnwindSafe for AggregationConfig
impl Send for AggregationConfig
impl Sync for AggregationConfig
impl Unpin for AggregationConfig
impl UnwindSafe for AggregationConfig
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