#[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
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) -> &[MigrationTaskSummary]
pub fn migration_task_summary_list(&self) -> &[MigrationTaskSummary]
Lists the migration task's summary which includes: MigrationTaskName, ProgressPercent, ProgressUpdateStream, Status, and the UpdateDateTime for each task.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .migration_task_summary_list.is_none().
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListMigrationTasksOutput
impl Debug for ListMigrationTasksOutput
source§impl PartialEq for ListMigrationTasksOutput
impl PartialEq for ListMigrationTasksOutput
source§fn eq(&self, other: &ListMigrationTasksOutput) -> bool
fn eq(&self, other: &ListMigrationTasksOutput) -> bool
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>
None if the service could not be reached.impl StructuralPartialEq for ListMigrationTasksOutput
Auto Trait Implementations§
impl Freeze for ListMigrationTasksOutput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more