Struct aws_sdk_applicationcostprofiler::operation::update_report_definition::builders::UpdateReportDefinitionInputBuilder
source · #[non_exhaustive]pub struct UpdateReportDefinitionInputBuilder { /* private fields */ }Expand description
A builder for UpdateReportDefinitionInput.
Implementations§
source§impl UpdateReportDefinitionInputBuilder
impl UpdateReportDefinitionInputBuilder
sourcepub fn report_id(self, input: impl Into<String>) -> Self
pub fn report_id(self, input: impl Into<String>) -> Self
Required. ID of the report to update.
This field is required.sourcepub fn set_report_id(self, input: Option<String>) -> Self
pub fn set_report_id(self, input: Option<String>) -> Self
Required. ID of the report to update.
sourcepub fn get_report_id(&self) -> &Option<String>
pub fn get_report_id(&self) -> &Option<String>
Required. ID of the report to update.
sourcepub fn report_description(self, input: impl Into<String>) -> Self
pub fn report_description(self, input: impl Into<String>) -> Self
Required. Description of the report.
This field is required.sourcepub fn set_report_description(self, input: Option<String>) -> Self
pub fn set_report_description(self, input: Option<String>) -> Self
Required. Description of the report.
sourcepub fn get_report_description(&self) -> &Option<String>
pub fn get_report_description(&self) -> &Option<String>
Required. Description of the report.
sourcepub fn report_frequency(self, input: ReportFrequency) -> Self
pub fn report_frequency(self, input: ReportFrequency) -> Self
Required. The cadence to generate the report.
This field is required.sourcepub fn set_report_frequency(self, input: Option<ReportFrequency>) -> Self
pub fn set_report_frequency(self, input: Option<ReportFrequency>) -> Self
Required. The cadence to generate the report.
sourcepub fn get_report_frequency(&self) -> &Option<ReportFrequency>
pub fn get_report_frequency(&self) -> &Option<ReportFrequency>
Required. The cadence to generate the report.
sourcepub fn format(self, input: Format) -> Self
pub fn format(self, input: Format) -> Self
Required. The format to use for the generated report.
This field is required.sourcepub fn set_format(self, input: Option<Format>) -> Self
pub fn set_format(self, input: Option<Format>) -> Self
Required. The format to use for the generated report.
sourcepub fn get_format(&self) -> &Option<Format>
pub fn get_format(&self) -> &Option<Format>
Required. The format to use for the generated report.
sourcepub fn destination_s3_location(self, input: S3Location) -> Self
pub fn destination_s3_location(self, input: S3Location) -> Self
Required. Amazon Simple Storage Service (Amazon S3) location where Application Cost Profiler uploads the report.
This field is required.sourcepub fn set_destination_s3_location(self, input: Option<S3Location>) -> Self
pub fn set_destination_s3_location(self, input: Option<S3Location>) -> Self
Required. Amazon Simple Storage Service (Amazon S3) location where Application Cost Profiler uploads the report.
sourcepub fn get_destination_s3_location(&self) -> &Option<S3Location>
pub fn get_destination_s3_location(&self) -> &Option<S3Location>
Required. Amazon Simple Storage Service (Amazon S3) location where Application Cost Profiler uploads the report.
sourcepub fn build(self) -> Result<UpdateReportDefinitionInput, BuildError>
pub fn build(self) -> Result<UpdateReportDefinitionInput, BuildError>
Consumes the builder and constructs a UpdateReportDefinitionInput.
source§impl UpdateReportDefinitionInputBuilder
impl UpdateReportDefinitionInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateReportDefinitionOutput, SdkError<UpdateReportDefinitionError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateReportDefinitionOutput, SdkError<UpdateReportDefinitionError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateReportDefinitionInputBuilder
impl Clone for UpdateReportDefinitionInputBuilder
source§fn clone(&self) -> UpdateReportDefinitionInputBuilder
fn clone(&self) -> UpdateReportDefinitionInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for UpdateReportDefinitionInputBuilder
impl Default for UpdateReportDefinitionInputBuilder
source§fn default() -> UpdateReportDefinitionInputBuilder
fn default() -> UpdateReportDefinitionInputBuilder
source§impl PartialEq for UpdateReportDefinitionInputBuilder
impl PartialEq for UpdateReportDefinitionInputBuilder
source§fn eq(&self, other: &UpdateReportDefinitionInputBuilder) -> bool
fn eq(&self, other: &UpdateReportDefinitionInputBuilder) -> bool
self and other values to be equal, and is used
by ==.