@aws-sdk/client-connectcampaigns 3.113.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (156) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/LICENSE +201 -0
  3. package/README.md +205 -0
  4. package/dist-cjs/ConnectCampaigns.js +337 -0
  5. package/dist-cjs/ConnectCampaignsClient.js +37 -0
  6. package/dist-cjs/commands/CreateCampaignCommand.js +36 -0
  7. package/dist-cjs/commands/DeleteCampaignCommand.js +36 -0
  8. package/dist-cjs/commands/DeleteConnectInstanceConfigCommand.js +36 -0
  9. package/dist-cjs/commands/DeleteInstanceOnboardingJobCommand.js +36 -0
  10. package/dist-cjs/commands/DescribeCampaignCommand.js +36 -0
  11. package/dist-cjs/commands/GetCampaignStateBatchCommand.js +36 -0
  12. package/dist-cjs/commands/GetCampaignStateCommand.js +36 -0
  13. package/dist-cjs/commands/GetConnectInstanceConfigCommand.js +36 -0
  14. package/dist-cjs/commands/GetInstanceOnboardingJobStatusCommand.js +36 -0
  15. package/dist-cjs/commands/ListCampaignsCommand.js +36 -0
  16. package/dist-cjs/commands/ListTagsForResourceCommand.js +36 -0
  17. package/dist-cjs/commands/PauseCampaignCommand.js +36 -0
  18. package/dist-cjs/commands/PutDialRequestBatchCommand.js +36 -0
  19. package/dist-cjs/commands/ResumeCampaignCommand.js +36 -0
  20. package/dist-cjs/commands/StartCampaignCommand.js +36 -0
  21. package/dist-cjs/commands/StartInstanceOnboardingJobCommand.js +36 -0
  22. package/dist-cjs/commands/StopCampaignCommand.js +36 -0
  23. package/dist-cjs/commands/TagResourceCommand.js +36 -0
  24. package/dist-cjs/commands/UntagResourceCommand.js +36 -0
  25. package/dist-cjs/commands/UpdateCampaignDialerConfigCommand.js +36 -0
  26. package/dist-cjs/commands/UpdateCampaignNameCommand.js +36 -0
  27. package/dist-cjs/commands/UpdateCampaignOutboundCallConfigCommand.js +36 -0
  28. package/dist-cjs/commands/index.js +25 -0
  29. package/dist-cjs/endpoints.js +131 -0
  30. package/dist-cjs/index.js +11 -0
  31. package/dist-cjs/models/ConnectCampaignsServiceException.js +11 -0
  32. package/dist-cjs/models/index.js +4 -0
  33. package/dist-cjs/models/models_0.js +490 -0
  34. package/dist-cjs/pagination/Interfaces.js +2 -0
  35. package/dist-cjs/pagination/ListCampaignsPaginator.js +36 -0
  36. package/dist-cjs/pagination/index.js +5 -0
  37. package/dist-cjs/protocols/Aws_restJson1.js +2174 -0
  38. package/dist-cjs/runtimeConfig.browser.js +45 -0
  39. package/dist-cjs/runtimeConfig.js +52 -0
  40. package/dist-cjs/runtimeConfig.native.js +16 -0
  41. package/dist-cjs/runtimeConfig.shared.js +17 -0
  42. package/dist-es/ConnectCampaigns.js +340 -0
  43. package/dist-es/ConnectCampaignsClient.js +39 -0
  44. package/dist-es/commands/CreateCampaignCommand.js +39 -0
  45. package/dist-es/commands/DeleteCampaignCommand.js +39 -0
  46. package/dist-es/commands/DeleteConnectInstanceConfigCommand.js +39 -0
  47. package/dist-es/commands/DeleteInstanceOnboardingJobCommand.js +39 -0
  48. package/dist-es/commands/DescribeCampaignCommand.js +39 -0
  49. package/dist-es/commands/GetCampaignStateBatchCommand.js +39 -0
  50. package/dist-es/commands/GetCampaignStateCommand.js +39 -0
  51. package/dist-es/commands/GetConnectInstanceConfigCommand.js +39 -0
  52. package/dist-es/commands/GetInstanceOnboardingJobStatusCommand.js +39 -0
  53. package/dist-es/commands/ListCampaignsCommand.js +39 -0
  54. package/dist-es/commands/ListTagsForResourceCommand.js +39 -0
  55. package/dist-es/commands/PauseCampaignCommand.js +39 -0
  56. package/dist-es/commands/PutDialRequestBatchCommand.js +39 -0
  57. package/dist-es/commands/ResumeCampaignCommand.js +39 -0
  58. package/dist-es/commands/StartCampaignCommand.js +39 -0
  59. package/dist-es/commands/StartInstanceOnboardingJobCommand.js +39 -0
  60. package/dist-es/commands/StopCampaignCommand.js +39 -0
  61. package/dist-es/commands/TagResourceCommand.js +39 -0
  62. package/dist-es/commands/UntagResourceCommand.js +39 -0
  63. package/dist-es/commands/UpdateCampaignDialerConfigCommand.js +39 -0
  64. package/dist-es/commands/UpdateCampaignNameCommand.js +39 -0
  65. package/dist-es/commands/UpdateCampaignOutboundCallConfigCommand.js +39 -0
  66. package/dist-es/commands/index.js +22 -0
  67. package/dist-es/endpoints.js +127 -0
  68. package/dist-es/index.js +6 -0
  69. package/dist-es/models/ConnectCampaignsServiceException.js +12 -0
  70. package/dist-es/models/index.js +1 -0
  71. package/dist-es/models/models_0.js +376 -0
  72. package/dist-es/pagination/Interfaces.js +1 -0
  73. package/dist-es/pagination/ListCampaignsPaginator.js +75 -0
  74. package/dist-es/pagination/index.js +2 -0
  75. package/dist-es/protocols/Aws_restJson1.js +2718 -0
  76. package/dist-es/runtimeConfig.browser.js +26 -0
  77. package/dist-es/runtimeConfig.js +30 -0
  78. package/dist-es/runtimeConfig.native.js +8 -0
  79. package/dist-es/runtimeConfig.shared.js +13 -0
  80. package/dist-types/ConnectCampaigns.d.ts +161 -0
  81. package/dist-types/ConnectCampaignsClient.d.ts +166 -0
  82. package/dist-types/commands/CreateCampaignCommand.d.ts +35 -0
  83. package/dist-types/commands/DeleteCampaignCommand.d.ts +35 -0
  84. package/dist-types/commands/DeleteConnectInstanceConfigCommand.d.ts +35 -0
  85. package/dist-types/commands/DeleteInstanceOnboardingJobCommand.d.ts +35 -0
  86. package/dist-types/commands/DescribeCampaignCommand.d.ts +35 -0
  87. package/dist-types/commands/GetCampaignStateBatchCommand.d.ts +35 -0
  88. package/dist-types/commands/GetCampaignStateCommand.d.ts +35 -0
  89. package/dist-types/commands/GetConnectInstanceConfigCommand.d.ts +35 -0
  90. package/dist-types/commands/GetInstanceOnboardingJobStatusCommand.d.ts +35 -0
  91. package/dist-types/commands/ListCampaignsCommand.d.ts +35 -0
  92. package/dist-types/commands/ListTagsForResourceCommand.d.ts +35 -0
  93. package/dist-types/commands/PauseCampaignCommand.d.ts +35 -0
  94. package/dist-types/commands/PutDialRequestBatchCommand.d.ts +35 -0
  95. package/dist-types/commands/ResumeCampaignCommand.d.ts +35 -0
  96. package/dist-types/commands/StartCampaignCommand.d.ts +35 -0
  97. package/dist-types/commands/StartInstanceOnboardingJobCommand.d.ts +35 -0
  98. package/dist-types/commands/StopCampaignCommand.d.ts +35 -0
  99. package/dist-types/commands/TagResourceCommand.d.ts +35 -0
  100. package/dist-types/commands/UntagResourceCommand.d.ts +35 -0
  101. package/dist-types/commands/UpdateCampaignDialerConfigCommand.d.ts +35 -0
  102. package/dist-types/commands/UpdateCampaignNameCommand.d.ts +35 -0
  103. package/dist-types/commands/UpdateCampaignOutboundCallConfigCommand.d.ts +35 -0
  104. package/dist-types/commands/index.d.ts +22 -0
  105. package/dist-types/endpoints.d.ts +2 -0
  106. package/dist-types/index.d.ts +6 -0
  107. package/dist-types/models/ConnectCampaignsServiceException.d.ts +10 -0
  108. package/dist-types/models/index.d.ts +1 -0
  109. package/dist-types/models/models_0.d.ts +1165 -0
  110. package/dist-types/pagination/Interfaces.d.ts +6 -0
  111. package/dist-types/pagination/ListCampaignsPaginator.d.ts +4 -0
  112. package/dist-types/pagination/index.d.ts +2 -0
  113. package/dist-types/protocols/Aws_restJson1.d.ts +68 -0
  114. package/dist-types/runtimeConfig.browser.d.ts +40 -0
  115. package/dist-types/runtimeConfig.d.ts +40 -0
  116. package/dist-types/runtimeConfig.native.d.ts +39 -0
  117. package/dist-types/runtimeConfig.shared.d.ts +13 -0
  118. package/dist-types/ts3.4/ConnectCampaigns.d.ts +115 -0
  119. package/dist-types/ts3.4/ConnectCampaignsClient.d.ts +95 -0
  120. package/dist-types/ts3.4/commands/CreateCampaignCommand.d.ts +17 -0
  121. package/dist-types/ts3.4/commands/DeleteCampaignCommand.d.ts +17 -0
  122. package/dist-types/ts3.4/commands/DeleteConnectInstanceConfigCommand.d.ts +17 -0
  123. package/dist-types/ts3.4/commands/DeleteInstanceOnboardingJobCommand.d.ts +17 -0
  124. package/dist-types/ts3.4/commands/DescribeCampaignCommand.d.ts +17 -0
  125. package/dist-types/ts3.4/commands/GetCampaignStateBatchCommand.d.ts +17 -0
  126. package/dist-types/ts3.4/commands/GetCampaignStateCommand.d.ts +17 -0
  127. package/dist-types/ts3.4/commands/GetConnectInstanceConfigCommand.d.ts +17 -0
  128. package/dist-types/ts3.4/commands/GetInstanceOnboardingJobStatusCommand.d.ts +17 -0
  129. package/dist-types/ts3.4/commands/ListCampaignsCommand.d.ts +17 -0
  130. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  131. package/dist-types/ts3.4/commands/PauseCampaignCommand.d.ts +17 -0
  132. package/dist-types/ts3.4/commands/PutDialRequestBatchCommand.d.ts +17 -0
  133. package/dist-types/ts3.4/commands/ResumeCampaignCommand.d.ts +17 -0
  134. package/dist-types/ts3.4/commands/StartCampaignCommand.d.ts +17 -0
  135. package/dist-types/ts3.4/commands/StartInstanceOnboardingJobCommand.d.ts +17 -0
  136. package/dist-types/ts3.4/commands/StopCampaignCommand.d.ts +17 -0
  137. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  138. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  139. package/dist-types/ts3.4/commands/UpdateCampaignDialerConfigCommand.d.ts +17 -0
  140. package/dist-types/ts3.4/commands/UpdateCampaignNameCommand.d.ts +17 -0
  141. package/dist-types/ts3.4/commands/UpdateCampaignOutboundCallConfigCommand.d.ts +17 -0
  142. package/dist-types/ts3.4/commands/index.d.ts +22 -0
  143. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  144. package/dist-types/ts3.4/index.d.ts +6 -0
  145. package/dist-types/ts3.4/models/ConnectCampaignsServiceException.d.ts +6 -0
  146. package/dist-types/ts3.4/models/index.d.ts +1 -0
  147. package/dist-types/ts3.4/models/models_0.d.ts +691 -0
  148. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  149. package/dist-types/ts3.4/pagination/ListCampaignsPaginator.d.ts +4 -0
  150. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  151. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +68 -0
  152. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  153. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  154. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  155. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  156. package/package.json +94 -0
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient";
4
+ import { GetCampaignStateBatchRequest, GetCampaignStateBatchResponse } from "../models/models_0";
5
+ export interface GetCampaignStateBatchCommandInput extends GetCampaignStateBatchRequest {
6
+ }
7
+ export interface GetCampaignStateBatchCommandOutput extends GetCampaignStateBatchResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * Get state of campaigns for the specified Amazon Connect account.
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { ConnectCampaignsClient, GetCampaignStateBatchCommand } from "@aws-sdk/client-connectcampaigns"; // ES Modules import
15
+ * // const { ConnectCampaignsClient, GetCampaignStateBatchCommand } = require("@aws-sdk/client-connectcampaigns"); // CommonJS import
16
+ * const client = new ConnectCampaignsClient(config);
17
+ * const command = new GetCampaignStateBatchCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link GetCampaignStateBatchCommandInput} for command's `input` shape.
22
+ * @see {@link GetCampaignStateBatchCommandOutput} for command's `response` shape.
23
+ * @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class GetCampaignStateBatchCommand extends $Command<GetCampaignStateBatchCommandInput, GetCampaignStateBatchCommandOutput, ConnectCampaignsClientResolvedConfig> {
27
+ readonly input: GetCampaignStateBatchCommandInput;
28
+ constructor(input: GetCampaignStateBatchCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCampaignsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetCampaignStateBatchCommandInput, GetCampaignStateBatchCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient";
4
+ import { GetCampaignStateRequest, GetCampaignStateResponse } from "../models/models_0";
5
+ export interface GetCampaignStateCommandInput extends GetCampaignStateRequest {
6
+ }
7
+ export interface GetCampaignStateCommandOutput extends GetCampaignStateResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * Get state of a campaign for the specified Amazon Connect account.
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { ConnectCampaignsClient, GetCampaignStateCommand } from "@aws-sdk/client-connectcampaigns"; // ES Modules import
15
+ * // const { ConnectCampaignsClient, GetCampaignStateCommand } = require("@aws-sdk/client-connectcampaigns"); // CommonJS import
16
+ * const client = new ConnectCampaignsClient(config);
17
+ * const command = new GetCampaignStateCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link GetCampaignStateCommandInput} for command's `input` shape.
22
+ * @see {@link GetCampaignStateCommandOutput} for command's `response` shape.
23
+ * @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class GetCampaignStateCommand extends $Command<GetCampaignStateCommandInput, GetCampaignStateCommandOutput, ConnectCampaignsClientResolvedConfig> {
27
+ readonly input: GetCampaignStateCommandInput;
28
+ constructor(input: GetCampaignStateCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCampaignsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetCampaignStateCommandInput, GetCampaignStateCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient";
4
+ import { GetConnectInstanceConfigRequest, GetConnectInstanceConfigResponse } from "../models/models_0";
5
+ export interface GetConnectInstanceConfigCommandInput extends GetConnectInstanceConfigRequest {
6
+ }
7
+ export interface GetConnectInstanceConfigCommandOutput extends GetConnectInstanceConfigResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * Get the specific Connect instance config.
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { ConnectCampaignsClient, GetConnectInstanceConfigCommand } from "@aws-sdk/client-connectcampaigns"; // ES Modules import
15
+ * // const { ConnectCampaignsClient, GetConnectInstanceConfigCommand } = require("@aws-sdk/client-connectcampaigns"); // CommonJS import
16
+ * const client = new ConnectCampaignsClient(config);
17
+ * const command = new GetConnectInstanceConfigCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link GetConnectInstanceConfigCommandInput} for command's `input` shape.
22
+ * @see {@link GetConnectInstanceConfigCommandOutput} for command's `response` shape.
23
+ * @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class GetConnectInstanceConfigCommand extends $Command<GetConnectInstanceConfigCommandInput, GetConnectInstanceConfigCommandOutput, ConnectCampaignsClientResolvedConfig> {
27
+ readonly input: GetConnectInstanceConfigCommandInput;
28
+ constructor(input: GetConnectInstanceConfigCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCampaignsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetConnectInstanceConfigCommandInput, GetConnectInstanceConfigCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient";
4
+ import { GetInstanceOnboardingJobStatusRequest, GetInstanceOnboardingJobStatusResponse } from "../models/models_0";
5
+ export interface GetInstanceOnboardingJobStatusCommandInput extends GetInstanceOnboardingJobStatusRequest {
6
+ }
7
+ export interface GetInstanceOnboardingJobStatusCommandOutput extends GetInstanceOnboardingJobStatusResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * Get the specific instance onboarding job status.
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { ConnectCampaignsClient, GetInstanceOnboardingJobStatusCommand } from "@aws-sdk/client-connectcampaigns"; // ES Modules import
15
+ * // const { ConnectCampaignsClient, GetInstanceOnboardingJobStatusCommand } = require("@aws-sdk/client-connectcampaigns"); // CommonJS import
16
+ * const client = new ConnectCampaignsClient(config);
17
+ * const command = new GetInstanceOnboardingJobStatusCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link GetInstanceOnboardingJobStatusCommandInput} for command's `input` shape.
22
+ * @see {@link GetInstanceOnboardingJobStatusCommandOutput} for command's `response` shape.
23
+ * @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class GetInstanceOnboardingJobStatusCommand extends $Command<GetInstanceOnboardingJobStatusCommandInput, GetInstanceOnboardingJobStatusCommandOutput, ConnectCampaignsClientResolvedConfig> {
27
+ readonly input: GetInstanceOnboardingJobStatusCommandInput;
28
+ constructor(input: GetInstanceOnboardingJobStatusCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCampaignsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetInstanceOnboardingJobStatusCommandInput, GetInstanceOnboardingJobStatusCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient";
4
+ import { ListCampaignsRequest, ListCampaignsResponse } from "../models/models_0";
5
+ export interface ListCampaignsCommandInput extends ListCampaignsRequest {
6
+ }
7
+ export interface ListCampaignsCommandOutput extends ListCampaignsResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * Provides summary information about the campaigns under the specified Amazon Connect account.
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { ConnectCampaignsClient, ListCampaignsCommand } from "@aws-sdk/client-connectcampaigns"; // ES Modules import
15
+ * // const { ConnectCampaignsClient, ListCampaignsCommand } = require("@aws-sdk/client-connectcampaigns"); // CommonJS import
16
+ * const client = new ConnectCampaignsClient(config);
17
+ * const command = new ListCampaignsCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link ListCampaignsCommandInput} for command's `input` shape.
22
+ * @see {@link ListCampaignsCommandOutput} for command's `response` shape.
23
+ * @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class ListCampaignsCommand extends $Command<ListCampaignsCommandInput, ListCampaignsCommandOutput, ConnectCampaignsClientResolvedConfig> {
27
+ readonly input: ListCampaignsCommandInput;
28
+ constructor(input: ListCampaignsCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCampaignsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCampaignsCommandInput, ListCampaignsCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient";
4
+ import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
5
+ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
6
+ }
7
+ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * List tags for a resource.
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { ConnectCampaignsClient, ListTagsForResourceCommand } from "@aws-sdk/client-connectcampaigns"; // ES Modules import
15
+ * // const { ConnectCampaignsClient, ListTagsForResourceCommand } = require("@aws-sdk/client-connectcampaigns"); // CommonJS import
16
+ * const client = new ConnectCampaignsClient(config);
17
+ * const command = new ListTagsForResourceCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
22
+ * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
23
+ * @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ConnectCampaignsClientResolvedConfig> {
27
+ readonly input: ListTagsForResourceCommandInput;
28
+ constructor(input: ListTagsForResourceCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCampaignsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient";
4
+ import { PauseCampaignRequest } from "../models/models_0";
5
+ export interface PauseCampaignCommandInput extends PauseCampaignRequest {
6
+ }
7
+ export interface PauseCampaignCommandOutput extends __MetadataBearer {
8
+ }
9
+ /**
10
+ * Pauses a campaign for the specified Amazon Connect account.
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { ConnectCampaignsClient, PauseCampaignCommand } from "@aws-sdk/client-connectcampaigns"; // ES Modules import
15
+ * // const { ConnectCampaignsClient, PauseCampaignCommand } = require("@aws-sdk/client-connectcampaigns"); // CommonJS import
16
+ * const client = new ConnectCampaignsClient(config);
17
+ * const command = new PauseCampaignCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link PauseCampaignCommandInput} for command's `input` shape.
22
+ * @see {@link PauseCampaignCommandOutput} for command's `response` shape.
23
+ * @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class PauseCampaignCommand extends $Command<PauseCampaignCommandInput, PauseCampaignCommandOutput, ConnectCampaignsClientResolvedConfig> {
27
+ readonly input: PauseCampaignCommandInput;
28
+ constructor(input: PauseCampaignCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCampaignsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PauseCampaignCommandInput, PauseCampaignCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient";
4
+ import { PutDialRequestBatchRequest, PutDialRequestBatchResponse } from "../models/models_0";
5
+ export interface PutDialRequestBatchCommandInput extends PutDialRequestBatchRequest {
6
+ }
7
+ export interface PutDialRequestBatchCommandOutput extends PutDialRequestBatchResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * Creates dials requests for the specified campaign Amazon Connect account. This API is idempotent.
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { ConnectCampaignsClient, PutDialRequestBatchCommand } from "@aws-sdk/client-connectcampaigns"; // ES Modules import
15
+ * // const { ConnectCampaignsClient, PutDialRequestBatchCommand } = require("@aws-sdk/client-connectcampaigns"); // CommonJS import
16
+ * const client = new ConnectCampaignsClient(config);
17
+ * const command = new PutDialRequestBatchCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link PutDialRequestBatchCommandInput} for command's `input` shape.
22
+ * @see {@link PutDialRequestBatchCommandOutput} for command's `response` shape.
23
+ * @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class PutDialRequestBatchCommand extends $Command<PutDialRequestBatchCommandInput, PutDialRequestBatchCommandOutput, ConnectCampaignsClientResolvedConfig> {
27
+ readonly input: PutDialRequestBatchCommandInput;
28
+ constructor(input: PutDialRequestBatchCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCampaignsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutDialRequestBatchCommandInput, PutDialRequestBatchCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient";
4
+ import { ResumeCampaignRequest } from "../models/models_0";
5
+ export interface ResumeCampaignCommandInput extends ResumeCampaignRequest {
6
+ }
7
+ export interface ResumeCampaignCommandOutput extends __MetadataBearer {
8
+ }
9
+ /**
10
+ * Stops a campaign for the specified Amazon Connect account.
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { ConnectCampaignsClient, ResumeCampaignCommand } from "@aws-sdk/client-connectcampaigns"; // ES Modules import
15
+ * // const { ConnectCampaignsClient, ResumeCampaignCommand } = require("@aws-sdk/client-connectcampaigns"); // CommonJS import
16
+ * const client = new ConnectCampaignsClient(config);
17
+ * const command = new ResumeCampaignCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link ResumeCampaignCommandInput} for command's `input` shape.
22
+ * @see {@link ResumeCampaignCommandOutput} for command's `response` shape.
23
+ * @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class ResumeCampaignCommand extends $Command<ResumeCampaignCommandInput, ResumeCampaignCommandOutput, ConnectCampaignsClientResolvedConfig> {
27
+ readonly input: ResumeCampaignCommandInput;
28
+ constructor(input: ResumeCampaignCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCampaignsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ResumeCampaignCommandInput, ResumeCampaignCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient";
4
+ import { StartCampaignRequest } from "../models/models_0";
5
+ export interface StartCampaignCommandInput extends StartCampaignRequest {
6
+ }
7
+ export interface StartCampaignCommandOutput extends __MetadataBearer {
8
+ }
9
+ /**
10
+ * Starts a campaign for the specified Amazon Connect account.
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { ConnectCampaignsClient, StartCampaignCommand } from "@aws-sdk/client-connectcampaigns"; // ES Modules import
15
+ * // const { ConnectCampaignsClient, StartCampaignCommand } = require("@aws-sdk/client-connectcampaigns"); // CommonJS import
16
+ * const client = new ConnectCampaignsClient(config);
17
+ * const command = new StartCampaignCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link StartCampaignCommandInput} for command's `input` shape.
22
+ * @see {@link StartCampaignCommandOutput} for command's `response` shape.
23
+ * @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class StartCampaignCommand extends $Command<StartCampaignCommandInput, StartCampaignCommandOutput, ConnectCampaignsClientResolvedConfig> {
27
+ readonly input: StartCampaignCommandInput;
28
+ constructor(input: StartCampaignCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCampaignsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartCampaignCommandInput, StartCampaignCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient";
4
+ import { StartInstanceOnboardingJobRequest, StartInstanceOnboardingJobResponse } from "../models/models_0";
5
+ export interface StartInstanceOnboardingJobCommandInput extends StartInstanceOnboardingJobRequest {
6
+ }
7
+ export interface StartInstanceOnboardingJobCommandOutput extends StartInstanceOnboardingJobResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * Onboard the specific Amazon Connect instance to Connect Campaigns.
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { ConnectCampaignsClient, StartInstanceOnboardingJobCommand } from "@aws-sdk/client-connectcampaigns"; // ES Modules import
15
+ * // const { ConnectCampaignsClient, StartInstanceOnboardingJobCommand } = require("@aws-sdk/client-connectcampaigns"); // CommonJS import
16
+ * const client = new ConnectCampaignsClient(config);
17
+ * const command = new StartInstanceOnboardingJobCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link StartInstanceOnboardingJobCommandInput} for command's `input` shape.
22
+ * @see {@link StartInstanceOnboardingJobCommandOutput} for command's `response` shape.
23
+ * @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class StartInstanceOnboardingJobCommand extends $Command<StartInstanceOnboardingJobCommandInput, StartInstanceOnboardingJobCommandOutput, ConnectCampaignsClientResolvedConfig> {
27
+ readonly input: StartInstanceOnboardingJobCommandInput;
28
+ constructor(input: StartInstanceOnboardingJobCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCampaignsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartInstanceOnboardingJobCommandInput, StartInstanceOnboardingJobCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient";
4
+ import { StopCampaignRequest } from "../models/models_0";
5
+ export interface StopCampaignCommandInput extends StopCampaignRequest {
6
+ }
7
+ export interface StopCampaignCommandOutput extends __MetadataBearer {
8
+ }
9
+ /**
10
+ * Stops a campaign for the specified Amazon Connect account.
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { ConnectCampaignsClient, StopCampaignCommand } from "@aws-sdk/client-connectcampaigns"; // ES Modules import
15
+ * // const { ConnectCampaignsClient, StopCampaignCommand } = require("@aws-sdk/client-connectcampaigns"); // CommonJS import
16
+ * const client = new ConnectCampaignsClient(config);
17
+ * const command = new StopCampaignCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link StopCampaignCommandInput} for command's `input` shape.
22
+ * @see {@link StopCampaignCommandOutput} for command's `response` shape.
23
+ * @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class StopCampaignCommand extends $Command<StopCampaignCommandInput, StopCampaignCommandOutput, ConnectCampaignsClientResolvedConfig> {
27
+ readonly input: StopCampaignCommandInput;
28
+ constructor(input: StopCampaignCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCampaignsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopCampaignCommandInput, StopCampaignCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient";
4
+ import { TagResourceRequest } from "../models/models_0";
5
+ export interface TagResourceCommandInput extends TagResourceRequest {
6
+ }
7
+ export interface TagResourceCommandOutput extends __MetadataBearer {
8
+ }
9
+ /**
10
+ * Tag a resource.
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { ConnectCampaignsClient, TagResourceCommand } from "@aws-sdk/client-connectcampaigns"; // ES Modules import
15
+ * // const { ConnectCampaignsClient, TagResourceCommand } = require("@aws-sdk/client-connectcampaigns"); // CommonJS import
16
+ * const client = new ConnectCampaignsClient(config);
17
+ * const command = new TagResourceCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link TagResourceCommandInput} for command's `input` shape.
22
+ * @see {@link TagResourceCommandOutput} for command's `response` shape.
23
+ * @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, ConnectCampaignsClientResolvedConfig> {
27
+ readonly input: TagResourceCommandInput;
28
+ constructor(input: TagResourceCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCampaignsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient";
4
+ import { UntagResourceRequest } from "../models/models_0";
5
+ export interface UntagResourceCommandInput extends UntagResourceRequest {
6
+ }
7
+ export interface UntagResourceCommandOutput extends __MetadataBearer {
8
+ }
9
+ /**
10
+ * Untag a resource.
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { ConnectCampaignsClient, UntagResourceCommand } from "@aws-sdk/client-connectcampaigns"; // ES Modules import
15
+ * // const { ConnectCampaignsClient, UntagResourceCommand } = require("@aws-sdk/client-connectcampaigns"); // CommonJS import
16
+ * const client = new ConnectCampaignsClient(config);
17
+ * const command = new UntagResourceCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link UntagResourceCommandInput} for command's `input` shape.
22
+ * @see {@link UntagResourceCommandOutput} for command's `response` shape.
23
+ * @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, ConnectCampaignsClientResolvedConfig> {
27
+ readonly input: UntagResourceCommandInput;
28
+ constructor(input: UntagResourceCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCampaignsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient";
4
+ import { UpdateCampaignDialerConfigRequest } from "../models/models_0";
5
+ export interface UpdateCampaignDialerConfigCommandInput extends UpdateCampaignDialerConfigRequest {
6
+ }
7
+ export interface UpdateCampaignDialerConfigCommandOutput extends __MetadataBearer {
8
+ }
9
+ /**
10
+ * Updates the dialer config of a campaign. This API is idempotent.
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { ConnectCampaignsClient, UpdateCampaignDialerConfigCommand } from "@aws-sdk/client-connectcampaigns"; // ES Modules import
15
+ * // const { ConnectCampaignsClient, UpdateCampaignDialerConfigCommand } = require("@aws-sdk/client-connectcampaigns"); // CommonJS import
16
+ * const client = new ConnectCampaignsClient(config);
17
+ * const command = new UpdateCampaignDialerConfigCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link UpdateCampaignDialerConfigCommandInput} for command's `input` shape.
22
+ * @see {@link UpdateCampaignDialerConfigCommandOutput} for command's `response` shape.
23
+ * @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class UpdateCampaignDialerConfigCommand extends $Command<UpdateCampaignDialerConfigCommandInput, UpdateCampaignDialerConfigCommandOutput, ConnectCampaignsClientResolvedConfig> {
27
+ readonly input: UpdateCampaignDialerConfigCommandInput;
28
+ constructor(input: UpdateCampaignDialerConfigCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCampaignsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateCampaignDialerConfigCommandInput, UpdateCampaignDialerConfigCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient";
4
+ import { UpdateCampaignNameRequest } from "../models/models_0";
5
+ export interface UpdateCampaignNameCommandInput extends UpdateCampaignNameRequest {
6
+ }
7
+ export interface UpdateCampaignNameCommandOutput extends __MetadataBearer {
8
+ }
9
+ /**
10
+ * Updates the name of a campaign. This API is idempotent.
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { ConnectCampaignsClient, UpdateCampaignNameCommand } from "@aws-sdk/client-connectcampaigns"; // ES Modules import
15
+ * // const { ConnectCampaignsClient, UpdateCampaignNameCommand } = require("@aws-sdk/client-connectcampaigns"); // CommonJS import
16
+ * const client = new ConnectCampaignsClient(config);
17
+ * const command = new UpdateCampaignNameCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link UpdateCampaignNameCommandInput} for command's `input` shape.
22
+ * @see {@link UpdateCampaignNameCommandOutput} for command's `response` shape.
23
+ * @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class UpdateCampaignNameCommand extends $Command<UpdateCampaignNameCommandInput, UpdateCampaignNameCommandOutput, ConnectCampaignsClientResolvedConfig> {
27
+ readonly input: UpdateCampaignNameCommandInput;
28
+ constructor(input: UpdateCampaignNameCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCampaignsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateCampaignNameCommandInput, UpdateCampaignNameCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient";
4
+ import { UpdateCampaignOutboundCallConfigRequest } from "../models/models_0";
5
+ export interface UpdateCampaignOutboundCallConfigCommandInput extends UpdateCampaignOutboundCallConfigRequest {
6
+ }
7
+ export interface UpdateCampaignOutboundCallConfigCommandOutput extends __MetadataBearer {
8
+ }
9
+ /**
10
+ * Updates the outbound call config of a campaign. This API is idempotent.
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { ConnectCampaignsClient, UpdateCampaignOutboundCallConfigCommand } from "@aws-sdk/client-connectcampaigns"; // ES Modules import
15
+ * // const { ConnectCampaignsClient, UpdateCampaignOutboundCallConfigCommand } = require("@aws-sdk/client-connectcampaigns"); // CommonJS import
16
+ * const client = new ConnectCampaignsClient(config);
17
+ * const command = new UpdateCampaignOutboundCallConfigCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link UpdateCampaignOutboundCallConfigCommandInput} for command's `input` shape.
22
+ * @see {@link UpdateCampaignOutboundCallConfigCommandOutput} for command's `response` shape.
23
+ * @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class UpdateCampaignOutboundCallConfigCommand extends $Command<UpdateCampaignOutboundCallConfigCommandInput, UpdateCampaignOutboundCallConfigCommandOutput, ConnectCampaignsClientResolvedConfig> {
27
+ readonly input: UpdateCampaignOutboundCallConfigCommandInput;
28
+ constructor(input: UpdateCampaignOutboundCallConfigCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCampaignsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateCampaignOutboundCallConfigCommandInput, UpdateCampaignOutboundCallConfigCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,22 @@
1
+ export * from "./CreateCampaignCommand";
2
+ export * from "./DeleteCampaignCommand";
3
+ export * from "./DeleteConnectInstanceConfigCommand";
4
+ export * from "./DeleteInstanceOnboardingJobCommand";
5
+ export * from "./DescribeCampaignCommand";
6
+ export * from "./GetCampaignStateBatchCommand";
7
+ export * from "./GetCampaignStateCommand";
8
+ export * from "./GetConnectInstanceConfigCommand";
9
+ export * from "./GetInstanceOnboardingJobStatusCommand";
10
+ export * from "./ListCampaignsCommand";
11
+ export * from "./ListTagsForResourceCommand";
12
+ export * from "./PauseCampaignCommand";
13
+ export * from "./PutDialRequestBatchCommand";
14
+ export * from "./ResumeCampaignCommand";
15
+ export * from "./StartCampaignCommand";
16
+ export * from "./StartInstanceOnboardingJobCommand";
17
+ export * from "./StopCampaignCommand";
18
+ export * from "./TagResourceCommand";
19
+ export * from "./UntagResourceCommand";
20
+ export * from "./UpdateCampaignDialerConfigCommand";
21
+ export * from "./UpdateCampaignNameCommand";
22
+ export * from "./UpdateCampaignOutboundCallConfigCommand";