Struct aws_sdk_backup::model::ReportDeliveryChannel
source · [−]#[non_exhaustive]pub struct ReportDeliveryChannel {
pub s3_bucket_name: Option<String>,
pub s3_key_prefix: Option<String>,
pub formats: Option<Vec<String>>,
}
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.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.s3_bucket_name: Option<String>
The unique name of the S3 bucket that receives your reports.
s3_key_prefix: Option<String>
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.
formats: Option<Vec<String>>
A list of the format of your reports: CSV
, JSON
, or both. If not specified, the default format is CSV
.
Implementations
The unique name of the S3 bucket that receives your reports.
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.
Creates a new builder-style object to manufacture ReportDeliveryChannel
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more