Struct aws_sdk_imagebuilder::operation::list_image_build_versions::builders::ListImageBuildVersionsOutputBuilder
source · #[non_exhaustive]pub struct ListImageBuildVersionsOutputBuilder { /* private fields */ }
Expand description
A builder for ListImageBuildVersionsOutput
.
Implementations§
source§impl ListImageBuildVersionsOutputBuilder
impl ListImageBuildVersionsOutputBuilder
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 image build versions.
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 image build versions.
sourcepub fn get_image_summary_list(&self) -> &Option<Vec<ImageSummary>>
pub fn get_image_summary_list(&self) -> &Option<Vec<ImageSummary>>
The list of image build versions.
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) -> ListImageBuildVersionsOutput
pub fn build(self) -> ListImageBuildVersionsOutput
Consumes the builder and constructs a ListImageBuildVersionsOutput
.
Trait Implementations§
source§impl Clone for ListImageBuildVersionsOutputBuilder
impl Clone for ListImageBuildVersionsOutputBuilder
source§fn clone(&self) -> ListImageBuildVersionsOutputBuilder
fn clone(&self) -> ListImageBuildVersionsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListImageBuildVersionsOutputBuilder
impl Default for ListImageBuildVersionsOutputBuilder
source§fn default() -> ListImageBuildVersionsOutputBuilder
fn default() -> ListImageBuildVersionsOutputBuilder
source§impl PartialEq for ListImageBuildVersionsOutputBuilder
impl PartialEq for ListImageBuildVersionsOutputBuilder
source§fn eq(&self, other: &ListImageBuildVersionsOutputBuilder) -> bool
fn eq(&self, other: &ListImageBuildVersionsOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListImageBuildVersionsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListImageBuildVersionsOutputBuilder
impl RefUnwindSafe for ListImageBuildVersionsOutputBuilder
impl Send for ListImageBuildVersionsOutputBuilder
impl Sync for ListImageBuildVersionsOutputBuilder
impl Unpin for ListImageBuildVersionsOutputBuilder
impl UnwindSafe for ListImageBuildVersionsOutputBuilder
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