Struct aws_sdk_imagebuilder::operation::list_image_pipelines::builders::ListImagePipelinesOutputBuilder
source · #[non_exhaustive]pub struct ListImagePipelinesOutputBuilder { /* private fields */ }
Expand description
A builder for ListImagePipelinesOutput
.
Implementations§
source§impl ListImagePipelinesOutputBuilder
impl ListImagePipelinesOutputBuilder
sourcepub fn request_id(self, input: impl Into<String>) -> Self
pub fn request_id(self, input: impl Into<String>) -> Self
The request ID that uniquely identifies this request.
sourcepub fn set_request_id(self, input: Option<String>) -> Self
pub fn set_request_id(self, input: Option<String>) -> Self
The request ID that uniquely identifies this request.
sourcepub fn get_request_id(&self) -> &Option<String>
pub fn get_request_id(&self) -> &Option<String>
The request ID that uniquely identifies this request.
sourcepub fn image_pipeline_list(self, input: ImagePipeline) -> Self
pub fn image_pipeline_list(self, input: ImagePipeline) -> Self
Appends an item to image_pipeline_list
.
To override the contents of this collection use set_image_pipeline_list
.
The list of image pipelines.
sourcepub fn set_image_pipeline_list(self, input: Option<Vec<ImagePipeline>>) -> Self
pub fn set_image_pipeline_list(self, input: Option<Vec<ImagePipeline>>) -> Self
The list of image pipelines.
sourcepub fn get_image_pipeline_list(&self) -> &Option<Vec<ImagePipeline>>
pub fn get_image_pipeline_list(&self) -> &Option<Vec<ImagePipeline>>
The list of image pipelines.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The next token used for paginated responses. When this field isn't empty, there are additional elements that the service hasn't included in this request. Use this token with the next request to retrieve additional objects.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The next token used for paginated responses. When this field isn't empty, there are additional elements that the service hasn't included in this request. Use this token with the next request to retrieve additional objects.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The next token used for paginated responses. When this field isn't empty, there are additional elements that the service hasn't included in this request. Use this token with the next request to retrieve additional objects.
sourcepub fn build(self) -> ListImagePipelinesOutput
pub fn build(self) -> ListImagePipelinesOutput
Consumes the builder and constructs a ListImagePipelinesOutput
.
Trait Implementations§
source§impl Clone for ListImagePipelinesOutputBuilder
impl Clone for ListImagePipelinesOutputBuilder
source§fn clone(&self) -> ListImagePipelinesOutputBuilder
fn clone(&self) -> ListImagePipelinesOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListImagePipelinesOutputBuilder
impl Default for ListImagePipelinesOutputBuilder
source§fn default() -> ListImagePipelinesOutputBuilder
fn default() -> ListImagePipelinesOutputBuilder
source§impl PartialEq for ListImagePipelinesOutputBuilder
impl PartialEq for ListImagePipelinesOutputBuilder
source§fn eq(&self, other: &ListImagePipelinesOutputBuilder) -> bool
fn eq(&self, other: &ListImagePipelinesOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListImagePipelinesOutputBuilder
Auto Trait Implementations§
impl Freeze for ListImagePipelinesOutputBuilder
impl RefUnwindSafe for ListImagePipelinesOutputBuilder
impl Send for ListImagePipelinesOutputBuilder
impl Sync for ListImagePipelinesOutputBuilder
impl Unpin for ListImagePipelinesOutputBuilder
impl UnwindSafe for ListImagePipelinesOutputBuilder
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