#[non_exhaustive]pub struct ListBlueprintsInputBuilder { /* private fields */ }Expand description
A builder for ListBlueprintsInput.
Implementations§
Source§impl ListBlueprintsInputBuilder
impl ListBlueprintsInputBuilder
Sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A continuation token, if this is a continuation request.
Sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A continuation token, if this is a continuation request.
Sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A continuation token, if this is a continuation request.
Sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum size of a list to return.
Sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum size of a list to return.
Sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum size of a list to return.
Adds a key-value pair to tags.
To override the contents of this collection use set_tags.
Filters the list by an Amazon Web Services resource tag.
Filters the list by an Amazon Web Services resource tag.
Filters the list by an Amazon Web Services resource tag.
Sourcepub fn build(self) -> Result<ListBlueprintsInput, BuildError>
pub fn build(self) -> Result<ListBlueprintsInput, BuildError>
Consumes the builder and constructs a ListBlueprintsInput.
Source§impl ListBlueprintsInputBuilder
impl ListBlueprintsInputBuilder
Sourcepub async fn send_with(
self,
client: &Client,
) -> Result<ListBlueprintsOutput, SdkError<ListBlueprintsError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<ListBlueprintsOutput, SdkError<ListBlueprintsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
Source§impl Clone for ListBlueprintsInputBuilder
impl Clone for ListBlueprintsInputBuilder
Source§fn clone(&self) -> ListBlueprintsInputBuilder
fn clone(&self) -> ListBlueprintsInputBuilder
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ListBlueprintsInputBuilder
impl Debug for ListBlueprintsInputBuilder
Source§impl Default for ListBlueprintsInputBuilder
impl Default for ListBlueprintsInputBuilder
Source§fn default() -> ListBlueprintsInputBuilder
fn default() -> ListBlueprintsInputBuilder
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListBlueprintsInputBuilder
impl PartialEq for ListBlueprintsInputBuilder
Source§fn eq(&self, other: &ListBlueprintsInputBuilder) -> bool
fn eq(&self, other: &ListBlueprintsInputBuilder) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListBlueprintsInputBuilder
Auto Trait Implementations§
impl Freeze for ListBlueprintsInputBuilder
impl RefUnwindSafe for ListBlueprintsInputBuilder
impl Send for ListBlueprintsInputBuilder
impl Sync for ListBlueprintsInputBuilder
impl Unpin for ListBlueprintsInputBuilder
impl UnsafeUnpin for ListBlueprintsInputBuilder
impl UnwindSafe for ListBlueprintsInputBuilder
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§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.