#[non_exhaustive]pub struct ReportDefinition {
pub report_id: Option<String>,
pub report_description: Option<String>,
pub report_frequency: Option<ReportFrequency>,
pub format: Option<Format>,
pub destination_s3_location: Option<S3Location>,
pub created_at: Option<DateTime>,
pub last_updated_at: Option<DateTime>,
}Expand description
The configuration of a report in AWS Application Cost Profiler.
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.report_id: Option<String>The ID of the report.
report_description: Option<String>Description of the report
report_frequency: Option<ReportFrequency>The cadence at which the report is generated.
format: Option<Format>The format used for the generated reports.
destination_s3_location: Option<S3Location>The location in Amazon Simple Storage Service (Amazon S3) the reports should be saved to.
created_at: Option<DateTime>Timestamp (milliseconds) when this report definition was created.
last_updated_at: Option<DateTime>Timestamp (milliseconds) when this report definition was last updated.
Implementations§
source§impl ReportDefinition
impl ReportDefinition
sourcepub fn report_description(&self) -> Option<&str>
pub fn report_description(&self) -> Option<&str>
Description of the report
sourcepub fn report_frequency(&self) -> Option<&ReportFrequency>
pub fn report_frequency(&self) -> Option<&ReportFrequency>
The cadence at which the report is generated.
sourcepub fn destination_s3_location(&self) -> Option<&S3Location>
pub fn destination_s3_location(&self) -> Option<&S3Location>
The location in Amazon Simple Storage Service (Amazon S3) the reports should be saved to.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
Timestamp (milliseconds) when this report definition was created.
sourcepub fn last_updated_at(&self) -> Option<&DateTime>
pub fn last_updated_at(&self) -> Option<&DateTime>
Timestamp (milliseconds) when this report definition was last updated.
source§impl ReportDefinition
impl ReportDefinition
sourcepub fn builder() -> ReportDefinitionBuilder
pub fn builder() -> ReportDefinitionBuilder
Creates a new builder-style object to manufacture ReportDefinition.
Trait Implementations§
source§impl Clone for ReportDefinition
impl Clone for ReportDefinition
source§fn clone(&self) -> ReportDefinition
fn clone(&self) -> ReportDefinition
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ReportDefinition
impl Debug for ReportDefinition
source§impl PartialEq for ReportDefinition
impl PartialEq for ReportDefinition
source§fn eq(&self, other: &ReportDefinition) -> bool
fn eq(&self, other: &ReportDefinition) -> bool
self and other values to be equal, and is used
by ==.