import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListSecurityRequirementsInput, ListSecurityRequirementsOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListSecurityRequirementsCommand}. */ export interface ListSecurityRequirementsCommandInput extends ListSecurityRequirementsInput { } /** * @public * * The output of {@link ListSecurityRequirementsCommand}. */ export interface ListSecurityRequirementsCommandOutput extends ListSecurityRequirementsOutput, __MetadataBearer { } declare const ListSecurityRequirementsCommand_base: { new (input: ListSecurityRequirementsCommandInput): import("@smithy/core/client").CommandImpl; new (input: ListSecurityRequirementsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Lists security requirements within a pack.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SecurityAgentClient, ListSecurityRequirementsCommand } from "@aws-sdk/client-securityagent"; // ES Modules import * // const { SecurityAgentClient, ListSecurityRequirementsCommand } = 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 = { // ListSecurityRequirementsInput * packId: "STRING_VALUE", // required * nextToken: "STRING_VALUE", * maxResults: Number("int"), * }; * const command = new ListSecurityRequirementsCommand(input); * const response = await client.send(command); * // { // ListSecurityRequirementsOutput * // securityRequirementSummaries: [ // SecurityRequirementSummaryList // required * // { // SecurityRequirementSummary * // packId: "STRING_VALUE", // required * // name: "STRING_VALUE", // required * // description: "STRING_VALUE", // required * // createdAt: new Date("TIMESTAMP"), // required * // updatedAt: new Date("TIMESTAMP"), // required * // }, * // ], * // nextToken: "STRING_VALUE", * // }; * * ``` * * @param ListSecurityRequirementsCommandInput - {@link ListSecurityRequirementsCommandInput} * @returns {@link ListSecurityRequirementsCommandOutput} * @see {@link ListSecurityRequirementsCommandInput} for command's `input` shape. * @see {@link ListSecurityRequirementsCommandOutput} for command's `response` shape. * @see {@link SecurityAgentClientResolvedConfig | config} for SecurityAgentClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You do not have sufficient access to perform this action.

* * @throws {@link InternalServerException} (server fault) *

An unexpected error occurred during the processing of your request.

* * @throws {@link ResourceNotFoundException} (client fault) *

The specified resource was not found. Verify that the resource identifier is correct and that the resource exists in the specified agent space or account.

* * @throws {@link ThrottlingException} (client fault) *

The request was denied due to request throttling.

* * @throws {@link ValidationException} (client fault) *

The input fails to satisfy the constraints specified by the service.

* * @throws {@link SecurityAgentServiceException} *

Base exception class for all service exceptions from SecurityAgent service.

* * * @public */ export declare class ListSecurityRequirementsCommand extends ListSecurityRequirementsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListSecurityRequirementsInput; output: ListSecurityRequirementsOutput; }; sdk: { input: ListSecurityRequirementsCommandInput; output: ListSecurityRequirementsCommandOutput; }; }; }