Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

NotifyMigrationTaskStateRequest

import type { NotifyMigrationTaskStateRequest } from "https://aws-api.deno.dev/v0.3/services/migrationhub.ts?docs=full";
interface NotifyMigrationTaskStateRequest {
DryRun?: boolean | null;
MigrationTaskName: string;
NextUpdateSeconds: number;
ProgressUpdateStream: string;
Task: Task;
UpdateDateTime: Date | number;
}

§Properties

§
DryRun?: boolean | null
[src]

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

§
MigrationTaskName: string
[src]

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

§
NextUpdateSeconds: number
[src]

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.

§
ProgressUpdateStream: string
[src]

The name of the ProgressUpdateStream.

§
Task: Task
[src]

Information about the task's progress and status.

§
UpdateDateTime: Date | number
[src]

The timestamp when the task was gathered.