pub struct DescribeExportImageTasksRequest {
pub dry_run: Option<bool>,
pub export_image_task_ids: Option<Vec<String>>,
pub filters: Option<Vec<Filter>>,
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.
export_image_task_ids: Option<Vec<String>>The IDs of the export image tasks.
filters: Option<Vec<Filter>>Filter tasks using the task-state filter and one of the following values: active, completed, deleting, or deleted.
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 DescribeExportImageTasksRequest
impl Clone for DescribeExportImageTasksRequest
Source§fn clone(&self) -> DescribeExportImageTasksRequest
fn clone(&self) -> DescribeExportImageTasksRequest
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 DescribeExportImageTasksRequest
impl Default for DescribeExportImageTasksRequest
Source§fn default() -> DescribeExportImageTasksRequest
fn default() -> DescribeExportImageTasksRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeExportImageTasksRequest
impl PartialEq for DescribeExportImageTasksRequest
Source§fn eq(&self, other: &DescribeExportImageTasksRequest) -> bool
fn eq(&self, other: &DescribeExportImageTasksRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeExportImageTasksRequest
Auto Trait Implementations§
impl Freeze for DescribeExportImageTasksRequest
impl RefUnwindSafe for DescribeExportImageTasksRequest
impl Send for DescribeExportImageTasksRequest
impl Sync for DescribeExportImageTasksRequest
impl Unpin for DescribeExportImageTasksRequest
impl UnwindSafe for DescribeExportImageTasksRequest
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