You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::MigrationHub::Types::NotifyMigrationTaskStateRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing NotifyMigrationTaskStateRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  progress_update_stream: "ProgressUpdateStream", # required
  migration_task_name: "MigrationTaskName", # required
  task: { # required
    status: "NOT_STARTED", # required, accepts NOT_STARTED, IN_PROGRESS, FAILED, COMPLETED
    status_detail: "StatusDetail",
    progress_percent: 1,
  },
  update_date_time: Time.now, # required
  next_update_seconds: 1, # required
  dry_run: false,
}

Instance Attribute Summary collapse

Instance Attribute Details

#dry_runBoolean

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

Returns:

  • (Boolean)

    Optional boolean flag to indicate whether any effect should take place.

#migration_task_nameString

Unique identifier that references the migration task. Do not store personal data in this field.

Returns:

  • (String)

    Unique identifier that references the migration task.

#next_update_secondsInteger

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.

Returns:

  • (Integer)

    Number of seconds after the UpdateDateTime within which the Migration Hub can expect an update.

#progress_update_streamString

The name of the ProgressUpdateStream.

Returns:

  • (String)

    The name of the ProgressUpdateStream.

#taskTypes::Task

Information about the task\'s progress and status.

Returns:

  • (Types::Task)

    Information about the task\'s progress and status.

#update_date_timeTime

The timestamp when the task was gathered.

Returns:

  • (Time)

    The timestamp when the task was gathered.