Struct aws_sdk_datazone::operation::list_subscription_requests::builders::ListSubscriptionRequestsOutputBuilder
source · #[non_exhaustive]pub struct ListSubscriptionRequestsOutputBuilder { /* private fields */ }Expand description
A builder for ListSubscriptionRequestsOutput.
Implementations§
source§impl ListSubscriptionRequestsOutputBuilder
impl ListSubscriptionRequestsOutputBuilder
sourcepub fn items(self, input: SubscriptionRequestSummary) -> Self
pub fn items(self, input: SubscriptionRequestSummary) -> Self
Appends an item to items.
To override the contents of this collection use set_items.
The results of the ListSubscriptionRequests action.
sourcepub fn set_items(self, input: Option<Vec<SubscriptionRequestSummary>>) -> Self
pub fn set_items(self, input: Option<Vec<SubscriptionRequestSummary>>) -> Self
The results of the ListSubscriptionRequests action.
sourcepub fn get_items(&self) -> &Option<Vec<SubscriptionRequestSummary>>
pub fn get_items(&self) -> &Option<Vec<SubscriptionRequestSummary>>
The results of the ListSubscriptionRequests action.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
When the number of subscription requests is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of subscription requests, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListSubscriptionRequests to list the next set of subscription requests.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
When the number of subscription requests is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of subscription requests, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListSubscriptionRequests to list the next set of subscription requests.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
When the number of subscription requests is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of subscription requests, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListSubscriptionRequests to list the next set of subscription requests.
sourcepub fn build(self) -> Result<ListSubscriptionRequestsOutput, BuildError>
pub fn build(self) -> Result<ListSubscriptionRequestsOutput, BuildError>
Consumes the builder and constructs a ListSubscriptionRequestsOutput.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for ListSubscriptionRequestsOutputBuilder
impl Clone for ListSubscriptionRequestsOutputBuilder
source§fn clone(&self) -> ListSubscriptionRequestsOutputBuilder
fn clone(&self) -> ListSubscriptionRequestsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ListSubscriptionRequestsOutputBuilder
impl Default for ListSubscriptionRequestsOutputBuilder
source§fn default() -> ListSubscriptionRequestsOutputBuilder
fn default() -> ListSubscriptionRequestsOutputBuilder
source§impl PartialEq for ListSubscriptionRequestsOutputBuilder
impl PartialEq for ListSubscriptionRequestsOutputBuilder
source§fn eq(&self, other: &ListSubscriptionRequestsOutputBuilder) -> bool
fn eq(&self, other: &ListSubscriptionRequestsOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListSubscriptionRequestsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListSubscriptionRequestsOutputBuilder
impl RefUnwindSafe for ListSubscriptionRequestsOutputBuilder
impl Send for ListSubscriptionRequestsOutputBuilder
impl Sync for ListSubscriptionRequestsOutputBuilder
impl Unpin for ListSubscriptionRequestsOutputBuilder
impl UnwindSafe for ListSubscriptionRequestsOutputBuilder
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