Struct rusoto_mgh::ImportMigrationTaskRequest[][src]

pub struct ImportMigrationTaskRequest {
    pub dry_run: Option<bool>,
    pub migration_task_name: String,
    pub progress_update_stream: String,
}

Fields

Optional boolean flag to indicate whether any effect should take place. Used to test if the caller has permission to make the call.

Unique identifier that references the migration task.

The name of the ProgressUpdateStream.

Trait Implementations

impl Default for ImportMigrationTaskRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for ImportMigrationTaskRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ImportMigrationTaskRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ImportMigrationTaskRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations