pub struct ListComponentBuildVersionsRequest {
pub component_version_arn: String,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§component_version_arn: String
The component version Amazon Resource Name (ARN) whose versions you want to list.
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 ListComponentBuildVersionsRequest
impl Clone for ListComponentBuildVersionsRequest
Source§fn clone(&self) -> ListComponentBuildVersionsRequest
fn clone(&self) -> ListComponentBuildVersionsRequest
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 ListComponentBuildVersionsRequest
impl Default for ListComponentBuildVersionsRequest
Source§fn default() -> ListComponentBuildVersionsRequest
fn default() -> ListComponentBuildVersionsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListComponentBuildVersionsRequest
impl PartialEq for ListComponentBuildVersionsRequest
Source§fn eq(&self, other: &ListComponentBuildVersionsRequest) -> bool
fn eq(&self, other: &ListComponentBuildVersionsRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListComponentBuildVersionsRequest
Auto Trait Implementations§
impl Freeze for ListComponentBuildVersionsRequest
impl RefUnwindSafe for ListComponentBuildVersionsRequest
impl Send for ListComponentBuildVersionsRequest
impl Sync for ListComponentBuildVersionsRequest
impl Unpin for ListComponentBuildVersionsRequest
impl UnwindSafe for ListComponentBuildVersionsRequest
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