@aws-sdk/client-connectcampaigns 3.1087.0 → 3.1089.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-cjs/index.js +1 -1
- package/dist-types/ts3.4/ConnectCampaigns.d.ts +69 -74
- package/dist-types/ts3.4/ConnectCampaignsClient.d.ts +6 -19
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CreateCampaignCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteCampaignCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/DeleteConnectInstanceConfigCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteInstanceOnboardingJobCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeCampaignCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetCampaignStateBatchCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetCampaignStateCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetConnectInstanceConfigCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetInstanceOnboardingJobStatusCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListCampaignsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PauseCampaignCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/PutDialRequestBatchCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ResumeCampaignCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/StartCampaignCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/StartInstanceOnboardingJobCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StopCampaignCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/UpdateCampaignDialerConfigCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateCampaignNameCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/UpdateCampaignOutboundCallConfigCommand.d.ts +4 -6
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +1 -2
- package/dist-types/ts3.4/models/errors.d.ts +8 -24
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/package.json +38 -38
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { DeleteInstanceOnboardingJobRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface DeleteInstanceOnboardingJobCommandInput
|
|
5
|
-
|
|
6
|
-
export interface DeleteInstanceOnboardingJobCommandOutput
|
|
7
|
-
extends __MetadataBearer {}
|
|
4
|
+
export interface DeleteInstanceOnboardingJobCommandInput extends DeleteInstanceOnboardingJobRequest {}
|
|
5
|
+
export interface DeleteInstanceOnboardingJobCommandOutput extends __MetadataBearer {}
|
|
8
6
|
declare const DeleteInstanceOnboardingJobCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DeleteInstanceOnboardingJobCommandInput
|
|
8
|
+
input: DeleteInstanceOnboardingJobCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DeleteInstanceOnboardingJobCommandInput,
|
|
13
11
|
DeleteInstanceOnboardingJobCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DeleteInstanceOnboardingJobCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DeleteInstanceOnboardingJobCommandInput
|
|
17
|
+
input: DeleteInstanceOnboardingJobCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DeleteInstanceOnboardingJobCommandInput,
|
|
22
20
|
DeleteInstanceOnboardingJobCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeCampaignRequest,
|
|
4
|
-
DescribeCampaignResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeCampaignRequest, DescribeCampaignResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DescribeCampaignCommandInput extends DescribeCampaignRequest {}
|
|
8
|
-
export interface DescribeCampaignCommandOutput
|
|
9
|
-
extends DescribeCampaignResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DescribeCampaignCommandOutput extends DescribeCampaignResponse, __MetadataBearer {}
|
|
11
6
|
declare const DescribeCampaignCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DescribeCampaignCommandInput
|
|
8
|
+
input: DescribeCampaignCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DescribeCampaignCommandInput,
|
|
16
11
|
DescribeCampaignCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DescribeCampaignCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DescribeCampaignCommandInput
|
|
17
|
+
input: DescribeCampaignCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DescribeCampaignCommandInput,
|
|
25
20
|
DescribeCampaignCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetCampaignStateBatchRequest,
|
|
4
|
-
GetCampaignStateBatchResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetCampaignStateBatchRequest, GetCampaignStateBatchResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetCampaignStateBatchCommandInput
|
|
8
|
-
extends GetCampaignStateBatchRequest {}
|
|
4
|
+
export interface GetCampaignStateBatchCommandInput extends GetCampaignStateBatchRequest {}
|
|
9
5
|
export interface GetCampaignStateBatchCommandOutput
|
|
10
|
-
extends GetCampaignStateBatchResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetCampaignStateBatchResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetCampaignStateBatchCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetCampaignStateBatchCommandInput
|
|
9
|
+
input: GetCampaignStateBatchCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetCampaignStateBatchCommandInput,
|
|
17
12
|
GetCampaignStateBatchCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetCampaignStateBatchCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetCampaignStateBatchCommandInput
|
|
18
|
+
input: GetCampaignStateBatchCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetCampaignStateBatchCommandInput,
|
|
26
21
|
GetCampaignStateBatchCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetCampaignStateRequest,
|
|
4
|
-
GetCampaignStateResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetCampaignStateRequest, GetCampaignStateResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetCampaignStateCommandInput extends GetCampaignStateRequest {}
|
|
8
|
-
export interface GetCampaignStateCommandOutput
|
|
9
|
-
extends GetCampaignStateResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetCampaignStateCommandOutput extends GetCampaignStateResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetCampaignStateCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetCampaignStateCommandInput
|
|
8
|
+
input: GetCampaignStateCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetCampaignStateCommandInput,
|
|
16
11
|
GetCampaignStateCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetCampaignStateCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetCampaignStateCommandInput
|
|
17
|
+
input: GetCampaignStateCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetCampaignStateCommandInput,
|
|
25
20
|
GetCampaignStateCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetConnectInstanceConfigResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetConnectInstanceConfigCommandInput
|
|
8
|
-
extends GetConnectInstanceConfigRequest {}
|
|
7
|
+
export interface GetConnectInstanceConfigCommandInput extends GetConnectInstanceConfigRequest {}
|
|
9
8
|
export interface GetConnectInstanceConfigCommandOutput
|
|
10
|
-
extends GetConnectInstanceConfigResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetConnectInstanceConfigResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetConnectInstanceConfigCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetConnectInstanceConfigCommandInput
|
|
12
|
+
input: GetConnectInstanceConfigCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetConnectInstanceConfigCommandInput,
|
|
17
15
|
GetConnectInstanceConfigCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetConnectInstanceConfigCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetConnectInstanceConfigCommandInput
|
|
21
|
+
input: GetConnectInstanceConfigCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetConnectInstanceConfigCommandInput,
|
|
26
24
|
GetConnectInstanceConfigCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetInstanceOnboardingJobStatusResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetInstanceOnboardingJobStatusCommandInput
|
|
8
|
-
extends GetInstanceOnboardingJobStatusRequest {}
|
|
7
|
+
export interface GetInstanceOnboardingJobStatusCommandInput extends GetInstanceOnboardingJobStatusRequest {}
|
|
9
8
|
export interface GetInstanceOnboardingJobStatusCommandOutput
|
|
10
|
-
extends GetInstanceOnboardingJobStatusResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetInstanceOnboardingJobStatusResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetInstanceOnboardingJobStatusCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetInstanceOnboardingJobStatusCommandInput
|
|
12
|
+
input: GetInstanceOnboardingJobStatusCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetInstanceOnboardingJobStatusCommandInput,
|
|
17
15
|
GetInstanceOnboardingJobStatusCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetInstanceOnboardingJobStatusCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetInstanceOnboardingJobStatusCommandInput
|
|
21
|
+
input: GetInstanceOnboardingJobStatusCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetInstanceOnboardingJobStatusCommandInput,
|
|
26
24
|
GetInstanceOnboardingJobStatusCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListCampaignsRequest,
|
|
4
|
-
ListCampaignsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListCampaignsRequest, ListCampaignsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListCampaignsCommandInput extends ListCampaignsRequest {}
|
|
8
|
-
export interface ListCampaignsCommandOutput
|
|
9
|
-
extends ListCampaignsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListCampaignsCommandOutput extends ListCampaignsResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListCampaignsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListCampaignsCommandInput
|
|
8
|
+
input: ListCampaignsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListCampaignsCommandInput,
|
|
16
11
|
ListCampaignsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -5,7 +5,7 @@ export interface PauseCampaignCommandInput extends PauseCampaignRequest {}
|
|
|
5
5
|
export interface PauseCampaignCommandOutput extends __MetadataBearer {}
|
|
6
6
|
declare const PauseCampaignCommand_base: {
|
|
7
7
|
new (
|
|
8
|
-
input: PauseCampaignCommandInput
|
|
8
|
+
input: PauseCampaignCommandInput,
|
|
9
9
|
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
PauseCampaignCommandInput,
|
|
11
11
|
PauseCampaignCommandOutput,
|
|
@@ -14,7 +14,7 @@ declare const PauseCampaignCommand_base: {
|
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
16
|
new (
|
|
17
|
-
input: PauseCampaignCommandInput
|
|
17
|
+
input: PauseCampaignCommandInput,
|
|
18
18
|
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
PauseCampaignCommandInput,
|
|
20
20
|
PauseCampaignCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
PutDialRequestBatchRequest,
|
|
4
|
-
PutDialRequestBatchResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { PutDialRequestBatchRequest, PutDialRequestBatchResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface PutDialRequestBatchCommandInput
|
|
8
|
-
extends PutDialRequestBatchRequest {}
|
|
4
|
+
export interface PutDialRequestBatchCommandInput extends PutDialRequestBatchRequest {}
|
|
9
5
|
export interface PutDialRequestBatchCommandOutput
|
|
10
|
-
extends PutDialRequestBatchResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends PutDialRequestBatchResponse, __MetadataBearer {}
|
|
12
7
|
declare const PutDialRequestBatchCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: PutDialRequestBatchCommandInput
|
|
9
|
+
input: PutDialRequestBatchCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
PutDialRequestBatchCommandInput,
|
|
17
12
|
PutDialRequestBatchCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const PutDialRequestBatchCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: PutDialRequestBatchCommandInput
|
|
18
|
+
input: PutDialRequestBatchCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
PutDialRequestBatchCommandInput,
|
|
26
21
|
PutDialRequestBatchCommandOutput,
|
|
@@ -5,7 +5,7 @@ export interface ResumeCampaignCommandInput extends ResumeCampaignRequest {}
|
|
|
5
5
|
export interface ResumeCampaignCommandOutput extends __MetadataBearer {}
|
|
6
6
|
declare const ResumeCampaignCommand_base: {
|
|
7
7
|
new (
|
|
8
|
-
input: ResumeCampaignCommandInput
|
|
8
|
+
input: ResumeCampaignCommandInput,
|
|
9
9
|
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
ResumeCampaignCommandInput,
|
|
11
11
|
ResumeCampaignCommandOutput,
|
|
@@ -14,7 +14,7 @@ declare const ResumeCampaignCommand_base: {
|
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
16
|
new (
|
|
17
|
-
input: ResumeCampaignCommandInput
|
|
17
|
+
input: ResumeCampaignCommandInput,
|
|
18
18
|
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
ResumeCampaignCommandInput,
|
|
20
20
|
ResumeCampaignCommandOutput,
|
|
@@ -5,7 +5,7 @@ export interface StartCampaignCommandInput extends StartCampaignRequest {}
|
|
|
5
5
|
export interface StartCampaignCommandOutput extends __MetadataBearer {}
|
|
6
6
|
declare const StartCampaignCommand_base: {
|
|
7
7
|
new (
|
|
8
|
-
input: StartCampaignCommandInput
|
|
8
|
+
input: StartCampaignCommandInput,
|
|
9
9
|
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
StartCampaignCommandInput,
|
|
11
11
|
StartCampaignCommandOutput,
|
|
@@ -14,7 +14,7 @@ declare const StartCampaignCommand_base: {
|
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
16
|
new (
|
|
17
|
-
input: StartCampaignCommandInput
|
|
17
|
+
input: StartCampaignCommandInput,
|
|
18
18
|
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
StartCampaignCommandInput,
|
|
20
20
|
StartCampaignCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
StartInstanceOnboardingJobResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface StartInstanceOnboardingJobCommandInput
|
|
8
|
-
extends StartInstanceOnboardingJobRequest {}
|
|
7
|
+
export interface StartInstanceOnboardingJobCommandInput extends StartInstanceOnboardingJobRequest {}
|
|
9
8
|
export interface StartInstanceOnboardingJobCommandOutput
|
|
10
|
-
extends StartInstanceOnboardingJobResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends StartInstanceOnboardingJobResponse, __MetadataBearer {}
|
|
12
10
|
declare const StartInstanceOnboardingJobCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: StartInstanceOnboardingJobCommandInput
|
|
12
|
+
input: StartInstanceOnboardingJobCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
StartInstanceOnboardingJobCommandInput,
|
|
17
15
|
StartInstanceOnboardingJobCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const StartInstanceOnboardingJobCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: StartInstanceOnboardingJobCommandInput
|
|
21
|
+
input: StartInstanceOnboardingJobCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
StartInstanceOnboardingJobCommandInput,
|
|
26
24
|
StartInstanceOnboardingJobCommandOutput,
|
|
@@ -5,7 +5,7 @@ export interface StopCampaignCommandInput extends StopCampaignRequest {}
|
|
|
5
5
|
export interface StopCampaignCommandOutput extends __MetadataBearer {}
|
|
6
6
|
declare const StopCampaignCommand_base: {
|
|
7
7
|
new (
|
|
8
|
-
input: StopCampaignCommandInput
|
|
8
|
+
input: StopCampaignCommandInput,
|
|
9
9
|
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
StopCampaignCommandInput,
|
|
11
11
|
StopCampaignCommandOutput,
|
|
@@ -14,7 +14,7 @@ declare const StopCampaignCommand_base: {
|
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
16
|
new (
|
|
17
|
-
input: StopCampaignCommandInput
|
|
17
|
+
input: StopCampaignCommandInput,
|
|
18
18
|
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
StopCampaignCommandInput,
|
|
20
20
|
StopCampaignCommandOutput,
|
|
@@ -5,7 +5,7 @@ export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
|
5
5
|
export interface TagResourceCommandOutput extends __MetadataBearer {}
|
|
6
6
|
declare const TagResourceCommand_base: {
|
|
7
7
|
new (
|
|
8
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
9
9
|
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
TagResourceCommandInput,
|
|
11
11
|
TagResourceCommandOutput,
|
|
@@ -14,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
16
|
new (
|
|
17
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
18
18
|
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
TagResourceCommandInput,
|
|
20
20
|
TagResourceCommandOutput,
|
|
@@ -5,7 +5,7 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
|
5
5
|
export interface UntagResourceCommandOutput extends __MetadataBearer {}
|
|
6
6
|
declare const UntagResourceCommand_base: {
|
|
7
7
|
new (
|
|
8
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
9
9
|
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
UntagResourceCommandInput,
|
|
11
11
|
UntagResourceCommandOutput,
|
|
@@ -14,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
16
|
new (
|
|
17
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
18
18
|
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
UntagResourceCommandInput,
|
|
20
20
|
UntagResourceCommandOutput,
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { UpdateCampaignDialerConfigRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface UpdateCampaignDialerConfigCommandInput
|
|
5
|
-
|
|
6
|
-
export interface UpdateCampaignDialerConfigCommandOutput
|
|
7
|
-
extends __MetadataBearer {}
|
|
4
|
+
export interface UpdateCampaignDialerConfigCommandInput extends UpdateCampaignDialerConfigRequest {}
|
|
5
|
+
export interface UpdateCampaignDialerConfigCommandOutput extends __MetadataBearer {}
|
|
8
6
|
declare const UpdateCampaignDialerConfigCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: UpdateCampaignDialerConfigCommandInput
|
|
8
|
+
input: UpdateCampaignDialerConfigCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
UpdateCampaignDialerConfigCommandInput,
|
|
13
11
|
UpdateCampaignDialerConfigCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const UpdateCampaignDialerConfigCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: UpdateCampaignDialerConfigCommandInput
|
|
17
|
+
input: UpdateCampaignDialerConfigCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
UpdateCampaignDialerConfigCommandInput,
|
|
22
20
|
UpdateCampaignDialerConfigCommandOutput,
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { UpdateCampaignNameRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface UpdateCampaignNameCommandInput
|
|
5
|
-
extends UpdateCampaignNameRequest {}
|
|
4
|
+
export interface UpdateCampaignNameCommandInput extends UpdateCampaignNameRequest {}
|
|
6
5
|
export interface UpdateCampaignNameCommandOutput extends __MetadataBearer {}
|
|
7
6
|
declare const UpdateCampaignNameCommand_base: {
|
|
8
7
|
new (
|
|
9
|
-
input: UpdateCampaignNameCommandInput
|
|
8
|
+
input: UpdateCampaignNameCommandInput,
|
|
10
9
|
): import("@smithy/core/client").CommandImpl<
|
|
11
10
|
UpdateCampaignNameCommandInput,
|
|
12
11
|
UpdateCampaignNameCommandOutput,
|
|
@@ -15,7 +14,7 @@ declare const UpdateCampaignNameCommand_base: {
|
|
|
15
14
|
import("..").ServiceOutputTypes
|
|
16
15
|
>;
|
|
17
16
|
new (
|
|
18
|
-
input: UpdateCampaignNameCommandInput
|
|
17
|
+
input: UpdateCampaignNameCommandInput,
|
|
19
18
|
): import("@smithy/core/client").CommandImpl<
|
|
20
19
|
UpdateCampaignNameCommandInput,
|
|
21
20
|
UpdateCampaignNameCommandOutput,
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { UpdateCampaignOutboundCallConfigRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface UpdateCampaignOutboundCallConfigCommandInput
|
|
5
|
-
|
|
6
|
-
export interface UpdateCampaignOutboundCallConfigCommandOutput
|
|
7
|
-
extends __MetadataBearer {}
|
|
4
|
+
export interface UpdateCampaignOutboundCallConfigCommandInput extends UpdateCampaignOutboundCallConfigRequest {}
|
|
5
|
+
export interface UpdateCampaignOutboundCallConfigCommandOutput extends __MetadataBearer {}
|
|
8
6
|
declare const UpdateCampaignOutboundCallConfigCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: UpdateCampaignOutboundCallConfigCommandInput
|
|
8
|
+
input: UpdateCampaignOutboundCallConfigCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
UpdateCampaignOutboundCallConfigCommandInput,
|
|
13
11
|
UpdateCampaignOutboundCallConfigCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const UpdateCampaignOutboundCallConfigCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: UpdateCampaignOutboundCallConfigCommandInput
|
|
17
|
+
input: UpdateCampaignOutboundCallConfigCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
UpdateCampaignOutboundCallConfigCommandInput,
|
|
22
20
|
UpdateCampaignOutboundCallConfigCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface ConnectCampaignsExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -15,8 +15,7 @@ export type GetCampaignStateBatchFailureCode =
|
|
|
15
15
|
export declare const EncryptionType: {
|
|
16
16
|
readonly KMS: "KMS";
|
|
17
17
|
};
|
|
18
|
-
export type EncryptionType =
|
|
19
|
-
(typeof EncryptionType)[keyof typeof EncryptionType];
|
|
18
|
+
export type EncryptionType = (typeof EncryptionType)[keyof typeof EncryptionType];
|
|
20
19
|
export declare const InstanceOnboardingJobFailureCode: {
|
|
21
20
|
readonly EVENT_BRIDGE_ACCESS_DENIED: "EVENT_BRIDGE_ACCESS_DENIED";
|
|
22
21
|
readonly EVENT_BRIDGE_MANAGED_RULE_LIMIT_EXCEEDED: "EVENT_BRIDGE_MANAGED_RULE_LIMIT_EXCEEDED";
|
|
@@ -5,9 +5,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
5
5
|
readonly name: "AccessDeniedException";
|
|
6
6
|
readonly $fault: "client";
|
|
7
7
|
xAmzErrorType?: string | undefined;
|
|
8
|
-
constructor(
|
|
9
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
10
|
-
);
|
|
8
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
11
9
|
}
|
|
12
10
|
export declare class ConflictException extends __BaseException {
|
|
13
11
|
readonly name: "ConflictException";
|
|
@@ -20,57 +18,43 @@ export declare class InternalServerException extends __BaseException {
|
|
|
20
18
|
readonly $fault: "server";
|
|
21
19
|
$retryable: {};
|
|
22
20
|
xAmzErrorType?: string | undefined;
|
|
23
|
-
constructor(
|
|
24
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
25
|
-
);
|
|
21
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
26
22
|
}
|
|
27
23
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
28
24
|
readonly name: "ResourceNotFoundException";
|
|
29
25
|
readonly $fault: "client";
|
|
30
26
|
xAmzErrorType?: string | undefined;
|
|
31
|
-
constructor(
|
|
32
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
33
|
-
);
|
|
27
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
34
28
|
}
|
|
35
29
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
36
30
|
readonly name: "ServiceQuotaExceededException";
|
|
37
31
|
readonly $fault: "client";
|
|
38
32
|
xAmzErrorType?: string | undefined;
|
|
39
|
-
constructor(
|
|
40
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
41
|
-
);
|
|
33
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
42
34
|
}
|
|
43
35
|
export declare class ThrottlingException extends __BaseException {
|
|
44
36
|
readonly name: "ThrottlingException";
|
|
45
37
|
readonly $fault: "client";
|
|
46
38
|
$retryable: {};
|
|
47
39
|
xAmzErrorType?: string | undefined;
|
|
48
|
-
constructor(
|
|
49
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
50
|
-
);
|
|
40
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
51
41
|
}
|
|
52
42
|
export declare class ValidationException extends __BaseException {
|
|
53
43
|
readonly name: "ValidationException";
|
|
54
44
|
readonly $fault: "client";
|
|
55
45
|
xAmzErrorType?: string | undefined;
|
|
56
|
-
constructor(
|
|
57
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
58
|
-
);
|
|
46
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
59
47
|
}
|
|
60
48
|
export declare class InvalidStateException extends __BaseException {
|
|
61
49
|
readonly name: "InvalidStateException";
|
|
62
50
|
readonly $fault: "client";
|
|
63
51
|
xAmzErrorType?: string | undefined;
|
|
64
|
-
constructor(
|
|
65
|
-
opts: __ExceptionOptionType<InvalidStateException, __BaseException>
|
|
66
|
-
);
|
|
52
|
+
constructor(opts: __ExceptionOptionType<InvalidStateException, __BaseException>);
|
|
67
53
|
}
|
|
68
54
|
export declare class InvalidCampaignStateException extends __BaseException {
|
|
69
55
|
readonly name: "InvalidCampaignStateException";
|
|
70
56
|
readonly $fault: "client";
|
|
71
57
|
state: CampaignState | undefined;
|
|
72
58
|
xAmzErrorType?: string | undefined;
|
|
73
|
-
constructor(
|
|
74
|
-
opts: __ExceptionOptionType<InvalidCampaignStateException, __BaseException>
|
|
75
|
-
);
|
|
59
|
+
constructor(opts: __ExceptionOptionType<InvalidCampaignStateException, __BaseException>);
|
|
76
60
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@smithy/types";
|
|
2
2
|
import { ConnectCampaignsClient } from "../ConnectCampaignsClient";
|
|
3
|
-
export interface ConnectCampaignsPaginationConfiguration
|
|
4
|
-
extends PaginationConfiguration {
|
|
3
|
+
export interface ConnectCampaignsPaginationConfiguration extends PaginationConfiguration {
|
|
5
4
|
client: ConnectCampaignsClient;
|
|
6
5
|
}
|