#[non_exhaustive]pub struct GetAllowListOutput {
pub arn: Option<String>,
pub created_at: Option<DateTime>,
pub criteria: Option<AllowListCriteria>,
pub description: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
pub status: Option<AllowListStatus>,
pub tags: Option<HashMap<String, String>>,
pub updated_at: Option<DateTime>,
/* private fields */
}
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 Amazon Resource Name (ARN) of the allow list.
created_at: Option<DateTime>
The date and time, in UTC and extended ISO 8601 format, when the allow list was created in Amazon Macie.
criteria: 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 (regex) that defines a text pattern to ignore.
description: Option<String>
The custom description of the allow list.
id: Option<String>
The unique identifier for the allow list.
name: Option<String>
The custom name of the allow list.
status: Option<AllowListStatus>
The current status of the allow list, which indicates whether Amazon Macie can access and use the list's criteria.
A map of key-value pairs that specifies which tags (keys and values) are associated with the allow list.
updated_at: Option<DateTime>
The date and time, in UTC and extended ISO 8601 format, when the allow list's settings were most recently changed in Amazon Macie.
Implementations§
source§impl GetAllowListOutput
impl GetAllowListOutput
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The date and time, in UTC and extended ISO 8601 format, when the allow list was created in Amazon Macie.
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 (regex) that defines a text pattern to ignore.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The custom description of the allow list.
sourcepub fn status(&self) -> Option<&AllowListStatus>
pub fn status(&self) -> Option<&AllowListStatus>
The current status of the allow list, which indicates whether Amazon Macie can access and use the list's criteria.
A map of key-value pairs that specifies which tags (keys and values) are associated with the allow list.
sourcepub fn updated_at(&self) -> Option<&DateTime>
pub fn updated_at(&self) -> Option<&DateTime>
The date and time, in UTC and extended ISO 8601 format, when the allow list's settings were most recently changed in Amazon Macie.
source§impl GetAllowListOutput
impl GetAllowListOutput
sourcepub fn builder() -> GetAllowListOutputBuilder
pub fn builder() -> GetAllowListOutputBuilder
Creates a new builder-style object to manufacture GetAllowListOutput
.
Trait Implementations§
source§impl Clone for GetAllowListOutput
impl Clone for GetAllowListOutput
source§fn clone(&self) -> GetAllowListOutput
fn clone(&self) -> GetAllowListOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetAllowListOutput
impl Debug for GetAllowListOutput
source§impl PartialEq for GetAllowListOutput
impl PartialEq for GetAllowListOutput
source§fn eq(&self, other: &GetAllowListOutput) -> bool
fn eq(&self, other: &GetAllowListOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetAllowListOutput
impl RequestId for GetAllowListOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.