#[non_exhaustive]pub struct DeleteAllowListInput {
pub id: Option<String>,
pub ignore_job_checks: Option<String>,
}
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.id: Option<String>
The unique identifier for the Amazon Macie resource that the request applies to.
ignore_job_checks: Option<String>
Specifies whether to force deletion of the allow list, even if active classification jobs are configured to use the list.
When you try to delete an allow list, Amazon Macie checks for classification jobs that use the list and have a status other than COMPLETE or CANCELLED. By default, Macie rejects your request if any jobs meet these criteria. To skip these checks and delete the list, set this value to true. To delete the list only if no active jobs are configured to use it, set this value to false.
Implementations§
source§impl DeleteAllowListInput
impl DeleteAllowListInput
sourcepub fn id(&self) -> Option<&str>
pub fn id(&self) -> Option<&str>
The unique identifier for the Amazon Macie resource that the request applies to.
sourcepub fn ignore_job_checks(&self) -> Option<&str>
pub fn ignore_job_checks(&self) -> Option<&str>
Specifies whether to force deletion of the allow list, even if active classification jobs are configured to use the list.
When you try to delete an allow list, Amazon Macie checks for classification jobs that use the list and have a status other than COMPLETE or CANCELLED. By default, Macie rejects your request if any jobs meet these criteria. To skip these checks and delete the list, set this value to true. To delete the list only if no active jobs are configured to use it, set this value to false.
source§impl DeleteAllowListInput
impl DeleteAllowListInput
sourcepub fn builder() -> DeleteAllowListInputBuilder
pub fn builder() -> DeleteAllowListInputBuilder
Creates a new builder-style object to manufacture DeleteAllowListInput
.
Trait Implementations§
source§impl Clone for DeleteAllowListInput
impl Clone for DeleteAllowListInput
source§fn clone(&self) -> DeleteAllowListInput
fn clone(&self) -> DeleteAllowListInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DeleteAllowListInput
impl Debug for DeleteAllowListInput
source§impl PartialEq for DeleteAllowListInput
impl PartialEq for DeleteAllowListInput
source§fn eq(&self, other: &DeleteAllowListInput) -> bool
fn eq(&self, other: &DeleteAllowListInput) -> bool
self
and other
values to be equal, and is used
by ==
.