Struct aws_sdk_applicationdiscovery::operation::describe_export_tasks::DescribeExportTasksInput
source · #[non_exhaustive]pub struct DescribeExportTasksInput {
pub export_ids: Option<Vec<String>>,
pub filters: Option<Vec<ExportFilter>>,
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.export_ids: Option<Vec<String>>One or more unique identifiers used to query the status of an export request.
filters: Option<Vec<ExportFilter>>One or more filters.
-
AgentId- ID of the agent whose collected data will be exported
max_results: Option<i32>The maximum number of volume results returned by DescribeExportTasks in paginated output. When this parameter is used, DescribeExportTasks only returns maxResults results in a single page along with a nextToken response element.
next_token: Option<String>The nextToken value returned from a previous paginated DescribeExportTasks request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.
Implementations§
source§impl DescribeExportTasksInput
impl DescribeExportTasksInput
sourcepub fn export_ids(&self) -> &[String]
pub fn export_ids(&self) -> &[String]
One or more unique identifiers used to query the status of an export request.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .export_ids.is_none().
sourcepub fn filters(&self) -> &[ExportFilter]
pub fn filters(&self) -> &[ExportFilter]
One or more filters.
-
AgentId- ID of the agent whose collected data will be exported
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 volume results returned by DescribeExportTasks in paginated output. When this parameter is used, DescribeExportTasks only returns maxResults results in a single page along with a nextToken response element.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The nextToken value returned from a previous paginated DescribeExportTasks request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.
source§impl DescribeExportTasksInput
impl DescribeExportTasksInput
sourcepub fn builder() -> DescribeExportTasksInputBuilder
pub fn builder() -> DescribeExportTasksInputBuilder
Creates a new builder-style object to manufacture DescribeExportTasksInput.
Trait Implementations§
source§impl Clone for DescribeExportTasksInput
impl Clone for DescribeExportTasksInput
source§fn clone(&self) -> DescribeExportTasksInput
fn clone(&self) -> DescribeExportTasksInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DescribeExportTasksInput
impl Debug for DescribeExportTasksInput
source§impl PartialEq for DescribeExportTasksInput
impl PartialEq for DescribeExportTasksInput
source§fn eq(&self, other: &DescribeExportTasksInput) -> bool
fn eq(&self, other: &DescribeExportTasksInput) -> bool
self and other values to be equal, and is used
by ==.