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
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) -> &[ImportTaskFilter]
pub fn filters(&self) -> &[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.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .filters.is_none().
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DescribeImportTasksInput
impl Debug for DescribeImportTasksInput
source§impl PartialEq for DescribeImportTasksInput
impl PartialEq for DescribeImportTasksInput
source§fn eq(&self, other: &DescribeImportTasksInput) -> bool
fn eq(&self, other: &DescribeImportTasksInput) -> bool
self and other values to be equal, and is used
by ==.