Struct aws_sdk_codebuild::client::fluent_builders::DeleteReportGroup
source · [−]pub struct DeleteReportGroup { /* 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
sourceimpl DeleteReportGroup
impl DeleteReportGroup
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<DeleteReportGroup, AwsResponseRetryClassifier>, SdkError<DeleteReportGroupError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<DeleteReportGroup, AwsResponseRetryClassifier>, SdkError<DeleteReportGroupError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<DeleteReportGroupOutput, SdkError<DeleteReportGroupError>>
pub async fn send(
self
) -> Result<DeleteReportGroupOutput, SdkError<DeleteReportGroupError>>
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 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.
Trait Implementations
sourceimpl Clone for DeleteReportGroup
impl Clone for DeleteReportGroup
sourcefn clone(&self) -> DeleteReportGroup
fn clone(&self) -> DeleteReportGroup
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more