@aws-sdk/client-connectcampaigns 3.325.0 → 3.327.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.
- package/dist-types/commands/CreateCampaignCommand.d.ts +10 -0
- package/dist-types/commands/DeleteCampaignCommand.d.ts +4 -0
- package/dist-types/commands/DeleteConnectInstanceConfigCommand.d.ts +4 -0
- package/dist-types/commands/DeleteInstanceOnboardingJobCommand.d.ts +4 -0
- package/dist-types/commands/DescribeCampaignCommand.d.ts +30 -0
- package/dist-types/commands/GetCampaignStateBatchCommand.d.ts +17 -0
- package/dist-types/commands/GetCampaignStateCommand.d.ts +6 -0
- package/dist-types/commands/GetConnectInstanceConfigCommand.d.ts +14 -0
- package/dist-types/commands/GetInstanceOnboardingJobStatusCommand.d.ts +10 -0
- package/dist-types/commands/ListCampaignsCommand.d.ts +14 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/PauseCampaignCommand.d.ts +4 -0
- package/dist-types/commands/PutDialRequestBatchCommand.d.ts +18 -0
- package/dist-types/commands/ResumeCampaignCommand.d.ts +4 -0
- package/dist-types/commands/StartCampaignCommand.d.ts +4 -0
- package/dist-types/commands/StartInstanceOnboardingJobCommand.d.ts +10 -0
- package/dist-types/commands/StopCampaignCommand.d.ts +4 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateCampaignDialerConfigCommand.d.ts +4 -0
- package/dist-types/commands/UpdateCampaignNameCommand.d.ts +4 -0
- package/dist-types/commands/UpdateCampaignOutboundCallConfigCommand.d.ts +4 -0
- package/package.json +7 -7
|
@@ -51,6 +51,14 @@ export interface CreateCampaignCommandOutput extends CreateCampaignResponse, __M
|
|
|
51
51
|
* };
|
|
52
52
|
* const command = new CreateCampaignCommand(input);
|
|
53
53
|
* const response = await client.send(command);
|
|
54
|
+
* // { // CreateCampaignResponse
|
|
55
|
+
* // id: "STRING_VALUE",
|
|
56
|
+
* // arn: "STRING_VALUE",
|
|
57
|
+
* // tags: { // TagMap
|
|
58
|
+
* // "<keys>": "STRING_VALUE",
|
|
59
|
+
* // },
|
|
60
|
+
* // };
|
|
61
|
+
*
|
|
54
62
|
* ```
|
|
55
63
|
*
|
|
56
64
|
* @param CreateCampaignCommandInput - {@link CreateCampaignCommandInput}
|
|
@@ -80,6 +88,8 @@ export interface CreateCampaignCommandOutput extends CreateCampaignResponse, __M
|
|
|
80
88
|
* @throws {@link ValidationException} (client fault)
|
|
81
89
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
82
90
|
*
|
|
91
|
+
* @throws {@link ConnectCampaignsServiceException}
|
|
92
|
+
* <p>Base exception class for all service exceptions from ConnectCampaigns service.</p>
|
|
83
93
|
*
|
|
84
94
|
*/
|
|
85
95
|
export declare class CreateCampaignCommand extends $Command<CreateCampaignCommandInput, CreateCampaignCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteCampaignCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteCampaignCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteCampaignCommandInput - {@link DeleteCampaignCommandInput}
|
|
@@ -51,6 +53,8 @@ export interface DeleteCampaignCommandOutput extends __MetadataBearer {
|
|
|
51
53
|
* @throws {@link ValidationException} (client fault)
|
|
52
54
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
53
55
|
*
|
|
56
|
+
* @throws {@link ConnectCampaignsServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from ConnectCampaigns service.</p>
|
|
54
58
|
*
|
|
55
59
|
*/
|
|
56
60
|
export declare class DeleteCampaignCommand extends $Command<DeleteCampaignCommandInput, DeleteCampaignCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteConnectInstanceConfigCommandOutput extends __MetadataBear
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteConnectInstanceConfigCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteConnectInstanceConfigCommandInput - {@link DeleteConnectInstanceConfigCommandInput}
|
|
@@ -57,6 +59,8 @@ export interface DeleteConnectInstanceConfigCommandOutput extends __MetadataBear
|
|
|
57
59
|
* @throws {@link ValidationException} (client fault)
|
|
58
60
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
59
61
|
*
|
|
62
|
+
* @throws {@link ConnectCampaignsServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from ConnectCampaigns service.</p>
|
|
60
64
|
*
|
|
61
65
|
*/
|
|
62
66
|
export declare class DeleteConnectInstanceConfigCommand extends $Command<DeleteConnectInstanceConfigCommandInput, DeleteConnectInstanceConfigCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteInstanceOnboardingJobCommandOutput extends __MetadataBear
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteInstanceOnboardingJobCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteInstanceOnboardingJobCommandInput - {@link DeleteInstanceOnboardingJobCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface DeleteInstanceOnboardingJobCommandOutput extends __MetadataBear
|
|
|
54
56
|
* @throws {@link ValidationException} (client fault)
|
|
55
57
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link ConnectCampaignsServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from ConnectCampaigns service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class DeleteInstanceOnboardingJobCommand extends $Command<DeleteInstanceOnboardingJobCommandInput, DeleteInstanceOnboardingJobCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
@@ -31,6 +31,34 @@ export interface DescribeCampaignCommandOutput extends DescribeCampaignResponse,
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeCampaignCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeCampaignResponse
|
|
35
|
+
* // campaign: { // Campaign
|
|
36
|
+
* // id: "STRING_VALUE", // required
|
|
37
|
+
* // arn: "STRING_VALUE", // required
|
|
38
|
+
* // name: "STRING_VALUE", // required
|
|
39
|
+
* // connectInstanceId: "STRING_VALUE", // required
|
|
40
|
+
* // dialerConfig: { // DialerConfig Union: only one key present
|
|
41
|
+
* // progressiveDialerConfig: { // ProgressiveDialerConfig
|
|
42
|
+
* // bandwidthAllocation: Number("double"), // required
|
|
43
|
+
* // },
|
|
44
|
+
* // predictiveDialerConfig: { // PredictiveDialerConfig
|
|
45
|
+
* // bandwidthAllocation: Number("double"), // required
|
|
46
|
+
* // },
|
|
47
|
+
* // },
|
|
48
|
+
* // outboundCallConfig: { // OutboundCallConfig
|
|
49
|
+
* // connectContactFlowId: "STRING_VALUE", // required
|
|
50
|
+
* // connectSourcePhoneNumber: "STRING_VALUE",
|
|
51
|
+
* // connectQueueId: "STRING_VALUE", // required
|
|
52
|
+
* // answerMachineDetectionConfig: { // AnswerMachineDetectionConfig
|
|
53
|
+
* // enableAnswerMachineDetection: true || false, // required
|
|
54
|
+
* // },
|
|
55
|
+
* // },
|
|
56
|
+
* // tags: { // TagMap
|
|
57
|
+
* // "<keys>": "STRING_VALUE",
|
|
58
|
+
* // },
|
|
59
|
+
* // },
|
|
60
|
+
* // };
|
|
61
|
+
*
|
|
34
62
|
* ```
|
|
35
63
|
*
|
|
36
64
|
* @param DescribeCampaignCommandInput - {@link DescribeCampaignCommandInput}
|
|
@@ -51,6 +79,8 @@ export interface DescribeCampaignCommandOutput extends DescribeCampaignResponse,
|
|
|
51
79
|
* @throws {@link ValidationException} (client fault)
|
|
52
80
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
53
81
|
*
|
|
82
|
+
* @throws {@link ConnectCampaignsServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from ConnectCampaigns service.</p>
|
|
54
84
|
*
|
|
55
85
|
*/
|
|
56
86
|
export declare class DescribeCampaignCommand extends $Command<DescribeCampaignCommandInput, DescribeCampaignCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
@@ -33,6 +33,21 @@ export interface GetCampaignStateBatchCommandOutput extends GetCampaignStateBatc
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetCampaignStateBatchCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // GetCampaignStateBatchResponse
|
|
37
|
+
* // successfulRequests: [ // SuccessfulCampaignStateResponseList
|
|
38
|
+
* // { // SuccessfulCampaignStateResponse
|
|
39
|
+
* // campaignId: "STRING_VALUE",
|
|
40
|
+
* // state: "STRING_VALUE",
|
|
41
|
+
* // },
|
|
42
|
+
* // ],
|
|
43
|
+
* // failedRequests: [ // FailedCampaignStateResponseList
|
|
44
|
+
* // { // FailedCampaignStateResponse
|
|
45
|
+
* // campaignId: "STRING_VALUE",
|
|
46
|
+
* // failureCode: "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // ],
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
36
51
|
* ```
|
|
37
52
|
*
|
|
38
53
|
* @param GetCampaignStateBatchCommandInput - {@link GetCampaignStateBatchCommandInput}
|
|
@@ -53,6 +68,8 @@ export interface GetCampaignStateBatchCommandOutput extends GetCampaignStateBatc
|
|
|
53
68
|
* @throws {@link ValidationException} (client fault)
|
|
54
69
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
55
70
|
*
|
|
71
|
+
* @throws {@link ConnectCampaignsServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from ConnectCampaigns service.</p>
|
|
56
73
|
*
|
|
57
74
|
*/
|
|
58
75
|
export declare class GetCampaignStateBatchCommand extends $Command<GetCampaignStateBatchCommandInput, GetCampaignStateBatchCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
@@ -31,6 +31,10 @@ export interface GetCampaignStateCommandOutput extends GetCampaignStateResponse,
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetCampaignStateCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetCampaignStateResponse
|
|
35
|
+
* // state: "STRING_VALUE",
|
|
36
|
+
* // };
|
|
37
|
+
*
|
|
34
38
|
* ```
|
|
35
39
|
*
|
|
36
40
|
* @param GetCampaignStateCommandInput - {@link GetCampaignStateCommandInput}
|
|
@@ -54,6 +58,8 @@ export interface GetCampaignStateCommandOutput extends GetCampaignStateResponse,
|
|
|
54
58
|
* @throws {@link ValidationException} (client fault)
|
|
55
59
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
56
60
|
*
|
|
61
|
+
* @throws {@link ConnectCampaignsServiceException}
|
|
62
|
+
* <p>Base exception class for all service exceptions from ConnectCampaigns service.</p>
|
|
57
63
|
*
|
|
58
64
|
*/
|
|
59
65
|
export declare class GetCampaignStateCommand extends $Command<GetCampaignStateCommandInput, GetCampaignStateCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
@@ -31,6 +31,18 @@ export interface GetConnectInstanceConfigCommandOutput extends GetConnectInstanc
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetConnectInstanceConfigCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetConnectInstanceConfigResponse
|
|
35
|
+
* // connectInstanceConfig: { // InstanceConfig
|
|
36
|
+
* // connectInstanceId: "STRING_VALUE", // required
|
|
37
|
+
* // serviceLinkedRoleArn: "STRING_VALUE", // required
|
|
38
|
+
* // encryptionConfig: { // EncryptionConfig
|
|
39
|
+
* // enabled: true || false, // required
|
|
40
|
+
* // encryptionType: "STRING_VALUE",
|
|
41
|
+
* // keyArn: "STRING_VALUE",
|
|
42
|
+
* // },
|
|
43
|
+
* // },
|
|
44
|
+
* // };
|
|
45
|
+
*
|
|
34
46
|
* ```
|
|
35
47
|
*
|
|
36
48
|
* @param GetConnectInstanceConfigCommandInput - {@link GetConnectInstanceConfigCommandInput}
|
|
@@ -51,6 +63,8 @@ export interface GetConnectInstanceConfigCommandOutput extends GetConnectInstanc
|
|
|
51
63
|
* @throws {@link ValidationException} (client fault)
|
|
52
64
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
53
65
|
*
|
|
66
|
+
* @throws {@link ConnectCampaignsServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from ConnectCampaigns service.</p>
|
|
54
68
|
*
|
|
55
69
|
*/
|
|
56
70
|
export declare class GetConnectInstanceConfigCommand extends $Command<GetConnectInstanceConfigCommandInput, GetConnectInstanceConfigCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
@@ -31,6 +31,14 @@ export interface GetInstanceOnboardingJobStatusCommandOutput extends GetInstance
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetInstanceOnboardingJobStatusCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetInstanceOnboardingJobStatusResponse
|
|
35
|
+
* // connectInstanceOnboardingJobStatus: { // InstanceOnboardingJobStatus
|
|
36
|
+
* // connectInstanceId: "STRING_VALUE", // required
|
|
37
|
+
* // status: "STRING_VALUE", // required
|
|
38
|
+
* // failureCode: "STRING_VALUE",
|
|
39
|
+
* // },
|
|
40
|
+
* // };
|
|
41
|
+
*
|
|
34
42
|
* ```
|
|
35
43
|
*
|
|
36
44
|
* @param GetInstanceOnboardingJobStatusCommandInput - {@link GetInstanceOnboardingJobStatusCommandInput}
|
|
@@ -51,6 +59,8 @@ export interface GetInstanceOnboardingJobStatusCommandOutput extends GetInstance
|
|
|
51
59
|
* @throws {@link ValidationException} (client fault)
|
|
52
60
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
53
61
|
*
|
|
62
|
+
* @throws {@link ConnectCampaignsServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from ConnectCampaigns service.</p>
|
|
54
64
|
*
|
|
55
65
|
*/
|
|
56
66
|
export declare class GetInstanceOnboardingJobStatusCommand extends $Command<GetInstanceOnboardingJobStatusCommandInput, GetInstanceOnboardingJobStatusCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
@@ -38,6 +38,18 @@ export interface ListCampaignsCommandOutput extends ListCampaignsResponse, __Met
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new ListCampaignsCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // ListCampaignsResponse
|
|
42
|
+
* // nextToken: "STRING_VALUE",
|
|
43
|
+
* // campaignSummaryList: [ // CampaignSummaryList
|
|
44
|
+
* // { // CampaignSummary
|
|
45
|
+
* // id: "STRING_VALUE", // required
|
|
46
|
+
* // arn: "STRING_VALUE", // required
|
|
47
|
+
* // name: "STRING_VALUE", // required
|
|
48
|
+
* // connectInstanceId: "STRING_VALUE", // required
|
|
49
|
+
* // },
|
|
50
|
+
* // ],
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
41
53
|
* ```
|
|
42
54
|
*
|
|
43
55
|
* @param ListCampaignsCommandInput - {@link ListCampaignsCommandInput}
|
|
@@ -55,6 +67,8 @@ export interface ListCampaignsCommandOutput extends ListCampaignsResponse, __Met
|
|
|
55
67
|
* @throws {@link ValidationException} (client fault)
|
|
56
68
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
57
69
|
*
|
|
70
|
+
* @throws {@link ConnectCampaignsServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from ConnectCampaigns service.</p>
|
|
58
72
|
*
|
|
59
73
|
*/
|
|
60
74
|
export declare class ListCampaignsCommand extends $Command<ListCampaignsCommandInput, ListCampaignsCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
@@ -31,6 +31,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourceResponse
|
|
35
|
+
* // tags: { // TagMap
|
|
36
|
+
* // "<keys>": "STRING_VALUE",
|
|
37
|
+
* // },
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -54,6 +60,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
54
60
|
* @throws {@link ValidationException} (client fault)
|
|
55
61
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
56
62
|
*
|
|
63
|
+
* @throws {@link ConnectCampaignsServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from ConnectCampaigns service.</p>
|
|
57
65
|
*
|
|
58
66
|
*/
|
|
59
67
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface PauseCampaignCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new PauseCampaignCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param PauseCampaignCommandInput - {@link PauseCampaignCommandInput}
|
|
@@ -60,6 +62,8 @@ export interface PauseCampaignCommandOutput extends __MetadataBearer {
|
|
|
60
62
|
* @throws {@link ValidationException} (client fault)
|
|
61
63
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
62
64
|
*
|
|
65
|
+
* @throws {@link ConnectCampaignsServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from ConnectCampaigns service.</p>
|
|
63
67
|
*
|
|
64
68
|
*/
|
|
65
69
|
export declare class PauseCampaignCommand extends $Command<PauseCampaignCommandInput, PauseCampaignCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
@@ -41,6 +41,22 @@ export interface PutDialRequestBatchCommandOutput extends PutDialRequestBatchRes
|
|
|
41
41
|
* };
|
|
42
42
|
* const command = new PutDialRequestBatchCommand(input);
|
|
43
43
|
* const response = await client.send(command);
|
|
44
|
+
* // { // PutDialRequestBatchResponse
|
|
45
|
+
* // successfulRequests: [ // SuccessfulRequestList
|
|
46
|
+
* // { // SuccessfulRequest
|
|
47
|
+
* // clientToken: "STRING_VALUE",
|
|
48
|
+
* // id: "STRING_VALUE",
|
|
49
|
+
* // },
|
|
50
|
+
* // ],
|
|
51
|
+
* // failedRequests: [ // FailedRequestList
|
|
52
|
+
* // { // FailedRequest
|
|
53
|
+
* // clientToken: "STRING_VALUE",
|
|
54
|
+
* // id: "STRING_VALUE",
|
|
55
|
+
* // failureCode: "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // ],
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
44
60
|
* ```
|
|
45
61
|
*
|
|
46
62
|
* @param PutDialRequestBatchCommandInput - {@link PutDialRequestBatchCommandInput}
|
|
@@ -70,6 +86,8 @@ export interface PutDialRequestBatchCommandOutput extends PutDialRequestBatchRes
|
|
|
70
86
|
* @throws {@link ValidationException} (client fault)
|
|
71
87
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
72
88
|
*
|
|
89
|
+
* @throws {@link ConnectCampaignsServiceException}
|
|
90
|
+
* <p>Base exception class for all service exceptions from ConnectCampaigns service.</p>
|
|
73
91
|
*
|
|
74
92
|
*/
|
|
75
93
|
export declare class PutDialRequestBatchCommand extends $Command<PutDialRequestBatchCommandInput, PutDialRequestBatchCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface ResumeCampaignCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ResumeCampaignCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param ResumeCampaignCommandInput - {@link ResumeCampaignCommandInput}
|
|
@@ -60,6 +62,8 @@ export interface ResumeCampaignCommandOutput extends __MetadataBearer {
|
|
|
60
62
|
* @throws {@link ValidationException} (client fault)
|
|
61
63
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
62
64
|
*
|
|
65
|
+
* @throws {@link ConnectCampaignsServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from ConnectCampaigns service.</p>
|
|
63
67
|
*
|
|
64
68
|
*/
|
|
65
69
|
export declare class ResumeCampaignCommand extends $Command<ResumeCampaignCommandInput, ResumeCampaignCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface StartCampaignCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StartCampaignCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param StartCampaignCommandInput - {@link StartCampaignCommandInput}
|
|
@@ -60,6 +62,8 @@ export interface StartCampaignCommandOutput extends __MetadataBearer {
|
|
|
60
62
|
* @throws {@link ValidationException} (client fault)
|
|
61
63
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
62
64
|
*
|
|
65
|
+
* @throws {@link ConnectCampaignsServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from ConnectCampaigns service.</p>
|
|
63
67
|
*
|
|
64
68
|
*/
|
|
65
69
|
export declare class StartCampaignCommand extends $Command<StartCampaignCommandInput, StartCampaignCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
@@ -36,6 +36,14 @@ export interface StartInstanceOnboardingJobCommandOutput extends StartInstanceOn
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new StartInstanceOnboardingJobCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // StartInstanceOnboardingJobResponse
|
|
40
|
+
* // connectInstanceOnboardingJobStatus: { // InstanceOnboardingJobStatus
|
|
41
|
+
* // connectInstanceId: "STRING_VALUE", // required
|
|
42
|
+
* // status: "STRING_VALUE", // required
|
|
43
|
+
* // failureCode: "STRING_VALUE",
|
|
44
|
+
* // },
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
39
47
|
* ```
|
|
40
48
|
*
|
|
41
49
|
* @param StartInstanceOnboardingJobCommandInput - {@link StartInstanceOnboardingJobCommandInput}
|
|
@@ -62,6 +70,8 @@ export interface StartInstanceOnboardingJobCommandOutput extends StartInstanceOn
|
|
|
62
70
|
* @throws {@link ValidationException} (client fault)
|
|
63
71
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
64
72
|
*
|
|
73
|
+
* @throws {@link ConnectCampaignsServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from ConnectCampaigns service.</p>
|
|
65
75
|
*
|
|
66
76
|
*/
|
|
67
77
|
export declare class StartInstanceOnboardingJobCommand extends $Command<StartInstanceOnboardingJobCommandInput, StartInstanceOnboardingJobCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface StopCampaignCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StopCampaignCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param StopCampaignCommandInput - {@link StopCampaignCommandInput}
|
|
@@ -60,6 +62,8 @@ export interface StopCampaignCommandOutput extends __MetadataBearer {
|
|
|
60
62
|
* @throws {@link ValidationException} (client fault)
|
|
61
63
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
62
64
|
*
|
|
65
|
+
* @throws {@link ConnectCampaignsServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from ConnectCampaigns service.</p>
|
|
63
67
|
*
|
|
64
68
|
*/
|
|
65
69
|
export declare class StopCampaignCommand extends $Command<StopCampaignCommandInput, StopCampaignCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new TagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -57,6 +59,8 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
57
59
|
* @throws {@link ValidationException} (client fault)
|
|
58
60
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
59
61
|
*
|
|
62
|
+
* @throws {@link ConnectCampaignsServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from ConnectCampaigns service.</p>
|
|
60
64
|
*
|
|
61
65
|
*/
|
|
62
66
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -57,6 +59,8 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
57
59
|
* @throws {@link ValidationException} (client fault)
|
|
58
60
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
59
61
|
*
|
|
62
|
+
* @throws {@link ConnectCampaignsServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from ConnectCampaigns service.</p>
|
|
60
64
|
*
|
|
61
65
|
*/
|
|
62
66
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
@@ -39,6 +39,8 @@ export interface UpdateCampaignDialerConfigCommandOutput extends __MetadataBeare
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new UpdateCampaignDialerConfigCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // {};
|
|
43
|
+
*
|
|
42
44
|
* ```
|
|
43
45
|
*
|
|
44
46
|
* @param UpdateCampaignDialerConfigCommandInput - {@link UpdateCampaignDialerConfigCommandInput}
|
|
@@ -62,6 +64,8 @@ export interface UpdateCampaignDialerConfigCommandOutput extends __MetadataBeare
|
|
|
62
64
|
* @throws {@link ValidationException} (client fault)
|
|
63
65
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
64
66
|
*
|
|
67
|
+
* @throws {@link ConnectCampaignsServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from ConnectCampaigns service.</p>
|
|
65
69
|
*
|
|
66
70
|
*/
|
|
67
71
|
export declare class UpdateCampaignDialerConfigCommand extends $Command<UpdateCampaignDialerConfigCommandInput, UpdateCampaignDialerConfigCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface UpdateCampaignNameCommandOutput extends __MetadataBearer {
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new UpdateCampaignNameCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param UpdateCampaignNameCommandInput - {@link UpdateCampaignNameCommandInput}
|
|
@@ -55,6 +57,8 @@ export interface UpdateCampaignNameCommandOutput extends __MetadataBearer {
|
|
|
55
57
|
* @throws {@link ValidationException} (client fault)
|
|
56
58
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
57
59
|
*
|
|
60
|
+
* @throws {@link ConnectCampaignsServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from ConnectCampaigns service.</p>
|
|
58
62
|
*
|
|
59
63
|
*/
|
|
60
64
|
export declare class UpdateCampaignNameCommand extends $Command<UpdateCampaignNameCommandInput, UpdateCampaignNameCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
@@ -36,6 +36,8 @@ export interface UpdateCampaignOutboundCallConfigCommandOutput extends __Metadat
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new UpdateCampaignOutboundCallConfigCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // {};
|
|
40
|
+
*
|
|
39
41
|
* ```
|
|
40
42
|
*
|
|
41
43
|
* @param UpdateCampaignOutboundCallConfigCommandInput - {@link UpdateCampaignOutboundCallConfigCommandInput}
|
|
@@ -62,6 +64,8 @@ export interface UpdateCampaignOutboundCallConfigCommandOutput extends __Metadat
|
|
|
62
64
|
* @throws {@link ValidationException} (client fault)
|
|
63
65
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
64
66
|
*
|
|
67
|
+
* @throws {@link ConnectCampaignsServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from ConnectCampaigns service.</p>
|
|
65
69
|
*
|
|
66
70
|
*/
|
|
67
71
|
export declare class UpdateCampaignOutboundCallConfigCommand extends $Command<UpdateCampaignOutboundCallConfigCommandInput, UpdateCampaignOutboundCallConfigCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-connectcampaigns",
|
|
3
3
|
"description": "AWS SDK for JavaScript Connectcampaigns Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.327.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.327.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.327.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.327.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.327.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
50
|
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.327.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.327.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|
|
54
54
|
"@aws-sdk/util-user-agent-node": "3.310.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.310.0",
|