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 { DescribeOrganizationConfigRuleStatusesRequest, DescribeOrganizationConfigRuleStatusesResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeOrganizationConfigRuleStatusesCommand}. */ export interface DescribeOrganizationConfigRuleStatusesCommandInput extends DescribeOrganizationConfigRuleStatusesRequest { } /** * @public * * The output of {@link DescribeOrganizationConfigRuleStatusesCommand}. */ export interface DescribeOrganizationConfigRuleStatusesCommandOutput extends DescribeOrganizationConfigRuleStatusesResponse, __MetadataBearer { } declare const DescribeOrganizationConfigRuleStatusesCommand_base: { new (input: DescribeOrganizationConfigRuleStatusesCommandInput): import("@smithy/smithy-client").CommandImpl; new (...[input]: [] | [DescribeOrganizationConfigRuleStatusesCommandInput]): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Provides organization Config rule deployment status for an organization.

* *

The status is not considered successful until organization Config rule is successfully deployed in all the member * accounts with an exception of excluded accounts.

*

When you specify the limit and the next token, you receive a paginated response. * Limit and next token are not applicable if you specify organization Config rule names. * It is only applicable, when you request all the organization Config rules.

*
* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ConfigServiceClient, DescribeOrganizationConfigRuleStatusesCommand } from "@aws-sdk/client-config-service"; // ES Modules import * // const { ConfigServiceClient, DescribeOrganizationConfigRuleStatusesCommand } = 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 = { // DescribeOrganizationConfigRuleStatusesRequest * OrganizationConfigRuleNames: [ // OrganizationConfigRuleNames * "STRING_VALUE", * ], * Limit: Number("int"), * NextToken: "STRING_VALUE", * }; * const command = new DescribeOrganizationConfigRuleStatusesCommand(input); * const response = await client.send(command); * // { // DescribeOrganizationConfigRuleStatusesResponse * // OrganizationConfigRuleStatuses: [ // OrganizationConfigRuleStatuses * // { // OrganizationConfigRuleStatus * // OrganizationConfigRuleName: "STRING_VALUE", // required * // OrganizationRuleStatus: "CREATE_SUCCESSFUL" || "CREATE_IN_PROGRESS" || "CREATE_FAILED" || "DELETE_SUCCESSFUL" || "DELETE_FAILED" || "DELETE_IN_PROGRESS" || "UPDATE_SUCCESSFUL" || "UPDATE_IN_PROGRESS" || "UPDATE_FAILED", // required * // ErrorCode: "STRING_VALUE", * // ErrorMessage: "STRING_VALUE", * // LastUpdateTime: new Date("TIMESTAMP"), * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param DescribeOrganizationConfigRuleStatusesCommandInput - {@link DescribeOrganizationConfigRuleStatusesCommandInput} * @returns {@link DescribeOrganizationConfigRuleStatusesCommandOutput} * @see {@link DescribeOrganizationConfigRuleStatusesCommandInput} for command's `input` shape. * @see {@link DescribeOrganizationConfigRuleStatusesCommandOutput} 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 NoSuchOrganizationConfigRuleException} (client fault) *

The Config rule in the request is not valid. Verify that the rule is an organization Config Process Check rule, that the rule name is correct, and that valid Amazon Resouce Names (ARNs) are used before trying again.

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

For PutConfigurationAggregator API, you can see this exception for the following reasons:

* *

For all OrganizationConfigRule and OrganizationConformancePack APIs, Config throws an exception if APIs are called from member accounts. All APIs must be called from organization management account.

* * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* * * @public */ export declare class DescribeOrganizationConfigRuleStatusesCommand extends DescribeOrganizationConfigRuleStatusesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeOrganizationConfigRuleStatusesRequest; output: DescribeOrganizationConfigRuleStatusesResponse; }; sdk: { input: DescribeOrganizationConfigRuleStatusesCommandInput; output: DescribeOrganizationConfigRuleStatusesCommandOutput; }; }; }