Struct aws_sdk_workdocs::operation::describe_notification_subscriptions::builders::DescribeNotificationSubscriptionsOutputBuilder
source · #[non_exhaustive]pub struct DescribeNotificationSubscriptionsOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeNotificationSubscriptionsOutput
.
Implementations§
source§impl DescribeNotificationSubscriptionsOutputBuilder
impl DescribeNotificationSubscriptionsOutputBuilder
sourcepub fn subscriptions(self, input: Subscription) -> Self
pub fn subscriptions(self, input: Subscription) -> Self
Appends an item to subscriptions
.
To override the contents of this collection use set_subscriptions
.
The subscriptions.
sourcepub fn set_subscriptions(self, input: Option<Vec<Subscription>>) -> Self
pub fn set_subscriptions(self, input: Option<Vec<Subscription>>) -> Self
The subscriptions.
sourcepub fn get_subscriptions(&self) -> &Option<Vec<Subscription>>
pub fn get_subscriptions(&self) -> &Option<Vec<Subscription>>
The subscriptions.
sourcepub fn marker(self, input: impl Into<String>) -> Self
pub fn marker(self, input: impl Into<String>) -> Self
The marker to use when requesting the next set of results. If there are no additional results, the string is empty.
sourcepub fn set_marker(self, input: Option<String>) -> Self
pub fn set_marker(self, input: Option<String>) -> Self
The marker to use when requesting the next set of results. If there are no additional results, the string is empty.
sourcepub fn get_marker(&self) -> &Option<String>
pub fn get_marker(&self) -> &Option<String>
The marker to use when requesting the next set of results. If there are no additional results, the string is empty.
sourcepub fn build(self) -> DescribeNotificationSubscriptionsOutput
pub fn build(self) -> DescribeNotificationSubscriptionsOutput
Consumes the builder and constructs a DescribeNotificationSubscriptionsOutput
.
Trait Implementations§
source§impl Clone for DescribeNotificationSubscriptionsOutputBuilder
impl Clone for DescribeNotificationSubscriptionsOutputBuilder
source§fn clone(&self) -> DescribeNotificationSubscriptionsOutputBuilder
fn clone(&self) -> DescribeNotificationSubscriptionsOutputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for DescribeNotificationSubscriptionsOutputBuilder
impl Default for DescribeNotificationSubscriptionsOutputBuilder
source§fn default() -> DescribeNotificationSubscriptionsOutputBuilder
fn default() -> DescribeNotificationSubscriptionsOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DescribeNotificationSubscriptionsOutputBuilder
impl PartialEq for DescribeNotificationSubscriptionsOutputBuilder
source§fn eq(&self, other: &DescribeNotificationSubscriptionsOutputBuilder) -> bool
fn eq(&self, other: &DescribeNotificationSubscriptionsOutputBuilder) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeNotificationSubscriptionsOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeNotificationSubscriptionsOutputBuilder
impl RefUnwindSafe for DescribeNotificationSubscriptionsOutputBuilder
impl Send for DescribeNotificationSubscriptionsOutputBuilder
impl Sync for DescribeNotificationSubscriptionsOutputBuilder
impl Unpin for DescribeNotificationSubscriptionsOutputBuilder
impl UnwindSafe for DescribeNotificationSubscriptionsOutputBuilder
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
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.