#[non_exhaustive]pub struct DeleteReportGroupInput {
pub arn: Option<String>,
pub delete_reports: Option<bool>,
}
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.arn: Option<String>
The ARN of the report group to delete.
delete_reports: 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.
Implementations§
source§impl DeleteReportGroupInput
impl DeleteReportGroupInput
sourcepub fn delete_reports(&self) -> Option<bool>
pub fn 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.
source§impl DeleteReportGroupInput
impl DeleteReportGroupInput
sourcepub fn builder() -> DeleteReportGroupInputBuilder
pub fn builder() -> DeleteReportGroupInputBuilder
Creates a new builder-style object to manufacture DeleteReportGroupInput
.
Trait Implementations§
source§impl Clone for DeleteReportGroupInput
impl Clone for DeleteReportGroupInput
source§fn clone(&self) -> DeleteReportGroupInput
fn clone(&self) -> DeleteReportGroupInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DeleteReportGroupInput
impl Debug for DeleteReportGroupInput
source§impl PartialEq for DeleteReportGroupInput
impl PartialEq for DeleteReportGroupInput
source§fn eq(&self, other: &DeleteReportGroupInput) -> bool
fn eq(&self, other: &DeleteReportGroupInput) -> bool
self
and other
values to be equal, and is used
by ==
.