#[non_exhaustive]pub struct ListMigrationTasksOutput {
pub next_token: Option<String>,
pub migration_task_summary_list: Option<Vec<MigrationTaskSummary>>,
/* private fields */
}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.next_token: Option<String>If there are more migration tasks than the max result, return the next token to be passed to the next call as a bookmark of where to start from.
migration_task_summary_list: Option<Vec<MigrationTaskSummary>>Lists the migration task's summary which includes: MigrationTaskName, ProgressPercent, ProgressUpdateStream, Status, and the UpdateDateTime for each task.
Implementations§
source§impl ListMigrationTasksOutput
impl ListMigrationTasksOutput
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If there are more migration tasks than the max result, return the next token to be passed to the next call as a bookmark of where to start from.
sourcepub fn migration_task_summary_list(&self) -> Option<&[MigrationTaskSummary]>
pub fn migration_task_summary_list(&self) -> Option<&[MigrationTaskSummary]>
Lists the migration task's summary which includes: MigrationTaskName, ProgressPercent, ProgressUpdateStream, Status, and the UpdateDateTime for each task.
source§impl ListMigrationTasksOutput
impl ListMigrationTasksOutput
sourcepub fn builder() -> ListMigrationTasksOutputBuilder
pub fn builder() -> ListMigrationTasksOutputBuilder
Creates a new builder-style object to manufacture ListMigrationTasksOutput.
Trait Implementations§
source§impl Clone for ListMigrationTasksOutput
impl Clone for ListMigrationTasksOutput
source§fn clone(&self) -> ListMigrationTasksOutput
fn clone(&self) -> ListMigrationTasksOutput
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 ListMigrationTasksOutput
impl Debug for ListMigrationTasksOutput
source§impl PartialEq<ListMigrationTasksOutput> for ListMigrationTasksOutput
impl PartialEq<ListMigrationTasksOutput> for ListMigrationTasksOutput
source§fn eq(&self, other: &ListMigrationTasksOutput) -> bool
fn eq(&self, other: &ListMigrationTasksOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for ListMigrationTasksOutput
impl RequestId for ListMigrationTasksOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for ListMigrationTasksOutput
Auto Trait Implementations§
impl RefUnwindSafe for ListMigrationTasksOutput
impl Send for ListMigrationTasksOutput
impl Sync for ListMigrationTasksOutput
impl Unpin for ListMigrationTasksOutput
impl UnwindSafe for ListMigrationTasksOutput
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