Struct aws_sdk_s3::model::AnalyticsExportDestination
source · #[non_exhaustive]pub struct AnalyticsExportDestination { /* private fields */ }
Expand description
Where to publish the analytics results.
Implementations§
source§impl AnalyticsExportDestination
impl AnalyticsExportDestination
sourcepub fn s3_bucket_destination(&self) -> Option<&AnalyticsS3BucketDestination>
pub fn s3_bucket_destination(&self) -> Option<&AnalyticsS3BucketDestination>
A destination signifying output to an S3 bucket.
source§impl AnalyticsExportDestination
impl AnalyticsExportDestination
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AnalyticsExportDestination
.
Examples found in repository?
src/xml_deser.rs (line 7493)
7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510
pub fn deser_structure_crate_model_analytics_export_destination(
decoder: &mut aws_smithy_xml::decode::ScopedDecoder,
) -> Result<crate::model::AnalyticsExportDestination, aws_smithy_xml::decode::XmlDecodeError> {
#[allow(unused_mut)]
let mut builder = crate::model::AnalyticsExportDestination::builder();
while let Some(mut tag) = decoder.next_tag() {
match tag.start_el() {
s if s.matches("S3BucketDestination") /* S3BucketDestination com.amazonaws.s3#AnalyticsExportDestination$S3BucketDestination */ => {
let var_412 =
Some(
crate::xml_deser::deser_structure_crate_model_analytics_s3_bucket_destination(&mut tag)
?
)
;
builder = builder.set_s3_bucket_destination(var_412);
}
,
_ => {}
}
}
Ok(builder.build())
}
Trait Implementations§
source§impl Clone for AnalyticsExportDestination
impl Clone for AnalyticsExportDestination
source§fn clone(&self) -> AnalyticsExportDestination
fn clone(&self) -> AnalyticsExportDestination
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 more