pub struct DescribeImportImageTasksRequest {
pub dry_run: Option<bool>,
pub filters: Option<Vec<Filter>>,
pub import_task_ids: Option<Vec<String>>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}Fields§
§dry_run: Option<bool>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
filters: Option<Vec<Filter>>Filter tasks using the task-state filter and one of the following values: active, completed, deleting, or deleted.
import_task_ids: Option<Vec<String>>The IDs of the import image tasks.
max_results: Option<i64>The maximum number of results to return in a single call.
next_token: Option<String>A token that indicates the next page of results.
Trait Implementations§
Source§impl Clone for DescribeImportImageTasksRequest
impl Clone for DescribeImportImageTasksRequest
Source§fn clone(&self) -> DescribeImportImageTasksRequest
fn clone(&self) -> DescribeImportImageTasksRequest
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 DescribeImportImageTasksRequest
impl Default for DescribeImportImageTasksRequest
Source§fn default() -> DescribeImportImageTasksRequest
fn default() -> DescribeImportImageTasksRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeImportImageTasksRequest
impl PartialEq for DescribeImportImageTasksRequest
Source§fn eq(&self, other: &DescribeImportImageTasksRequest) -> bool
fn eq(&self, other: &DescribeImportImageTasksRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeImportImageTasksRequest
Auto Trait Implementations§
impl Freeze for DescribeImportImageTasksRequest
impl RefUnwindSafe for DescribeImportImageTasksRequest
impl Send for DescribeImportImageTasksRequest
impl Sync for DescribeImportImageTasksRequest
impl Unpin for DescribeImportImageTasksRequest
impl UnwindSafe for DescribeImportImageTasksRequest
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