Struct aws_sdk_migrationhub::types::MigrationTaskSummary
source · #[non_exhaustive]pub struct MigrationTaskSummary {
pub progress_update_stream: Option<String>,
pub migration_task_name: Option<String>,
pub status: Option<Status>,
pub progress_percent: Option<i32>,
pub status_detail: Option<String>,
pub update_date_time: Option<DateTime>,
}Expand description
MigrationTaskSummary includes MigrationTaskName, ProgressPercent, ProgressUpdateStream, Status, and UpdateDateTime for each task.
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.progress_update_stream: Option<String>An AWS resource used for access control. It should uniquely identify the migration tool as it is used for all updates made by the tool.
migration_task_name: Option<String>Unique identifier that references the migration task. Do not store personal data in this field.
status: Option<Status>Status of the task.
progress_percent: Option<i32>Indication of the percentage completion of the task.
status_detail: Option<String>Detail information of what is being done within the overall status state.
update_date_time: Option<DateTime>The timestamp when the task was gathered.
Implementations§
source§impl MigrationTaskSummary
impl MigrationTaskSummary
sourcepub fn progress_update_stream(&self) -> Option<&str>
pub fn progress_update_stream(&self) -> Option<&str>
An AWS resource used for access control. It should uniquely identify the migration tool as it is used for all updates made by the tool.
sourcepub fn migration_task_name(&self) -> Option<&str>
pub fn migration_task_name(&self) -> Option<&str>
Unique identifier that references the migration task. Do not store personal data in this field.
sourcepub fn progress_percent(&self) -> Option<i32>
pub fn progress_percent(&self) -> Option<i32>
Indication of the percentage completion of the task.
sourcepub fn status_detail(&self) -> Option<&str>
pub fn status_detail(&self) -> Option<&str>
Detail information of what is being done within the overall status state.
sourcepub fn update_date_time(&self) -> Option<&DateTime>
pub fn update_date_time(&self) -> Option<&DateTime>
The timestamp when the task was gathered.
source§impl MigrationTaskSummary
impl MigrationTaskSummary
sourcepub fn builder() -> MigrationTaskSummaryBuilder
pub fn builder() -> MigrationTaskSummaryBuilder
Creates a new builder-style object to manufacture MigrationTaskSummary.
Trait Implementations§
source§impl Clone for MigrationTaskSummary
impl Clone for MigrationTaskSummary
source§fn clone(&self) -> MigrationTaskSummary
fn clone(&self) -> MigrationTaskSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for MigrationTaskSummary
impl Debug for MigrationTaskSummary
source§impl PartialEq for MigrationTaskSummary
impl PartialEq for MigrationTaskSummary
source§fn eq(&self, other: &MigrationTaskSummary) -> bool
fn eq(&self, other: &MigrationTaskSummary) -> bool
self and other values to be equal, and is used
by ==.