import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import type { DescribeConformancePackStatusRequest, DescribeConformancePackStatusResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeConformancePackStatusCommand}. */ export interface DescribeConformancePackStatusCommandInput extends DescribeConformancePackStatusRequest { } /** * @public * * The output of {@link DescribeConformancePackStatusCommand}. */ export interface DescribeConformancePackStatusCommandOutput extends DescribeConformancePackStatusResponse, __MetadataBearer { } declare const DescribeConformancePackStatusCommand_base: { new (input: DescribeConformancePackStatusCommandInput): import("@smithy/smithy-client").CommandImpl; new (...[input]: [] | [DescribeConformancePackStatusCommandInput]): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Provides one or more conformance packs deployment status.

* *

If there are no conformance packs then you will see an empty result.

*
* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ConfigServiceClient, DescribeConformancePackStatusCommand } from "@aws-sdk/client-config-service"; // ES Modules import * // const { ConfigServiceClient, DescribeConformancePackStatusCommand } = require("@aws-sdk/client-config-service"); // CommonJS import * // import type { ConfigServiceClientConfig } from "@aws-sdk/client-config-service"; * const config = {}; // type is ConfigServiceClientConfig * const client = new ConfigServiceClient(config); * const input = { // DescribeConformancePackStatusRequest * ConformancePackNames: [ // ConformancePackNamesList * "STRING_VALUE", * ], * Limit: Number("int"), * NextToken: "STRING_VALUE", * }; * const command = new DescribeConformancePackStatusCommand(input); * const response = await client.send(command); * // { // DescribeConformancePackStatusResponse * // ConformancePackStatusDetails: [ // ConformancePackStatusDetailsList * // { // ConformancePackStatusDetail * // ConformancePackName: "STRING_VALUE", // required * // ConformancePackId: "STRING_VALUE", // required * // ConformancePackArn: "STRING_VALUE", // required * // ConformancePackState: "CREATE_IN_PROGRESS" || "CREATE_COMPLETE" || "CREATE_FAILED" || "DELETE_IN_PROGRESS" || "DELETE_FAILED", // required * // StackArn: "STRING_VALUE", // required * // ConformancePackStatusReason: "STRING_VALUE", * // LastUpdateRequestedTime: new Date("TIMESTAMP"), // required * // LastUpdateCompletedTime: new Date("TIMESTAMP"), * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param DescribeConformancePackStatusCommandInput - {@link DescribeConformancePackStatusCommandInput} * @returns {@link DescribeConformancePackStatusCommandOutput} * @see {@link DescribeConformancePackStatusCommandInput} for command's `input` shape. * @see {@link DescribeConformancePackStatusCommandOutput} for command's `response` shape. * @see {@link ConfigServiceClientResolvedConfig | config} for ConfigServiceClient's `config` shape. * * @throws {@link InvalidLimitException} (client fault) *

The specified limit is outside the allowable range.

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

The specified next token is not valid. Specify the * nextToken string that was returned in the previous * response to get the next page of results.

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

One or more of the specified parameters are not valid. Verify * that your parameters are valid and try again.

* * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* * * @public */ export declare class DescribeConformancePackStatusCommand extends DescribeConformancePackStatusCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeConformancePackStatusRequest; output: DescribeConformancePackStatusResponse; }; sdk: { input: DescribeConformancePackStatusCommandInput; output: DescribeConformancePackStatusCommandOutput; }; }; }