Struct aws_sdk_migrationhub::operation::notify_migration_task_state::NotifyMigrationTaskStateInput
source · #[non_exhaustive]pub struct NotifyMigrationTaskStateInput {
pub progress_update_stream: Option<String>,
pub migration_task_name: Option<String>,
pub task: Option<Task>,
pub update_date_time: Option<DateTime>,
pub next_update_seconds: Option<i32>,
pub dry_run: Option<bool>,
}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>The name of the ProgressUpdateStream.
migration_task_name: Option<String>Unique identifier that references the migration task. Do not store personal data in this field.
task: Option<Task>Information about the task's progress and status.
update_date_time: Option<DateTime>The timestamp when the task was gathered.
next_update_seconds: Option<i32>Number of seconds after the UpdateDateTime within which the Migration Hub can expect an update. If Migration Hub does not receive an update within the specified interval, then the migration task will be considered stale.
dry_run: Option<bool>Optional boolean flag to indicate whether any effect should take place. Used to test if the caller has permission to make the call.
Implementations§
source§impl NotifyMigrationTaskStateInput
impl NotifyMigrationTaskStateInput
sourcepub fn progress_update_stream(&self) -> Option<&str>
pub fn progress_update_stream(&self) -> Option<&str>
The name of the ProgressUpdateStream.
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 update_date_time(&self) -> Option<&DateTime>
pub fn update_date_time(&self) -> Option<&DateTime>
The timestamp when the task was gathered.
sourcepub fn next_update_seconds(&self) -> Option<i32>
pub fn next_update_seconds(&self) -> Option<i32>
Number of seconds after the UpdateDateTime within which the Migration Hub can expect an update. If Migration Hub does not receive an update within the specified interval, then the migration task will be considered stale.
source§impl NotifyMigrationTaskStateInput
impl NotifyMigrationTaskStateInput
sourcepub fn builder() -> NotifyMigrationTaskStateInputBuilder
pub fn builder() -> NotifyMigrationTaskStateInputBuilder
Creates a new builder-style object to manufacture NotifyMigrationTaskStateInput.
Trait Implementations§
source§impl Clone for NotifyMigrationTaskStateInput
impl Clone for NotifyMigrationTaskStateInput
source§fn clone(&self) -> NotifyMigrationTaskStateInput
fn clone(&self) -> NotifyMigrationTaskStateInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for NotifyMigrationTaskStateInput
impl PartialEq for NotifyMigrationTaskStateInput
source§fn eq(&self, other: &NotifyMigrationTaskStateInput) -> bool
fn eq(&self, other: &NotifyMigrationTaskStateInput) -> bool
self and other values to be equal, and is used
by ==.