pub struct DescribeImagesRequest {
pub arns: Option<Vec<String>>,
pub max_results: Option<i64>,
pub names: Option<Vec<String>>,
pub next_token: Option<String>,
pub type_: Option<String>,
}
Fields§
§arns: Option<Vec<String>>
The ARNs of the public, private, and shared images to describe.
max_results: Option<i64>
The maximum size of each page of results.
names: Option<Vec<String>>
The names of the public or private images to describe.
next_token: Option<String>
The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.
type_: Option<String>
The type of image (public, private, or shared) to describe.
Trait Implementations§
Source§impl Clone for DescribeImagesRequest
impl Clone for DescribeImagesRequest
Source§fn clone(&self) -> DescribeImagesRequest
fn clone(&self) -> DescribeImagesRequest
Returns a copy 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 Debug for DescribeImagesRequest
impl Debug for DescribeImagesRequest
Source§impl Default for DescribeImagesRequest
impl Default for DescribeImagesRequest
Source§fn default() -> DescribeImagesRequest
fn default() -> DescribeImagesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeImagesRequest
impl PartialEq for DescribeImagesRequest
Source§impl Serialize for DescribeImagesRequest
impl Serialize for DescribeImagesRequest
impl StructuralPartialEq for DescribeImagesRequest
Auto Trait Implementations§
impl Freeze for DescribeImagesRequest
impl RefUnwindSafe for DescribeImagesRequest
impl Send for DescribeImagesRequest
impl Sync for DescribeImagesRequest
impl Unpin for DescribeImagesRequest
impl UnwindSafe for DescribeImagesRequest
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