@aws-sdk/client-connectcampaigns 3.295.0 → 3.297.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/ConnectCampaigns.d.ts +23 -0
- package/dist-types/ConnectCampaignsClient.d.ts +24 -4
- package/dist-types/commands/CreateCampaignCommand.d.ts +16 -0
- package/dist-types/commands/DeleteCampaignCommand.d.ts +16 -0
- package/dist-types/commands/DeleteConnectInstanceConfigCommand.d.ts +16 -0
- package/dist-types/commands/DeleteInstanceOnboardingJobCommand.d.ts +16 -0
- package/dist-types/commands/DescribeCampaignCommand.d.ts +16 -0
- package/dist-types/commands/GetCampaignStateBatchCommand.d.ts +16 -0
- package/dist-types/commands/GetCampaignStateCommand.d.ts +16 -0
- package/dist-types/commands/GetConnectInstanceConfigCommand.d.ts +16 -0
- package/dist-types/commands/GetInstanceOnboardingJobStatusCommand.d.ts +16 -0
- package/dist-types/commands/ListCampaignsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PauseCampaignCommand.d.ts +16 -0
- package/dist-types/commands/PutDialRequestBatchCommand.d.ts +16 -0
- package/dist-types/commands/ResumeCampaignCommand.d.ts +16 -0
- package/dist-types/commands/StartCampaignCommand.d.ts +16 -0
- package/dist-types/commands/StartInstanceOnboardingJobCommand.d.ts +16 -0
- package/dist-types/commands/StopCampaignCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateCampaignDialerConfigCommand.d.ts +16 -0
- package/dist-types/commands/UpdateCampaignNameCommand.d.ts +16 -0
- package/dist-types/commands/UpdateCampaignOutboundCallConfigCommand.d.ts +16 -0
- package/dist-types/models/ConnectCampaignsServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +82 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListCampaignsPaginator.d.ts +3 -0
- package/package.json +29 -29
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient";
|
|
5
5
|
import { GetInstanceOnboardingJobStatusRequest, GetInstanceOnboardingJobStatusResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetInstanceOnboardingJobStatusCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetInstanceOnboardingJobStatusCommandInput extends GetInstanceOnboardingJobStatusRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetInstanceOnboardingJobStatusCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetInstanceOnboardingJobStatusCommandOutput extends GetInstanceOnboardingJobStatusResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* Get the specific instance onboarding job status.
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetInstanceOnboardingJobStatusCommandOutput extends GetInstance
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetInstanceOnboardingJobStatusCommandInput - {@link GetInstanceOnboardingJobStatusCommandInput}
|
|
34
|
+
* @returns {@link GetInstanceOnboardingJobStatusCommandOutput}
|
|
28
35
|
* @see {@link GetInstanceOnboardingJobStatusCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetInstanceOnboardingJobStatusCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface GetInstanceOnboardingJobStatusCommandOutput extends GetInstance
|
|
|
46
53
|
export declare class GetInstanceOnboardingJobStatusCommand extends $Command<GetInstanceOnboardingJobStatusCommandInput, GetInstanceOnboardingJobStatusCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
47
54
|
readonly input: GetInstanceOnboardingJobStatusCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: GetInstanceOnboardingJobStatusCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCampaignsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetInstanceOnboardingJobStatusCommandInput, GetInstanceOnboardingJobStatusCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient";
|
|
5
5
|
import { ListCampaignsRequest, ListCampaignsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListCampaignsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListCampaignsCommandInput extends ListCampaignsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListCampaignsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListCampaignsCommandOutput extends ListCampaignsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* Provides summary information about the campaigns under the specified Amazon Connect account.
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListCampaignsCommandOutput extends ListCampaignsResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListCampaignsCommandInput - {@link ListCampaignsCommandInput}
|
|
34
|
+
* @returns {@link ListCampaignsCommandOutput}
|
|
28
35
|
* @see {@link ListCampaignsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListCampaignsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface ListCampaignsCommandOutput extends ListCampaignsResponse, __Met
|
|
|
43
50
|
export declare class ListCampaignsCommand extends $Command<ListCampaignsCommandInput, ListCampaignsCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
44
51
|
readonly input: ListCampaignsCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: ListCampaignsCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCampaignsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCampaignsCommandInput, ListCampaignsCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient";
|
|
5
5
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTagsForResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTagsForResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* List tags for a resource.
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
34
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
28
35
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
49
56
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
50
57
|
readonly input: ListTagsForResourceCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: ListTagsForResourceCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCampaignsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient";
|
|
5
5
|
import { PauseCampaignRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PauseCampaignCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PauseCampaignCommandInput extends PauseCampaignRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PauseCampaignCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PauseCampaignCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* Pauses a campaign for the specified Amazon Connect account.
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface PauseCampaignCommandOutput extends __MetadataBearer {
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param PauseCampaignCommandInput - {@link PauseCampaignCommandInput}
|
|
34
|
+
* @returns {@link PauseCampaignCommandOutput}
|
|
28
35
|
* @see {@link PauseCampaignCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link PauseCampaignCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface PauseCampaignCommandOutput extends __MetadataBearer {
|
|
|
55
62
|
export declare class PauseCampaignCommand extends $Command<PauseCampaignCommandInput, PauseCampaignCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
56
63
|
readonly input: PauseCampaignCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: PauseCampaignCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCampaignsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PauseCampaignCommandInput, PauseCampaignCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient";
|
|
5
5
|
import { PutDialRequestBatchRequest, PutDialRequestBatchResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutDialRequestBatchCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutDialRequestBatchCommandInput extends PutDialRequestBatchRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutDialRequestBatchCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutDialRequestBatchCommandOutput extends PutDialRequestBatchResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* Creates dials requests for the specified campaign Amazon Connect account. This API is idempotent.
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface PutDialRequestBatchCommandOutput extends PutDialRequestBatchRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param PutDialRequestBatchCommandInput - {@link PutDialRequestBatchCommandInput}
|
|
34
|
+
* @returns {@link PutDialRequestBatchCommandOutput}
|
|
28
35
|
* @see {@link PutDialRequestBatchCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link PutDialRequestBatchCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface PutDialRequestBatchCommandOutput extends PutDialRequestBatchRes
|
|
|
55
62
|
export declare class PutDialRequestBatchCommand extends $Command<PutDialRequestBatchCommandInput, PutDialRequestBatchCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
56
63
|
readonly input: PutDialRequestBatchCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: PutDialRequestBatchCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCampaignsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutDialRequestBatchCommandInput, PutDialRequestBatchCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient";
|
|
5
5
|
import { ResumeCampaignRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ResumeCampaignCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ResumeCampaignCommandInput extends ResumeCampaignRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ResumeCampaignCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ResumeCampaignCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* Stops a campaign for the specified Amazon Connect account.
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ResumeCampaignCommandOutput extends __MetadataBearer {
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ResumeCampaignCommandInput - {@link ResumeCampaignCommandInput}
|
|
34
|
+
* @returns {@link ResumeCampaignCommandOutput}
|
|
28
35
|
* @see {@link ResumeCampaignCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ResumeCampaignCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface ResumeCampaignCommandOutput extends __MetadataBearer {
|
|
|
55
62
|
export declare class ResumeCampaignCommand extends $Command<ResumeCampaignCommandInput, ResumeCampaignCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
56
63
|
readonly input: ResumeCampaignCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: ResumeCampaignCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCampaignsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ResumeCampaignCommandInput, ResumeCampaignCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient";
|
|
5
5
|
import { StartCampaignRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StartCampaignCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StartCampaignCommandInput extends StartCampaignRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StartCampaignCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StartCampaignCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* Starts a campaign for the specified Amazon Connect account.
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface StartCampaignCommandOutput extends __MetadataBearer {
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param StartCampaignCommandInput - {@link StartCampaignCommandInput}
|
|
34
|
+
* @returns {@link StartCampaignCommandOutput}
|
|
28
35
|
* @see {@link StartCampaignCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link StartCampaignCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface StartCampaignCommandOutput extends __MetadataBearer {
|
|
|
55
62
|
export declare class StartCampaignCommand extends $Command<StartCampaignCommandInput, StartCampaignCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
56
63
|
readonly input: StartCampaignCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: StartCampaignCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCampaignsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartCampaignCommandInput, StartCampaignCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient";
|
|
5
5
|
import { StartInstanceOnboardingJobRequest, StartInstanceOnboardingJobResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StartInstanceOnboardingJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StartInstanceOnboardingJobCommandInput extends StartInstanceOnboardingJobRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StartInstanceOnboardingJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StartInstanceOnboardingJobCommandOutput extends StartInstanceOnboardingJobResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* Onboard the specific Amazon Connect instance to Connect Campaigns.
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface StartInstanceOnboardingJobCommandOutput extends StartInstanceOn
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param StartInstanceOnboardingJobCommandInput - {@link StartInstanceOnboardingJobCommandInput}
|
|
34
|
+
* @returns {@link StartInstanceOnboardingJobCommandOutput}
|
|
28
35
|
* @see {@link StartInstanceOnboardingJobCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link StartInstanceOnboardingJobCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface StartInstanceOnboardingJobCommandOutput extends StartInstanceOn
|
|
|
52
59
|
export declare class StartInstanceOnboardingJobCommand extends $Command<StartInstanceOnboardingJobCommandInput, StartInstanceOnboardingJobCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
53
60
|
readonly input: StartInstanceOnboardingJobCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: StartInstanceOnboardingJobCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCampaignsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartInstanceOnboardingJobCommandInput, StartInstanceOnboardingJobCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient";
|
|
5
5
|
import { StopCampaignRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StopCampaignCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StopCampaignCommandInput extends StopCampaignRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StopCampaignCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StopCampaignCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* Stops a campaign for the specified Amazon Connect account.
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface StopCampaignCommandOutput extends __MetadataBearer {
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param StopCampaignCommandInput - {@link StopCampaignCommandInput}
|
|
34
|
+
* @returns {@link StopCampaignCommandOutput}
|
|
28
35
|
* @see {@link StopCampaignCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link StopCampaignCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface StopCampaignCommandOutput extends __MetadataBearer {
|
|
|
55
62
|
export declare class StopCampaignCommand extends $Command<StopCampaignCommandInput, StopCampaignCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
56
63
|
readonly input: StopCampaignCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: StopCampaignCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCampaignsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopCampaignCommandInput, StopCampaignCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient";
|
|
5
5
|
import { TagResourceRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link TagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link TagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* Tag a resource.
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
34
|
+
* @returns {@link TagResourceCommandOutput}
|
|
28
35
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
49
56
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
50
57
|
readonly input: TagResourceCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: TagResourceCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCampaignsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient";
|
|
5
5
|
import { UntagResourceRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UntagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UntagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* Untag a resource.
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
34
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
28
35
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
49
56
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
50
57
|
readonly input: UntagResourceCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: UntagResourceCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCampaignsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient";
|
|
5
5
|
import { UpdateCampaignDialerConfigRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateCampaignDialerConfigCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateCampaignDialerConfigCommandInput extends UpdateCampaignDialerConfigRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateCampaignDialerConfigCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateCampaignDialerConfigCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* Updates the dialer config of a campaign. This API is idempotent.
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UpdateCampaignDialerConfigCommandOutput extends __MetadataBeare
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateCampaignDialerConfigCommandInput - {@link UpdateCampaignDialerConfigCommandInput}
|
|
34
|
+
* @returns {@link UpdateCampaignDialerConfigCommandOutput}
|
|
28
35
|
* @see {@link UpdateCampaignDialerConfigCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateCampaignDialerConfigCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface UpdateCampaignDialerConfigCommandOutput extends __MetadataBeare
|
|
|
49
56
|
export declare class UpdateCampaignDialerConfigCommand extends $Command<UpdateCampaignDialerConfigCommandInput, UpdateCampaignDialerConfigCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
50
57
|
readonly input: UpdateCampaignDialerConfigCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: UpdateCampaignDialerConfigCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCampaignsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateCampaignDialerConfigCommandInput, UpdateCampaignDialerConfigCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient";
|
|
5
5
|
import { UpdateCampaignNameRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateCampaignNameCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateCampaignNameCommandInput extends UpdateCampaignNameRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateCampaignNameCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateCampaignNameCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* Updates the name of a campaign. This API is idempotent.
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UpdateCampaignNameCommandOutput extends __MetadataBearer {
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateCampaignNameCommandInput - {@link UpdateCampaignNameCommandInput}
|
|
34
|
+
* @returns {@link UpdateCampaignNameCommandOutput}
|
|
28
35
|
* @see {@link UpdateCampaignNameCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateCampaignNameCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface UpdateCampaignNameCommandOutput extends __MetadataBearer {
|
|
|
49
56
|
export declare class UpdateCampaignNameCommand extends $Command<UpdateCampaignNameCommandInput, UpdateCampaignNameCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
50
57
|
readonly input: UpdateCampaignNameCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: UpdateCampaignNameCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCampaignsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateCampaignNameCommandInput, UpdateCampaignNameCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|