import * as __aws_sdk_types from "@aws-sdk/types"; /** * GetActivityTaskOutput shape */ export interface GetActivityTaskOutput extends __aws_sdk_types.MetadataBearer { /** *
A token that identifies the scheduled task. This token must be copied and included in subsequent calls to SendTaskHeartbeat, SendTaskSuccess or SendTaskFailure in order to report the progress or completion of the task.
*/ taskToken?: string; /** *The string that contains the JSON input data for the task.
*/ input?: string; /** * Metadata about the response received, including the HTTP status code, HTTP headers, and any request identifiers recognized by the SDK. */ $metadata: __aws_sdk_types.ResponseMetadata; }