Struct aws_sdk_backup::model::ReportDeliveryChannel
source · [−]#[non_exhaustive]pub struct ReportDeliveryChannel { /* private fields */ }
Expand description
Contains information from your report plan about where to deliver your reports, specifically your Amazon S3 bucket name, S3 key prefix, and the formats of your reports.
Implementations
sourceimpl ReportDeliveryChannel
impl ReportDeliveryChannel
sourcepub fn s3_bucket_name(&self) -> Option<&str>
pub fn s3_bucket_name(&self) -> Option<&str>
The unique name of the S3 bucket that receives your reports.
sourcepub fn s3_key_prefix(&self) -> Option<&str>
pub fn s3_key_prefix(&self) -> Option<&str>
The prefix for where Backup Audit Manager delivers your reports to Amazon S3. The prefix is this part of the following path: s3://your-bucket-name/prefix
/Backup/us-west-2/year/month/day/report-name. If not specified, there is no prefix.
sourceimpl ReportDeliveryChannel
impl ReportDeliveryChannel
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ReportDeliveryChannel
.
Trait Implementations
sourceimpl Clone for ReportDeliveryChannel
impl Clone for ReportDeliveryChannel
sourcefn clone(&self) -> ReportDeliveryChannel
fn clone(&self) -> ReportDeliveryChannel
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ReportDeliveryChannel
impl Debug for ReportDeliveryChannel
sourceimpl PartialEq<ReportDeliveryChannel> for ReportDeliveryChannel
impl PartialEq<ReportDeliveryChannel> for ReportDeliveryChannel
sourcefn eq(&self, other: &ReportDeliveryChannel) -> bool
fn eq(&self, other: &ReportDeliveryChannel) -> bool
impl StructuralPartialEq for ReportDeliveryChannel
Auto Trait Implementations
impl RefUnwindSafe for ReportDeliveryChannel
impl Send for ReportDeliveryChannel
impl Sync for ReportDeliveryChannel
impl Unpin for ReportDeliveryChannel
impl UnwindSafe for ReportDeliveryChannel
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more