#[non_exhaustive]pub struct NotificationRecipientTypeBuilder { /* private fields */ }
Expand description
A builder for NotificationRecipientType
.
Implementations§
source§impl NotificationRecipientTypeBuilder
impl NotificationRecipientTypeBuilder
Adds a key-value pair to user_tags
.
To override the contents of this collection use set_user_tags
.
The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }. Amazon Connect users with the specified tags will be notified.
The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }. Amazon Connect users with the specified tags will be notified.
The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }. Amazon Connect users with the specified tags will be notified.
sourcepub fn user_ids(self, input: impl Into<String>) -> Self
pub fn user_ids(self, input: impl Into<String>) -> Self
Appends an item to user_ids
.
To override the contents of this collection use set_user_ids
.
A list of user IDs.
sourcepub fn set_user_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_user_ids(self, input: Option<Vec<String>>) -> Self
A list of user IDs.
sourcepub fn get_user_ids(&self) -> &Option<Vec<String>>
pub fn get_user_ids(&self) -> &Option<Vec<String>>
A list of user IDs.
sourcepub fn build(self) -> NotificationRecipientType
pub fn build(self) -> NotificationRecipientType
Consumes the builder and constructs a NotificationRecipientType
.
Trait Implementations§
source§impl Clone for NotificationRecipientTypeBuilder
impl Clone for NotificationRecipientTypeBuilder
source§fn clone(&self) -> NotificationRecipientTypeBuilder
fn clone(&self) -> NotificationRecipientTypeBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for NotificationRecipientTypeBuilder
impl Default for NotificationRecipientTypeBuilder
source§fn default() -> NotificationRecipientTypeBuilder
fn default() -> NotificationRecipientTypeBuilder
source§impl PartialEq for NotificationRecipientTypeBuilder
impl PartialEq for NotificationRecipientTypeBuilder
source§fn eq(&self, other: &NotificationRecipientTypeBuilder) -> bool
fn eq(&self, other: &NotificationRecipientTypeBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for NotificationRecipientTypeBuilder
Auto Trait Implementations§
impl Freeze for NotificationRecipientTypeBuilder
impl RefUnwindSafe for NotificationRecipientTypeBuilder
impl Send for NotificationRecipientTypeBuilder
impl Sync for NotificationRecipientTypeBuilder
impl Unpin for NotificationRecipientTypeBuilder
impl UnwindSafe for NotificationRecipientTypeBuilder
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