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