pub struct ListImageBuildVersionsRequest {
pub filters: Option<Vec<Filter>>,
pub image_version_arn: String,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§filters: Option<Vec<Filter>>
The filters.
image_version_arn: String
The Amazon Resource Name (ARN) of the image whose build versions you want to retrieve.
max_results: Option<i64>
The maximum items to return in a request.
next_token: Option<String>
A token to specify where to start paginating. This is the NextToken from a previously truncated response.
Trait Implementations§
Source§impl Clone for ListImageBuildVersionsRequest
impl Clone for ListImageBuildVersionsRequest
Source§fn clone(&self) -> ListImageBuildVersionsRequest
fn clone(&self) -> ListImageBuildVersionsRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for ListImageBuildVersionsRequest
impl Default for ListImageBuildVersionsRequest
Source§fn default() -> ListImageBuildVersionsRequest
fn default() -> ListImageBuildVersionsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListImageBuildVersionsRequest
impl PartialEq for ListImageBuildVersionsRequest
Source§fn eq(&self, other: &ListImageBuildVersionsRequest) -> bool
fn eq(&self, other: &ListImageBuildVersionsRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListImageBuildVersionsRequest
Auto Trait Implementations§
impl Freeze for ListImageBuildVersionsRequest
impl RefUnwindSafe for ListImageBuildVersionsRequest
impl Send for ListImageBuildVersionsRequest
impl Sync for ListImageBuildVersionsRequest
impl Unpin for ListImageBuildVersionsRequest
impl UnwindSafe for ListImageBuildVersionsRequest
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