Struct aws_sdk_codebuild::operation::delete_report_group::builders::DeleteReportGroupFluentBuilder
source · pub struct DeleteReportGroupFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to DeleteReportGroup
.
Deletes a report group. Before you delete a report group, you must delete its reports.
Implementations§
source§impl DeleteReportGroupFluentBuilder
impl DeleteReportGroupFluentBuilder
sourcepub fn as_input(&self) -> &DeleteReportGroupInputBuilder
pub fn as_input(&self) -> &DeleteReportGroupInputBuilder
Access the DeleteReportGroup as a reference.
sourcepub async fn send(
self
) -> Result<DeleteReportGroupOutput, SdkError<DeleteReportGroupError, HttpResponse>>
pub async fn send( self ) -> Result<DeleteReportGroupOutput, SdkError<DeleteReportGroupError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<DeleteReportGroupOutput, DeleteReportGroupError, Self>
pub fn customize( self ) -> CustomizableOperation<DeleteReportGroupOutput, DeleteReportGroupError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn delete_reports(self, input: bool) -> Self
pub fn delete_reports(self, input: bool) -> Self
If true
, deletes any reports that belong to a report group before deleting the report group.
If false
, you must delete any reports in the report group. Use ListReportsForReportGroup to get the reports in a report group. Use DeleteReport to delete the reports. If you call DeleteReportGroup
for a report group that contains one or more reports, an exception is thrown.
sourcepub fn set_delete_reports(self, input: Option<bool>) -> Self
pub fn set_delete_reports(self, input: Option<bool>) -> Self
If true
, deletes any reports that belong to a report group before deleting the report group.
If false
, you must delete any reports in the report group. Use ListReportsForReportGroup to get the reports in a report group. Use DeleteReport to delete the reports. If you call DeleteReportGroup
for a report group that contains one or more reports, an exception is thrown.
sourcepub fn get_delete_reports(&self) -> &Option<bool>
pub fn get_delete_reports(&self) -> &Option<bool>
If true
, deletes any reports that belong to a report group before deleting the report group.
If false
, you must delete any reports in the report group. Use ListReportsForReportGroup to get the reports in a report group. Use DeleteReport to delete the reports. If you call DeleteReportGroup
for a report group that contains one or more reports, an exception is thrown.
Trait Implementations§
source§impl Clone for DeleteReportGroupFluentBuilder
impl Clone for DeleteReportGroupFluentBuilder
source§fn clone(&self) -> DeleteReportGroupFluentBuilder
fn clone(&self) -> DeleteReportGroupFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more