import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListThreatModelJobsInput, ListThreatModelJobsOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListThreatModelJobsCommand}. */ export interface ListThreatModelJobsCommandInput extends ListThreatModelJobsInput { } /** * @public * * The output of {@link ListThreatModelJobsCommand}. */ export interface ListThreatModelJobsCommandOutput extends ListThreatModelJobsOutput, __MetadataBearer { } declare const ListThreatModelJobsCommand_base: { new (input: ListThreatModelJobsCommandInput): import("@smithy/core/client").CommandImpl; new (input: ListThreatModelJobsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns a paginated list of threat model job summaries for the specified threat model.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SecurityAgentClient, ListThreatModelJobsCommand } from "@aws-sdk/client-securityagent"; // ES Modules import * // const { SecurityAgentClient, ListThreatModelJobsCommand } = require("@aws-sdk/client-securityagent"); // CommonJS import * // import type { SecurityAgentClientConfig } from "@aws-sdk/client-securityagent"; * const config = {}; // type is SecurityAgentClientConfig * const client = new SecurityAgentClient(config); * const input = { // ListThreatModelJobsInput * maxResults: Number("int"), * threatModelId: "STRING_VALUE", // required * agentSpaceId: "STRING_VALUE", // required * nextToken: "STRING_VALUE", * }; * const command = new ListThreatModelJobsCommand(input); * const response = await client.send(command); * // { // ListThreatModelJobsOutput * // threatModelJobSummaries: [ // ThreatModelJobSummaryList * // { // ThreatModelJobSummary * // threatModelJobId: "STRING_VALUE", // required * // threatModelId: "STRING_VALUE", // required * // agentSpaceId: "STRING_VALUE", * // title: "STRING_VALUE", * // status: "IN_PROGRESS" || "STOPPING" || "STOPPED" || "FAILED" || "COMPLETED", * // createdAt: new Date("TIMESTAMP"), * // updatedAt: new Date("TIMESTAMP"), * // }, * // ], * // nextToken: "STRING_VALUE", * // }; * * ``` * * @param ListThreatModelJobsCommandInput - {@link ListThreatModelJobsCommandInput} * @returns {@link ListThreatModelJobsCommandOutput} * @see {@link ListThreatModelJobsCommandInput} for command's `input` shape. * @see {@link ListThreatModelJobsCommandOutput} for command's `response` shape. * @see {@link SecurityAgentClientResolvedConfig | config} for SecurityAgentClient's `config` shape. * * @throws {@link SecurityAgentServiceException} *

Base exception class for all service exceptions from SecurityAgent service.

* * * @public */ export declare class ListThreatModelJobsCommand extends ListThreatModelJobsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListThreatModelJobsInput; output: ListThreatModelJobsOutput; }; sdk: { input: ListThreatModelJobsCommandInput; output: ListThreatModelJobsCommandOutput; }; }; }