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

Schedules delivery of a configuration snapshot to the Amazon S3 * bucket in the specified delivery channel. After the delivery has * started, Config sends the following notifications using an * Amazon SNS topic that you have specified.

* * @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ConfigServiceClient, DeliverConfigSnapshotCommand } from "@aws-sdk/client-config-service"; // ES Modules import * // const { ConfigServiceClient, DeliverConfigSnapshotCommand } = 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 = { // DeliverConfigSnapshotRequest * deliveryChannelName: "STRING_VALUE", // required * }; * const command = new DeliverConfigSnapshotCommand(input); * const response = await client.send(command); * // { // DeliverConfigSnapshotResponse * // configSnapshotId: "STRING_VALUE", * // }; * * ``` * * @param DeliverConfigSnapshotCommandInput - {@link DeliverConfigSnapshotCommandInput} * @returns {@link DeliverConfigSnapshotCommandOutput} * @see {@link DeliverConfigSnapshotCommandInput} for command's `input` shape. * @see {@link DeliverConfigSnapshotCommandOutput} for command's `response` shape. * @see {@link ConfigServiceClientResolvedConfig | config} for ConfigServiceClient's `config` shape. * * @throws {@link NoAvailableConfigurationRecorderException} (client fault) *

There are no customer managed configuration recorders available to record your resources. Use the PutConfigurationRecorder operation to create the customer managed configuration * recorder.

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

There is no configuration recorder running.

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

You have specified a delivery channel that does not * exist.

* * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* * * @public */ export declare class DeliverConfigSnapshotCommand extends DeliverConfigSnapshotCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeliverConfigSnapshotRequest; output: DeliverConfigSnapshotResponse; }; sdk: { input: DeliverConfigSnapshotCommandInput; output: DeliverConfigSnapshotCommandOutput; }; }; }