#[non_exhaustive]pub struct BatchGetCustomDataIdentifierSummary {
pub arn: Option<String>,
pub created_at: Option<DateTime>,
pub deleted: Option<bool>,
pub description: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
}
Expand description
Provides information about a custom data identifier.
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 custom data identifier.
created_at: Option<DateTime>
The date and time, in UTC and extended ISO 8601 format, when the custom data identifier was created.
deleted: Option<bool>
Specifies whether the custom data identifier was deleted. If you delete a custom data identifier, Amazon Macie doesn't delete it permanently. Instead, it soft deletes the identifier.
description: Option<String>
The custom description of the custom data identifier.
id: Option<String>
The unique identifier for the custom data identifier.
name: Option<String>
The custom name of the custom data identifier.
Implementations§
source§impl BatchGetCustomDataIdentifierSummary
impl BatchGetCustomDataIdentifierSummary
sourcepub fn arn(&self) -> Option<&str>
pub fn arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the custom data identifier.
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 custom data identifier was created.
sourcepub fn deleted(&self) -> Option<bool>
pub fn deleted(&self) -> Option<bool>
Specifies whether the custom data identifier was deleted. If you delete a custom data identifier, Amazon Macie doesn't delete it permanently. Instead, it soft deletes the identifier.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The custom description of the custom data identifier.
source§impl BatchGetCustomDataIdentifierSummary
impl BatchGetCustomDataIdentifierSummary
sourcepub fn builder() -> BatchGetCustomDataIdentifierSummaryBuilder
pub fn builder() -> BatchGetCustomDataIdentifierSummaryBuilder
Creates a new builder-style object to manufacture BatchGetCustomDataIdentifierSummary
.
Trait Implementations§
source§impl Clone for BatchGetCustomDataIdentifierSummary
impl Clone for BatchGetCustomDataIdentifierSummary
source§fn clone(&self) -> BatchGetCustomDataIdentifierSummary
fn clone(&self) -> BatchGetCustomDataIdentifierSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for BatchGetCustomDataIdentifierSummary
impl PartialEq for BatchGetCustomDataIdentifierSummary
source§fn eq(&self, other: &BatchGetCustomDataIdentifierSummary) -> bool
fn eq(&self, other: &BatchGetCustomDataIdentifierSummary) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for BatchGetCustomDataIdentifierSummary
Auto Trait Implementations§
impl Freeze for BatchGetCustomDataIdentifierSummary
impl RefUnwindSafe for BatchGetCustomDataIdentifierSummary
impl Send for BatchGetCustomDataIdentifierSummary
impl Sync for BatchGetCustomDataIdentifierSummary
impl Unpin for BatchGetCustomDataIdentifierSummary
impl UnwindSafe for BatchGetCustomDataIdentifierSummary
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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