Struct aws_sdk_macie2::operation::list_managed_data_identifiers::builders::ListManagedDataIdentifiersOutputBuilder
source · #[non_exhaustive]pub struct ListManagedDataIdentifiersOutputBuilder { /* private fields */ }
Expand description
A builder for ListManagedDataIdentifiersOutput
.
Implementations§
source§impl ListManagedDataIdentifiersOutputBuilder
impl ListManagedDataIdentifiersOutputBuilder
sourcepub fn items(self, input: ManagedDataIdentifierSummary) -> Self
pub fn items(self, input: ManagedDataIdentifierSummary) -> Self
Appends an item to items
.
To override the contents of this collection use set_items
.
An array of objects, one for each managed data identifier.
sourcepub fn set_items(self, input: Option<Vec<ManagedDataIdentifierSummary>>) -> Self
pub fn set_items(self, input: Option<Vec<ManagedDataIdentifierSummary>>) -> Self
An array of objects, one for each managed data identifier.
sourcepub fn get_items(&self) -> &Option<Vec<ManagedDataIdentifierSummary>>
pub fn get_items(&self) -> &Option<Vec<ManagedDataIdentifierSummary>>
An array of objects, one for each managed data identifier.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The string to use in a subsequent request to get the next page of results in a paginated response. This value is null if there are no additional pages.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The string to use in a subsequent request to get the next page of results in a paginated response. This value is null if there are no additional pages.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The string to use in a subsequent request to get the next page of results in a paginated response. This value is null if there are no additional pages.
sourcepub fn build(self) -> ListManagedDataIdentifiersOutput
pub fn build(self) -> ListManagedDataIdentifiersOutput
Consumes the builder and constructs a ListManagedDataIdentifiersOutput
.
Trait Implementations§
source§impl Clone for ListManagedDataIdentifiersOutputBuilder
impl Clone for ListManagedDataIdentifiersOutputBuilder
source§fn clone(&self) -> ListManagedDataIdentifiersOutputBuilder
fn clone(&self) -> ListManagedDataIdentifiersOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListManagedDataIdentifiersOutputBuilder
impl Default for ListManagedDataIdentifiersOutputBuilder
source§fn default() -> ListManagedDataIdentifiersOutputBuilder
fn default() -> ListManagedDataIdentifiersOutputBuilder
source§impl PartialEq for ListManagedDataIdentifiersOutputBuilder
impl PartialEq for ListManagedDataIdentifiersOutputBuilder
source§fn eq(&self, other: &ListManagedDataIdentifiersOutputBuilder) -> bool
fn eq(&self, other: &ListManagedDataIdentifiersOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListManagedDataIdentifiersOutputBuilder
Auto Trait Implementations§
impl Freeze for ListManagedDataIdentifiersOutputBuilder
impl RefUnwindSafe for ListManagedDataIdentifiersOutputBuilder
impl Send for ListManagedDataIdentifiersOutputBuilder
impl Sync for ListManagedDataIdentifiersOutputBuilder
impl Unpin for ListManagedDataIdentifiersOutputBuilder
impl UnwindSafe for ListManagedDataIdentifiersOutputBuilder
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