import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { DeleteResourceDataSyncRequest, DeleteResourceDataSyncResult } from "../models/models_0"; import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteResourceDataSyncCommand}. */ export interface DeleteResourceDataSyncCommandInput extends DeleteResourceDataSyncRequest { } /** * @public * * The output of {@link DeleteResourceDataSyncCommand}. */ export interface DeleteResourceDataSyncCommandOutput extends DeleteResourceDataSyncResult, __MetadataBearer { } declare const DeleteResourceDataSyncCommand_base: { new (input: DeleteResourceDataSyncCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DeleteResourceDataSyncCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Deletes a resource data sync configuration. After the configuration is deleted, changes to * data on managed nodes are no longer synced to or from the target. Deleting a sync configuration * doesn't delete data.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SSMClient, DeleteResourceDataSyncCommand } from "@aws-sdk/client-ssm"; // ES Modules import * // const { SSMClient, DeleteResourceDataSyncCommand } = require("@aws-sdk/client-ssm"); // CommonJS import * const client = new SSMClient(config); * const input = { // DeleteResourceDataSyncRequest * SyncName: "STRING_VALUE", // required * SyncType: "STRING_VALUE", * }; * const command = new DeleteResourceDataSyncCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteResourceDataSyncCommandInput - {@link DeleteResourceDataSyncCommandInput} * @returns {@link DeleteResourceDataSyncCommandOutput} * @see {@link DeleteResourceDataSyncCommandInput} for command's `input` shape. * @see {@link DeleteResourceDataSyncCommandOutput} for command's `response` shape. * @see {@link SSMClientResolvedConfig | config} for SSMClient's `config` shape. * * @throws {@link InternalServerError} (server fault) *

An error occurred on the server side.

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

The specified sync configuration is invalid.

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

The specified sync name wasn't found.

* * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* * * @public */ export declare class DeleteResourceDataSyncCommand extends DeleteResourceDataSyncCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteResourceDataSyncRequest; output: {}; }; sdk: { input: DeleteResourceDataSyncCommandInput; output: DeleteResourceDataSyncCommandOutput; }; }; }