Struct aws_sdk_applicationcostprofiler::operation::update_report_definition::UpdateReportDefinitionInput
source · #[non_exhaustive]pub struct UpdateReportDefinitionInput {
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>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.report_id: Option<String>Required. ID of the report to update.
report_description: Option<String>Required. Description of the report.
report_frequency: Option<ReportFrequency>Required. The cadence to generate the report.
format: Option<Format>Required. The format to use for the generated report.
destination_s3_location: Option<S3Location>Required. Amazon Simple Storage Service (Amazon S3) location where Application Cost Profiler uploads the report.
Implementations§
source§impl UpdateReportDefinitionInput
impl UpdateReportDefinitionInput
sourcepub fn report_description(&self) -> Option<&str>
pub fn report_description(&self) -> Option<&str>
Required. Description of the report.
sourcepub fn report_frequency(&self) -> Option<&ReportFrequency>
pub fn report_frequency(&self) -> Option<&ReportFrequency>
Required. The cadence to generate the report.
sourcepub fn destination_s3_location(&self) -> Option<&S3Location>
pub fn destination_s3_location(&self) -> Option<&S3Location>
Required. Amazon Simple Storage Service (Amazon S3) location where Application Cost Profiler uploads the report.
source§impl UpdateReportDefinitionInput
impl UpdateReportDefinitionInput
sourcepub fn builder() -> UpdateReportDefinitionInputBuilder
pub fn builder() -> UpdateReportDefinitionInputBuilder
Creates a new builder-style object to manufacture UpdateReportDefinitionInput.
Trait Implementations§
source§impl Clone for UpdateReportDefinitionInput
impl Clone for UpdateReportDefinitionInput
source§fn clone(&self) -> UpdateReportDefinitionInput
fn clone(&self) -> UpdateReportDefinitionInput
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 UpdateReportDefinitionInput
impl Debug for UpdateReportDefinitionInput
source§impl PartialEq for UpdateReportDefinitionInput
impl PartialEq for UpdateReportDefinitionInput
source§fn eq(&self, other: &UpdateReportDefinitionInput) -> bool
fn eq(&self, other: &UpdateReportDefinitionInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateReportDefinitionInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateReportDefinitionInput
impl Send for UpdateReportDefinitionInput
impl Sync for UpdateReportDefinitionInput
impl Unpin for UpdateReportDefinitionInput
impl UnwindSafe for UpdateReportDefinitionInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.