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

GetMaintenanceWindowExecutionTaskResult

import type { GetMaintenanceWindowExecutionTaskResult } from "https://aws-api.deno.dev/v0.3/services/ssm.ts?docs=full";
interface GetMaintenanceWindowExecutionTaskResult {
EndTime?: Date | number | null;
MaxConcurrency?: string | null;
MaxErrors?: string | null;
Priority?: number | null;
ServiceRole?: string | null;
StartTime?: Date | number | null;
StatusDetails?: string | null;
TaskArn?: string | null;
TaskExecutionId?: string | null;
TaskParameters?: ({
[key: string]: MaintenanceWindowTaskParameterValueExpression | null | undefined;
}
)
[]
| null;
WindowExecutionId?: string | null;
}

§Properties

§
EndTime?: Date | number | null
[src]

The time the task execution completed.

§
MaxConcurrency?: string | null
[src]

The defined maximum number of task executions that could be run in parallel.

§
MaxErrors?: string | null
[src]

The defined maximum number of task execution errors allowed before scheduling of the task execution would have been stopped.

§
Priority?: number | null
[src]

The priority of the task.

§
ServiceRole?: string | null
[src]

The role that was assumed when running the task.

§
StartTime?: Date | number | null
[src]

The time the task execution started.

§

The status of the task.

§
StatusDetails?: string | null
[src]

The details explaining the status. Not available for all status values.

§
TaskArn?: string | null
[src]

The Amazon Resource Name (ARN) of the task that ran.

§
TaskExecutionId?: string | null
[src]

The ID of the specific task execution in the maintenance window task that was retrieved.

§
TaskParameters?: ({
[key: string]: MaintenanceWindowTaskParameterValueExpression | null | undefined;
}
)
[]
| null
[src]

The parameters passed to the task when it was run.

Note: TaskParameters has been deprecated. To specify parameters to pass to a task when it runs, instead use the Parameters option in the TaskInvocationParameters structure. For information about how Systems Manager handles these options for the supported maintenance window task types, see "MaintenanceWindowTaskInvocationParameters".

The map has the following format:

  • Key: string, between 1 and 255 characters
  • Value: an array of strings, each between 1 and 255 characters
§

The type of task that was run.

§
WindowExecutionId?: string | null
[src]

The ID of the maintenance window execution that includes the task.