#[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 ==
.impl StructuralPartialEq for DeleteReportGroupInput
Auto Trait Implementations§
impl Freeze for DeleteReportGroupInput
impl RefUnwindSafe for DeleteReportGroupInput
impl Send for DeleteReportGroupInput
impl Sync for DeleteReportGroupInput
impl Unpin for DeleteReportGroupInput
impl UnwindSafe for DeleteReportGroupInput
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
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more