Struct aws_sdk_macie2::input::UpdateAllowListInput
source · [−]#[non_exhaustive]pub struct UpdateAllowListInput { /* private fields */ }
Implementations
sourceimpl UpdateAllowListInput
impl UpdateAllowListInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateAllowList, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateAllowList, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateAllowList
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateAllowListInput
.
sourceimpl UpdateAllowListInput
impl UpdateAllowListInput
sourcepub fn criteria(&self) -> Option<&AllowListCriteria>
pub fn criteria(&self) -> Option<&AllowListCriteria>
The criteria that specify the text or text pattern to ignore. The criteria can be the location and name of an S3 object that lists specific text to ignore (s3WordsList), or a regular expression that defines a text pattern to ignore (regex).
You can change a list's underlying criteria, such as the name of the S3 object or the regular expression to use. However, you can't change the type from s3WordsList to regex or the other way around.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A custom description of the allow list. The description can contain as many as 512 characters.
Trait Implementations
sourceimpl Clone for UpdateAllowListInput
impl Clone for UpdateAllowListInput
sourcefn clone(&self) -> UpdateAllowListInput
fn clone(&self) -> UpdateAllowListInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for UpdateAllowListInput
impl Debug for UpdateAllowListInput
sourceimpl PartialEq<UpdateAllowListInput> for UpdateAllowListInput
impl PartialEq<UpdateAllowListInput> for UpdateAllowListInput
sourcefn eq(&self, other: &UpdateAllowListInput) -> bool
fn eq(&self, other: &UpdateAllowListInput) -> bool
impl StructuralPartialEq for UpdateAllowListInput
Auto Trait Implementations
impl RefUnwindSafe for UpdateAllowListInput
impl Send for UpdateAllowListInput
impl Sync for UpdateAllowListInput
impl Unpin for UpdateAllowListInput
impl UnwindSafe for UpdateAllowListInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more