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

GetCommandInvocationRequest

import type { GetCommandInvocationRequest } from "https://aws-api.deno.dev/v0.3/services/ssm.ts?docs=full";
interface GetCommandInvocationRequest {
CommandId: string;
InstanceId: string;
PluginName?: string | null;
}

§Properties

§
CommandId: string
[src]

(Required) The parent command ID of the invocation plugin.

§
InstanceId: string
[src]

(Required) The ID of the managed node targeted by the command. A managed node can be an Amazon Elastic Compute Cloud (Amazon EC2) instance, edge device, and on-premises server or VM in your hybrid environment that is configured for Amazon Web Services Systems Manager.

§
PluginName?: string | null
[src]

The name of the plugin for which you want detailed results. If the document contains only one plugin, you can omit the name and details for that plugin. If the document contains more than one plugin, you must specify the name of the plugin for which you want to view details.

Plugin names are also referred to as step names in Systems Manager documents (SSM documents). For example, aws:RunShellScript is a plugin.

To find the PluginName, check the document content and find the name of the plugin. Alternatively, use "ListCommandInvocations" with the CommandId and Details parameters. The PluginName is the Name attribute of the CommandPlugin object in the CommandPlugins list.