Struct aws_sdk_applicationdiscovery::operation::describe_import_tasks::DescribeImportTasksInput
source · #[non_exhaustive]pub struct DescribeImportTasksInput {
pub filters: Option<Vec<ImportTaskFilter>>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.filters: Option<Vec<ImportTaskFilter>>An array of name-value pairs that you provide to filter the results for the DescribeImportTask request to a specific subset of results. Currently, wildcard values aren't supported for filters.
max_results: Option<i32>The maximum number of results that you want this request to return, up to 100.
next_token: Option<String>The token to request a specific page of results.
Implementations§
source§impl DescribeImportTasksInput
impl DescribeImportTasksInput
sourcepub fn filters(&self) -> Option<&[ImportTaskFilter]>
pub fn filters(&self) -> Option<&[ImportTaskFilter]>
An array of name-value pairs that you provide to filter the results for the DescribeImportTask request to a specific subset of results. Currently, wildcard values aren't supported for filters.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results that you want this request to return, up to 100.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token to request a specific page of results.
source§impl DescribeImportTasksInput
impl DescribeImportTasksInput
sourcepub fn builder() -> DescribeImportTasksInputBuilder
pub fn builder() -> DescribeImportTasksInputBuilder
Creates a new builder-style object to manufacture DescribeImportTasksInput.
Trait Implementations§
source§impl Clone for DescribeImportTasksInput
impl Clone for DescribeImportTasksInput
source§fn clone(&self) -> DescribeImportTasksInput
fn clone(&self) -> DescribeImportTasksInput
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 DescribeImportTasksInput
impl Debug for DescribeImportTasksInput
source§impl PartialEq<DescribeImportTasksInput> for DescribeImportTasksInput
impl PartialEq<DescribeImportTasksInput> for DescribeImportTasksInput
source§fn eq(&self, other: &DescribeImportTasksInput) -> bool
fn eq(&self, other: &DescribeImportTasksInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeImportTasksInput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeImportTasksInput
impl Send for DescribeImportTasksInput
impl Sync for DescribeImportTasksInput
impl Unpin for DescribeImportTasksInput
impl UnwindSafe for DescribeImportTasksInput
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