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 { GetOrganizationConformancePackDetailedStatusRequest, GetOrganizationConformancePackDetailedStatusResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link GetOrganizationConformancePackDetailedStatusCommand}. */ export interface GetOrganizationConformancePackDetailedStatusCommandInput extends GetOrganizationConformancePackDetailedStatusRequest { } /** * @public * * The output of {@link GetOrganizationConformancePackDetailedStatusCommand}. */ export interface GetOrganizationConformancePackDetailedStatusCommandOutput extends GetOrganizationConformancePackDetailedStatusResponse, __MetadataBearer { } declare const GetOrganizationConformancePackDetailedStatusCommand_base: { new (input: GetOrganizationConformancePackDetailedStatusCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: GetOrganizationConformancePackDetailedStatusCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Returns detailed status for each member account within an organization for a given organization conformance pack.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ConfigServiceClient, GetOrganizationConformancePackDetailedStatusCommand } from "@aws-sdk/client-config-service"; // ES Modules import * // const { ConfigServiceClient, GetOrganizationConformancePackDetailedStatusCommand } = 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 = { // GetOrganizationConformancePackDetailedStatusRequest * OrganizationConformancePackName: "STRING_VALUE", // required * Filters: { // OrganizationResourceDetailedStatusFilters * AccountId: "STRING_VALUE", * Status: "CREATE_SUCCESSFUL" || "CREATE_IN_PROGRESS" || "CREATE_FAILED" || "DELETE_SUCCESSFUL" || "DELETE_FAILED" || "DELETE_IN_PROGRESS" || "UPDATE_SUCCESSFUL" || "UPDATE_IN_PROGRESS" || "UPDATE_FAILED", * }, * Limit: Number("int"), * NextToken: "STRING_VALUE", * }; * const command = new GetOrganizationConformancePackDetailedStatusCommand(input); * const response = await client.send(command); * // { // GetOrganizationConformancePackDetailedStatusResponse * // OrganizationConformancePackDetailedStatuses: [ // OrganizationConformancePackDetailedStatuses * // { // OrganizationConformancePackDetailedStatus * // AccountId: "STRING_VALUE", // required * // ConformancePackName: "STRING_VALUE", // required * // Status: "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 GetOrganizationConformancePackDetailedStatusCommandInput - {@link GetOrganizationConformancePackDetailedStatusCommandInput} * @returns {@link GetOrganizationConformancePackDetailedStatusCommandOutput} * @see {@link GetOrganizationConformancePackDetailedStatusCommandInput} for command's `input` shape. * @see {@link GetOrganizationConformancePackDetailedStatusCommandOutput} 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 NoSuchOrganizationConformancePackException} (client fault) *

Config organization conformance pack that you passed in the filter does not exist.

*

For DeleteOrganizationConformancePack, you tried to delete an organization conformance pack that does not exist.

* * @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 GetOrganizationConformancePackDetailedStatusCommand extends GetOrganizationConformancePackDetailedStatusCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetOrganizationConformancePackDetailedStatusRequest; output: GetOrganizationConformancePackDetailedStatusResponse; }; sdk: { input: GetOrganizationConformancePackDetailedStatusCommandInput; output: GetOrganizationConformancePackDetailedStatusCommandOutput; }; }; }