Struct aws_sdk_imagebuilder::operation::list_image_pipeline_images::builders::ListImagePipelineImagesOutputBuilder
source · #[non_exhaustive]pub struct ListImagePipelineImagesOutputBuilder { /* private fields */ }
Expand description
A builder for ListImagePipelineImagesOutput
.
Implementations§
source§impl ListImagePipelineImagesOutputBuilder
impl ListImagePipelineImagesOutputBuilder
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_summary_list(self, input: ImageSummary) -> Self
pub fn image_summary_list(self, input: ImageSummary) -> Self
Appends an item to image_summary_list
.
To override the contents of this collection use set_image_summary_list
.
The list of images built by this pipeline.
sourcepub fn set_image_summary_list(self, input: Option<Vec<ImageSummary>>) -> Self
pub fn set_image_summary_list(self, input: Option<Vec<ImageSummary>>) -> Self
The list of images built by this pipeline.
sourcepub fn get_image_summary_list(&self) -> &Option<Vec<ImageSummary>>
pub fn get_image_summary_list(&self) -> &Option<Vec<ImageSummary>>
The list of images built by this pipeline.
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) -> ListImagePipelineImagesOutput
pub fn build(self) -> ListImagePipelineImagesOutput
Consumes the builder and constructs a ListImagePipelineImagesOutput
.
Trait Implementations§
source§impl Clone for ListImagePipelineImagesOutputBuilder
impl Clone for ListImagePipelineImagesOutputBuilder
source§fn clone(&self) -> ListImagePipelineImagesOutputBuilder
fn clone(&self) -> ListImagePipelineImagesOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListImagePipelineImagesOutputBuilder
impl Default for ListImagePipelineImagesOutputBuilder
source§fn default() -> ListImagePipelineImagesOutputBuilder
fn default() -> ListImagePipelineImagesOutputBuilder
source§impl PartialEq for ListImagePipelineImagesOutputBuilder
impl PartialEq for ListImagePipelineImagesOutputBuilder
source§fn eq(&self, other: &ListImagePipelineImagesOutputBuilder) -> bool
fn eq(&self, other: &ListImagePipelineImagesOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListImagePipelineImagesOutputBuilder
Auto Trait Implementations§
impl Freeze for ListImagePipelineImagesOutputBuilder
impl RefUnwindSafe for ListImagePipelineImagesOutputBuilder
impl Send for ListImagePipelineImagesOutputBuilder
impl Sync for ListImagePipelineImagesOutputBuilder
impl Unpin for ListImagePipelineImagesOutputBuilder
impl UnwindSafe for ListImagePipelineImagesOutputBuilder
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