@aws-sdk/client-connectcampaigns 3.289.0 → 3.292.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 +22 -0
- package/dist-types/commands/DeleteCampaignCommand.d.ts +13 -0
- package/dist-types/commands/DeleteConnectInstanceConfigCommand.d.ts +19 -0
- package/dist-types/commands/DeleteInstanceOnboardingJobCommand.d.ts +16 -0
- package/dist-types/commands/DescribeCampaignCommand.d.ts +13 -0
- package/dist-types/commands/GetCampaignStateBatchCommand.d.ts +13 -0
- package/dist-types/commands/GetCampaignStateCommand.d.ts +16 -0
- package/dist-types/commands/GetConnectInstanceConfigCommand.d.ts +13 -0
- package/dist-types/commands/GetInstanceOnboardingJobStatusCommand.d.ts +13 -0
- package/dist-types/commands/ListCampaignsCommand.d.ts +10 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PauseCampaignCommand.d.ts +22 -0
- package/dist-types/commands/PutDialRequestBatchCommand.d.ts +22 -0
- package/dist-types/commands/ResumeCampaignCommand.d.ts +22 -0
- package/dist-types/commands/StartCampaignCommand.d.ts +22 -0
- package/dist-types/commands/StartInstanceOnboardingJobCommand.d.ts +19 -0
- package/dist-types/commands/StopCampaignCommand.d.ts +22 -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 +19 -0
- package/package.json +35 -40
|
@@ -29,6 +29,28 @@ export interface CreateCampaignCommandOutput extends CreateCampaignResponse, __M
|
|
|
29
29
|
* @see {@link CreateCampaignCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* You do not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* The request could not be processed because of conflict in the current state of the resource.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* Request processing failed because of an error or failure with the service.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* The specified resource was not found.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
45
|
+
* Request would cause a service quota to be exceeded.
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
48
|
+
* The request was denied due to request throttling.
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ValidationException} (client fault)
|
|
51
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
52
|
+
*
|
|
53
|
+
*
|
|
32
54
|
*/
|
|
33
55
|
export declare class CreateCampaignCommand extends $Command<CreateCampaignCommandInput, CreateCampaignCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
34
56
|
readonly input: CreateCampaignCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface DeleteCampaignCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link DeleteCampaignCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* You do not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* Request processing failed because of an error or failure with the service.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* The specified resource was not found.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ValidationException} (client fault)
|
|
42
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class DeleteCampaignCommand extends $Command<DeleteCampaignCommandInput, DeleteCampaignCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
34
47
|
readonly input: DeleteCampaignCommandInput;
|
|
@@ -29,6 +29,25 @@ export interface DeleteConnectInstanceConfigCommandOutput extends __MetadataBear
|
|
|
29
29
|
* @see {@link DeleteConnectInstanceConfigCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* You do not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* Request processing failed because of an error or failure with the service.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidStateException} (client fault)
|
|
39
|
+
* The request could not be processed because of conflict in the current state.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* The specified resource was not found.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* The request was denied due to request throttling.
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
49
|
+
*
|
|
50
|
+
*
|
|
32
51
|
*/
|
|
33
52
|
export declare class DeleteConnectInstanceConfigCommand extends $Command<DeleteConnectInstanceConfigCommandInput, DeleteConnectInstanceConfigCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
34
53
|
readonly input: DeleteConnectInstanceConfigCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface DeleteInstanceOnboardingJobCommandOutput extends __MetadataBear
|
|
|
29
29
|
* @see {@link DeleteInstanceOnboardingJobCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* You do not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* Request processing failed because of an error or failure with the service.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidStateException} (client fault)
|
|
39
|
+
* The request could not be processed because of conflict in the current state.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* The specified resource was not found.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class DeleteInstanceOnboardingJobCommand extends $Command<DeleteInstanceOnboardingJobCommandInput, DeleteInstanceOnboardingJobCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
34
50
|
readonly input: DeleteInstanceOnboardingJobCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface DescribeCampaignCommandOutput extends DescribeCampaignResponse,
|
|
|
29
29
|
* @see {@link DescribeCampaignCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* You do not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* Request processing failed because of an error or failure with the service.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* The specified resource was not found.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ValidationException} (client fault)
|
|
42
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class DescribeCampaignCommand extends $Command<DescribeCampaignCommandInput, DescribeCampaignCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
34
47
|
readonly input: DescribeCampaignCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface GetCampaignStateBatchCommandOutput extends GetCampaignStateBatc
|
|
|
29
29
|
* @see {@link GetCampaignStateBatchCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* You do not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* Request processing failed because of an error or failure with the service.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
39
|
+
* The request was denied due to request throttling.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ValidationException} (client fault)
|
|
42
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class GetCampaignStateBatchCommand extends $Command<GetCampaignStateBatchCommandInput, GetCampaignStateBatchCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
34
47
|
readonly input: GetCampaignStateBatchCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface GetCampaignStateCommandOutput extends GetCampaignStateResponse,
|
|
|
29
29
|
* @see {@link GetCampaignStateCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* You do not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* Request processing failed because of an error or failure with the service.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* The specified resource was not found.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* The request was denied due to request throttling.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class GetCampaignStateCommand extends $Command<GetCampaignStateCommandInput, GetCampaignStateCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
34
50
|
readonly input: GetCampaignStateCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface GetConnectInstanceConfigCommandOutput extends GetConnectInstanc
|
|
|
29
29
|
* @see {@link GetConnectInstanceConfigCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* You do not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* Request processing failed because of an error or failure with the service.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* The specified resource was not found.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ValidationException} (client fault)
|
|
42
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class GetConnectInstanceConfigCommand extends $Command<GetConnectInstanceConfigCommandInput, GetConnectInstanceConfigCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
34
47
|
readonly input: GetConnectInstanceConfigCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface GetInstanceOnboardingJobStatusCommandOutput extends GetInstance
|
|
|
29
29
|
* @see {@link GetInstanceOnboardingJobStatusCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* You do not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* Request processing failed because of an error or failure with the service.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* The specified resource was not found.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ValidationException} (client fault)
|
|
42
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class GetInstanceOnboardingJobStatusCommand extends $Command<GetInstanceOnboardingJobStatusCommandInput, GetInstanceOnboardingJobStatusCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
34
47
|
readonly input: GetInstanceOnboardingJobStatusCommandInput;
|
|
@@ -29,6 +29,16 @@ export interface ListCampaignsCommandOutput extends ListCampaignsResponse, __Met
|
|
|
29
29
|
* @see {@link ListCampaignsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* You do not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* Request processing failed because of an error or failure with the service.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ValidationException} (client fault)
|
|
39
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
40
|
+
*
|
|
41
|
+
*
|
|
32
42
|
*/
|
|
33
43
|
export declare class ListCampaignsCommand extends $Command<ListCampaignsCommandInput, ListCampaignsCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
34
44
|
readonly input: ListCampaignsCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
29
29
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* You do not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* Request processing failed because of an error or failure with the service.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* The specified resource was not found.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* The request was denied due to request throttling.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
34
50
|
readonly input: ListTagsForResourceCommandInput;
|
|
@@ -29,6 +29,28 @@ export interface PauseCampaignCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link PauseCampaignCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* You do not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* The request could not be processed because of conflict in the current state of the resource.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* Request processing failed because of an error or failure with the service.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidCampaignStateException} (client fault)
|
|
42
|
+
* The request could not be processed because of conflict in the current state of the campaign.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
45
|
+
* The specified resource was not found.
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
48
|
+
* The request was denied due to request throttling.
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ValidationException} (client fault)
|
|
51
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
52
|
+
*
|
|
53
|
+
*
|
|
32
54
|
*/
|
|
33
55
|
export declare class PauseCampaignCommand extends $Command<PauseCampaignCommandInput, PauseCampaignCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
34
56
|
readonly input: PauseCampaignCommandInput;
|
|
@@ -29,6 +29,28 @@ export interface PutDialRequestBatchCommandOutput extends PutDialRequestBatchRes
|
|
|
29
29
|
* @see {@link PutDialRequestBatchCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* You do not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* The request could not be processed because of conflict in the current state of the resource.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* Request processing failed because of an error or failure with the service.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidCampaignStateException} (client fault)
|
|
42
|
+
* The request could not be processed because of conflict in the current state of the campaign.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
45
|
+
* The specified resource was not found.
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
48
|
+
* The request was denied due to request throttling.
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ValidationException} (client fault)
|
|
51
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
52
|
+
*
|
|
53
|
+
*
|
|
32
54
|
*/
|
|
33
55
|
export declare class PutDialRequestBatchCommand extends $Command<PutDialRequestBatchCommandInput, PutDialRequestBatchCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
34
56
|
readonly input: PutDialRequestBatchCommandInput;
|
|
@@ -29,6 +29,28 @@ export interface ResumeCampaignCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link ResumeCampaignCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* You do not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* The request could not be processed because of conflict in the current state of the resource.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* Request processing failed because of an error or failure with the service.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidCampaignStateException} (client fault)
|
|
42
|
+
* The request could not be processed because of conflict in the current state of the campaign.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
45
|
+
* The specified resource was not found.
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
48
|
+
* The request was denied due to request throttling.
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ValidationException} (client fault)
|
|
51
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
52
|
+
*
|
|
53
|
+
*
|
|
32
54
|
*/
|
|
33
55
|
export declare class ResumeCampaignCommand extends $Command<ResumeCampaignCommandInput, ResumeCampaignCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
34
56
|
readonly input: ResumeCampaignCommandInput;
|
|
@@ -29,6 +29,28 @@ export interface StartCampaignCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link StartCampaignCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* You do not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* The request could not be processed because of conflict in the current state of the resource.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* Request processing failed because of an error or failure with the service.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidCampaignStateException} (client fault)
|
|
42
|
+
* The request could not be processed because of conflict in the current state of the campaign.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
45
|
+
* The specified resource was not found.
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
48
|
+
* The request was denied due to request throttling.
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ValidationException} (client fault)
|
|
51
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
52
|
+
*
|
|
53
|
+
*
|
|
32
54
|
*/
|
|
33
55
|
export declare class StartCampaignCommand extends $Command<StartCampaignCommandInput, StartCampaignCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
34
56
|
readonly input: StartCampaignCommandInput;
|
|
@@ -29,6 +29,25 @@ export interface StartInstanceOnboardingJobCommandOutput extends StartInstanceOn
|
|
|
29
29
|
* @see {@link StartInstanceOnboardingJobCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* You do not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* The request could not be processed because of conflict in the current state of the resource.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* Request processing failed because of an error or failure with the service.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* The specified resource was not found.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* The request was denied due to request throttling.
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
49
|
+
*
|
|
50
|
+
*
|
|
32
51
|
*/
|
|
33
52
|
export declare class StartInstanceOnboardingJobCommand extends $Command<StartInstanceOnboardingJobCommandInput, StartInstanceOnboardingJobCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
34
53
|
readonly input: StartInstanceOnboardingJobCommandInput;
|
|
@@ -29,6 +29,28 @@ export interface StopCampaignCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link StopCampaignCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* You do not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* The request could not be processed because of conflict in the current state of the resource.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* Request processing failed because of an error or failure with the service.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidCampaignStateException} (client fault)
|
|
42
|
+
* The request could not be processed because of conflict in the current state of the campaign.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
45
|
+
* The specified resource was not found.
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
48
|
+
* The request was denied due to request throttling.
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ValidationException} (client fault)
|
|
51
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
52
|
+
*
|
|
53
|
+
*
|
|
32
54
|
*/
|
|
33
55
|
export declare class StopCampaignCommand extends $Command<StopCampaignCommandInput, StopCampaignCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
34
56
|
readonly input: StopCampaignCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* You do not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* Request processing failed because of an error or failure with the service.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* The specified resource was not found.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* The request was denied due to request throttling.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
34
50
|
readonly input: TagResourceCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* You do not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* Request processing failed because of an error or failure with the service.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* The specified resource was not found.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* The request was denied due to request throttling.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
34
50
|
readonly input: UntagResourceCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface UpdateCampaignDialerConfigCommandOutput extends __MetadataBeare
|
|
|
29
29
|
* @see {@link UpdateCampaignDialerConfigCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* You do not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* The request could not be processed because of conflict in the current state of the resource.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* Request processing failed because of an error or failure with the service.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* The specified resource was not found.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class UpdateCampaignDialerConfigCommand extends $Command<UpdateCampaignDialerConfigCommandInput, UpdateCampaignDialerConfigCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
34
50
|
readonly input: UpdateCampaignDialerConfigCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface UpdateCampaignNameCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link UpdateCampaignNameCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* You do not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* The request could not be processed because of conflict in the current state of the resource.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* Request processing failed because of an error or failure with the service.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* The specified resource was not found.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class UpdateCampaignNameCommand extends $Command<UpdateCampaignNameCommandInput, UpdateCampaignNameCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
34
50
|
readonly input: UpdateCampaignNameCommandInput;
|
|
@@ -29,6 +29,25 @@ export interface UpdateCampaignOutboundCallConfigCommandOutput extends __Metadat
|
|
|
29
29
|
* @see {@link UpdateCampaignOutboundCallConfigCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ConnectCampaignsClientResolvedConfig | config} for ConnectCampaignsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* You do not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* The request could not be processed because of conflict in the current state of the resource.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* Request processing failed because of an error or failure with the service.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* The specified resource was not found.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* The request was denied due to request throttling.
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
49
|
+
*
|
|
50
|
+
*
|
|
32
51
|
*/
|
|
33
52
|
export declare class UpdateCampaignOutboundCallConfigCommand extends $Command<UpdateCampaignOutboundCallConfigCommandInput, UpdateCampaignOutboundCallConfigCommandOutput, ConnectCampaignsClientResolvedConfig> {
|
|
34
53
|
readonly input: UpdateCampaignOutboundCallConfigCommandInput;
|
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.292.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",
|
|
@@ -20,55 +20,50 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
45
|
-
"@aws-sdk/util-base64": "3.
|
|
46
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
-
"@aws-sdk/util-utf8": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.292.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.292.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.292.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.292.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.292.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.292.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.292.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.292.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.292.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.292.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.292.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.292.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.292.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.292.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.292.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.292.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.292.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.292.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.292.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.292.0",
|
|
43
|
+
"@aws-sdk/types": "3.292.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.292.0",
|
|
45
|
+
"@aws-sdk/util-base64": "3.292.0",
|
|
46
|
+
"@aws-sdk/util-body-length-browser": "3.292.0",
|
|
47
|
+
"@aws-sdk/util-body-length-node": "3.292.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.292.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.292.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.292.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.292.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.292.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.292.0",
|
|
54
|
+
"@aws-sdk/util-utf8": "3.292.0",
|
|
55
55
|
"tslib": "^2.3.1"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
58
|
+
"@aws-sdk/service-client-documentation-generator": "3.292.0",
|
|
59
59
|
"@tsconfig/node14": "1.0.3",
|
|
60
60
|
"@types/node": "^14.14.31",
|
|
61
61
|
"concurrently": "7.0.0",
|
|
62
62
|
"downlevel-dts": "0.10.1",
|
|
63
63
|
"rimraf": "3.0.2",
|
|
64
|
-
"typedoc": "0.
|
|
64
|
+
"typedoc": "0.23.23",
|
|
65
65
|
"typescript": "~4.6.2"
|
|
66
66
|
},
|
|
67
|
-
"overrides": {
|
|
68
|
-
"typedoc": {
|
|
69
|
-
"typescript": "~4.6.2"
|
|
70
|
-
}
|
|
71
|
-
},
|
|
72
67
|
"engines": {
|
|
73
68
|
"node": ">=14.0.0"
|
|
74
69
|
},
|