pub struct DescribeImportSnapshotTasksRequest {
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>>The filters.
import_task_ids: Option<Vec<String>>A list of import snapshot task IDs.
max_results: Option<i64>The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned NextToken value.
next_token: Option<String>A token that indicates the next page of results.
Trait Implementations§
Source§impl Clone for DescribeImportSnapshotTasksRequest
impl Clone for DescribeImportSnapshotTasksRequest
Source§fn clone(&self) -> DescribeImportSnapshotTasksRequest
fn clone(&self) -> DescribeImportSnapshotTasksRequest
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 DescribeImportSnapshotTasksRequest
impl Default for DescribeImportSnapshotTasksRequest
Source§fn default() -> DescribeImportSnapshotTasksRequest
fn default() -> DescribeImportSnapshotTasksRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeImportSnapshotTasksRequest
impl PartialEq for DescribeImportSnapshotTasksRequest
Source§fn eq(&self, other: &DescribeImportSnapshotTasksRequest) -> bool
fn eq(&self, other: &DescribeImportSnapshotTasksRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeImportSnapshotTasksRequest
Auto Trait Implementations§
impl Freeze for DescribeImportSnapshotTasksRequest
impl RefUnwindSafe for DescribeImportSnapshotTasksRequest
impl Send for DescribeImportSnapshotTasksRequest
impl Sync for DescribeImportSnapshotTasksRequest
impl Unpin for DescribeImportSnapshotTasksRequest
impl UnwindSafe for DescribeImportSnapshotTasksRequest
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