@aws-sdk/client-connect-contact-lens 3.168.0 → 3.170.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/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-connect-contact-lens
9
+
10
+
11
+
12
+
13
+
14
+ # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-connect-contact-lens
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-connect-contact-lens
@@ -1,10 +1,28 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
- import { ListRealtimeContactAnalysisSegmentsCommandInput, ListRealtimeContactAnalysisSegmentsCommandOutput } from "./commands/ListRealtimeContactAnalysisSegmentsCommand";
3
- import { ConnectContactLensClient } from "./ConnectContactLensClient";
4
-
5
- export declare class ConnectContactLens extends ConnectContactLensClient {
6
-
7
- listRealtimeContactAnalysisSegments(args: ListRealtimeContactAnalysisSegmentsCommandInput, options?: __HttpHandlerOptions): Promise<ListRealtimeContactAnalysisSegmentsCommandOutput>;
8
- listRealtimeContactAnalysisSegments(args: ListRealtimeContactAnalysisSegmentsCommandInput, cb: (err: any, data?: ListRealtimeContactAnalysisSegmentsCommandOutput) => void): void;
9
- listRealtimeContactAnalysisSegments(args: ListRealtimeContactAnalysisSegmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRealtimeContactAnalysisSegmentsCommandOutput) => void): void;
10
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import {
3
+ ListRealtimeContactAnalysisSegmentsCommandInput,
4
+ ListRealtimeContactAnalysisSegmentsCommandOutput,
5
+ } from "./commands/ListRealtimeContactAnalysisSegmentsCommand";
6
+ import { ConnectContactLensClient } from "./ConnectContactLensClient";
7
+
8
+ export declare class ConnectContactLens extends ConnectContactLensClient {
9
+ listRealtimeContactAnalysisSegments(
10
+ args: ListRealtimeContactAnalysisSegmentsCommandInput,
11
+ options?: __HttpHandlerOptions
12
+ ): Promise<ListRealtimeContactAnalysisSegmentsCommandOutput>;
13
+ listRealtimeContactAnalysisSegments(
14
+ args: ListRealtimeContactAnalysisSegmentsCommandInput,
15
+ cb: (
16
+ err: any,
17
+ data?: ListRealtimeContactAnalysisSegmentsCommandOutput
18
+ ) => void
19
+ ): void;
20
+ listRealtimeContactAnalysisSegments(
21
+ args: ListRealtimeContactAnalysisSegmentsCommandInput,
22
+ options: __HttpHandlerOptions,
23
+ cb: (
24
+ err: any,
25
+ data?: ListRealtimeContactAnalysisSegmentsCommandOutput
26
+ ) => void
27
+ ): void;
28
+ }
@@ -1,74 +1,136 @@
1
- import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
- import { ListRealtimeContactAnalysisSegmentsCommandInput, ListRealtimeContactAnalysisSegmentsCommandOutput } from "./commands/ListRealtimeContactAnalysisSegmentsCommand";
10
- export declare type ServiceInputTypes = ListRealtimeContactAnalysisSegmentsCommandInput;
11
- export declare type ServiceOutputTypes = ListRealtimeContactAnalysisSegmentsCommandOutput;
12
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
13
-
14
- requestHandler?: __HttpHandler;
15
-
16
- sha256?: __HashConstructor;
17
-
18
- urlParser?: __UrlParser;
19
-
20
- bodyLengthChecker?: __BodyLengthCalculator;
21
-
22
- streamCollector?: __StreamCollector;
23
-
24
- base64Decoder?: __Decoder;
25
-
26
- base64Encoder?: __Encoder;
27
-
28
- utf8Decoder?: __Decoder;
29
-
30
- utf8Encoder?: __Encoder;
31
-
32
- runtime?: string;
33
-
34
- disableHostPrefix?: boolean;
35
-
36
- maxAttempts?: number | __Provider<number>;
37
-
38
- retryMode?: string | __Provider<string>;
39
-
40
- logger?: __Logger;
41
-
42
- useDualstackEndpoint?: boolean | __Provider<boolean>;
43
-
44
- useFipsEndpoint?: boolean | __Provider<boolean>;
45
-
46
- serviceId?: string;
47
-
48
- region?: string | __Provider<string>;
49
-
50
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
51
-
52
- regionInfoProvider?: RegionInfoProvider;
53
-
54
- defaultUserAgentProvider?: Provider<__UserAgent>;
55
-
56
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
57
- }
58
- declare type ConnectContactLensClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
59
-
60
- export interface ConnectContactLensClientConfig extends ConnectContactLensClientConfigType {
61
- }
62
- declare type ConnectContactLensClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
63
-
64
- export interface ConnectContactLensClientResolvedConfig extends ConnectContactLensClientResolvedConfigType {
65
- }
66
-
67
- export declare class ConnectContactLensClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, ConnectContactLensClientResolvedConfig> {
68
-
69
- readonly config: ConnectContactLensClientResolvedConfig;
70
- constructor(configuration: ConnectContactLensClientConfig);
71
-
72
- destroy(): void;
73
- }
74
- export {};
1
+ import {
2
+ EndpointsInputConfig,
3
+ EndpointsResolvedConfig,
4
+ RegionInputConfig,
5
+ RegionResolvedConfig,
6
+ } from "@aws-sdk/config-resolver";
7
+ import {
8
+ HostHeaderInputConfig,
9
+ HostHeaderResolvedConfig,
10
+ } from "@aws-sdk/middleware-host-header";
11
+ import {
12
+ RetryInputConfig,
13
+ RetryResolvedConfig,
14
+ } from "@aws-sdk/middleware-retry";
15
+ import {
16
+ AwsAuthInputConfig,
17
+ AwsAuthResolvedConfig,
18
+ } from "@aws-sdk/middleware-signing";
19
+ import {
20
+ UserAgentInputConfig,
21
+ UserAgentResolvedConfig,
22
+ } from "@aws-sdk/middleware-user-agent";
23
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
24
+ import {
25
+ Client as __Client,
26
+ DefaultsMode,
27
+ SmithyConfiguration as __SmithyConfiguration,
28
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
29
+ } from "@aws-sdk/smithy-client";
30
+ import {
31
+ BodyLengthCalculator as __BodyLengthCalculator,
32
+ Credentials as __Credentials,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ RegionInfoProvider,
41
+ StreamCollector as __StreamCollector,
42
+ UrlParser as __UrlParser,
43
+ UserAgent as __UserAgent,
44
+ } from "@aws-sdk/types";
45
+ import {
46
+ ListRealtimeContactAnalysisSegmentsCommandInput,
47
+ ListRealtimeContactAnalysisSegmentsCommandOutput,
48
+ } from "./commands/ListRealtimeContactAnalysisSegmentsCommand";
49
+ export declare type ServiceInputTypes =
50
+ ListRealtimeContactAnalysisSegmentsCommandInput;
51
+ export declare type ServiceOutputTypes =
52
+ ListRealtimeContactAnalysisSegmentsCommandOutput;
53
+ export interface ClientDefaults
54
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
55
+ requestHandler?: __HttpHandler;
56
+
57
+ sha256?: __HashConstructor;
58
+
59
+ urlParser?: __UrlParser;
60
+
61
+ bodyLengthChecker?: __BodyLengthCalculator;
62
+
63
+ streamCollector?: __StreamCollector;
64
+
65
+ base64Decoder?: __Decoder;
66
+
67
+ base64Encoder?: __Encoder;
68
+
69
+ utf8Decoder?: __Decoder;
70
+
71
+ utf8Encoder?: __Encoder;
72
+
73
+ runtime?: string;
74
+
75
+ disableHostPrefix?: boolean;
76
+
77
+ maxAttempts?: number | __Provider<number>;
78
+
79
+ retryMode?: string | __Provider<string>;
80
+
81
+ logger?: __Logger;
82
+
83
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
84
+
85
+ useFipsEndpoint?: boolean | __Provider<boolean>;
86
+
87
+ serviceId?: string;
88
+
89
+ region?: string | __Provider<string>;
90
+
91
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
92
+
93
+ regionInfoProvider?: RegionInfoProvider;
94
+
95
+ defaultUserAgentProvider?: Provider<__UserAgent>;
96
+
97
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
98
+ }
99
+ declare type ConnectContactLensClientConfigType = Partial<
100
+ __SmithyConfiguration<__HttpHandlerOptions>
101
+ > &
102
+ ClientDefaults &
103
+ RegionInputConfig &
104
+ EndpointsInputConfig &
105
+ RetryInputConfig &
106
+ HostHeaderInputConfig &
107
+ AwsAuthInputConfig &
108
+ UserAgentInputConfig;
109
+
110
+ export interface ConnectContactLensClientConfig
111
+ extends ConnectContactLensClientConfigType {}
112
+ declare type ConnectContactLensClientResolvedConfigType =
113
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
114
+ Required<ClientDefaults> &
115
+ RegionResolvedConfig &
116
+ EndpointsResolvedConfig &
117
+ RetryResolvedConfig &
118
+ HostHeaderResolvedConfig &
119
+ AwsAuthResolvedConfig &
120
+ UserAgentResolvedConfig;
121
+
122
+ export interface ConnectContactLensClientResolvedConfig
123
+ extends ConnectContactLensClientResolvedConfigType {}
124
+
125
+ export declare class ConnectContactLensClient extends __Client<
126
+ __HttpHandlerOptions,
127
+ ServiceInputTypes,
128
+ ServiceOutputTypes,
129
+ ConnectContactLensClientResolvedConfig
130
+ > {
131
+ readonly config: ConnectContactLensClientResolvedConfig;
132
+ constructor(configuration: ConnectContactLensClientConfig);
133
+
134
+ destroy(): void;
135
+ }
136
+ export {};
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ConnectContactLensClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectContactLensClient";
4
- import { ListRealtimeContactAnalysisSegmentsRequest, ListRealtimeContactAnalysisSegmentsResponse } from "../models/models_0";
5
- export interface ListRealtimeContactAnalysisSegmentsCommandInput extends ListRealtimeContactAnalysisSegmentsRequest {
6
- }
7
- export interface ListRealtimeContactAnalysisSegmentsCommandOutput extends ListRealtimeContactAnalysisSegmentsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListRealtimeContactAnalysisSegmentsCommand extends $Command<ListRealtimeContactAnalysisSegmentsCommandInput, ListRealtimeContactAnalysisSegmentsCommandOutput, ConnectContactLensClientResolvedConfig> {
11
- readonly input: ListRealtimeContactAnalysisSegmentsCommandInput;
12
- constructor(input: ListRealtimeContactAnalysisSegmentsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectContactLensClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListRealtimeContactAnalysisSegmentsCommandInput, ListRealtimeContactAnalysisSegmentsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ConnectContactLensClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ConnectContactLensClient";
13
+ import {
14
+ ListRealtimeContactAnalysisSegmentsRequest,
15
+ ListRealtimeContactAnalysisSegmentsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListRealtimeContactAnalysisSegmentsCommandInput
18
+ extends ListRealtimeContactAnalysisSegmentsRequest {}
19
+ export interface ListRealtimeContactAnalysisSegmentsCommandOutput
20
+ extends ListRealtimeContactAnalysisSegmentsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListRealtimeContactAnalysisSegmentsCommand extends $Command<
24
+ ListRealtimeContactAnalysisSegmentsCommandInput,
25
+ ListRealtimeContactAnalysisSegmentsCommandOutput,
26
+ ConnectContactLensClientResolvedConfig
27
+ > {
28
+ readonly input: ListRealtimeContactAnalysisSegmentsCommandInput;
29
+ constructor(input: ListRealtimeContactAnalysisSegmentsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ConnectContactLensClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ListRealtimeContactAnalysisSegmentsCommandInput,
37
+ ListRealtimeContactAnalysisSegmentsCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1 +1 @@
1
- export * from "./ListRealtimeContactAnalysisSegmentsCommand";
1
+ export * from "./ListRealtimeContactAnalysisSegmentsCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +1,6 @@
1
- export * from "./ConnectContactLens";
2
- export * from "./ConnectContactLensClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { ConnectContactLensServiceException } from "./models/ConnectContactLensServiceException";
1
+ export * from "./ConnectContactLens";
2
+ export * from "./ConnectContactLensClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { ConnectContactLensServiceException } from "./models/ConnectContactLensServiceException";
@@ -1,6 +1,8 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class ConnectContactLensServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+
6
+ export declare class ConnectContactLensServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";
@@ -1,138 +1,153 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { ConnectContactLensServiceException as __BaseException } from "./ConnectContactLensServiceException";
3
-
4
- export declare class AccessDeniedException extends __BaseException {
5
- readonly name: "AccessDeniedException";
6
- readonly $fault: "client";
7
- Message: string | undefined;
8
-
9
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
10
- }
11
-
12
- export declare class InternalServiceException extends __BaseException {
13
- readonly name: "InternalServiceException";
14
- readonly $fault: "server";
15
- Message?: string;
16
-
17
- constructor(opts: __ExceptionOptionType<InternalServiceException, __BaseException>);
18
- }
19
-
20
- export declare class InvalidRequestException extends __BaseException {
21
- readonly name: "InvalidRequestException";
22
- readonly $fault: "client";
23
- Message?: string;
24
-
25
- constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
26
- }
27
- export interface ListRealtimeContactAnalysisSegmentsRequest {
28
-
29
- InstanceId: string | undefined;
30
-
31
- ContactId: string | undefined;
32
-
33
- MaxResults?: number;
34
-
35
- NextToken?: string;
36
- }
37
-
38
- export interface PointOfInterest {
39
-
40
- BeginOffsetMillis: number | undefined;
41
-
42
- EndOffsetMillis: number | undefined;
43
- }
44
-
45
- export interface CategoryDetails {
46
-
47
- PointsOfInterest: PointOfInterest[] | undefined;
48
- }
49
-
50
- export interface Categories {
51
-
52
- MatchedCategories: string[] | undefined;
53
-
54
- MatchedDetails: Record<string, CategoryDetails> | undefined;
55
- }
56
-
57
- export interface CharacterOffsets {
58
-
59
- BeginOffsetChar: number | undefined;
60
-
61
- EndOffsetChar: number | undefined;
62
- }
63
-
64
- export interface IssueDetected {
65
-
66
- CharacterOffsets: CharacterOffsets | undefined;
67
- }
68
- export declare enum SentimentValue {
69
- NEGATIVE = "NEGATIVE",
70
- NEUTRAL = "NEUTRAL",
71
- POSITIVE = "POSITIVE"
72
- }
73
-
74
- export interface Transcript {
75
-
76
- Id: string | undefined;
77
-
78
- ParticipantId: string | undefined;
79
-
80
- ParticipantRole: string | undefined;
81
-
82
- Content: string | undefined;
83
-
84
- BeginOffsetMillis: number | undefined;
85
-
86
- EndOffsetMillis: number | undefined;
87
-
88
- Sentiment: SentimentValue | string | undefined;
89
-
90
- IssuesDetected?: IssueDetected[];
91
- }
92
-
93
- export interface RealtimeContactAnalysisSegment {
94
-
95
- Transcript?: Transcript;
96
-
97
- Categories?: Categories;
98
- }
99
- export interface ListRealtimeContactAnalysisSegmentsResponse {
100
-
101
- Segments: RealtimeContactAnalysisSegment[] | undefined;
102
-
103
- NextToken?: string;
104
- }
105
-
106
- export declare class ResourceNotFoundException extends __BaseException {
107
- readonly name: "ResourceNotFoundException";
108
- readonly $fault: "client";
109
- Message?: string;
110
-
111
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
112
- }
113
-
114
- export declare class ThrottlingException extends __BaseException {
115
- readonly name: "ThrottlingException";
116
- readonly $fault: "client";
117
- Message: string | undefined;
118
-
119
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
120
- }
121
-
122
- export declare const ListRealtimeContactAnalysisSegmentsRequestFilterSensitiveLog: (obj: ListRealtimeContactAnalysisSegmentsRequest) => any;
123
-
124
- export declare const PointOfInterestFilterSensitiveLog: (obj: PointOfInterest) => any;
125
-
126
- export declare const CategoryDetailsFilterSensitiveLog: (obj: CategoryDetails) => any;
127
-
128
- export declare const CategoriesFilterSensitiveLog: (obj: Categories) => any;
129
-
130
- export declare const CharacterOffsetsFilterSensitiveLog: (obj: CharacterOffsets) => any;
131
-
132
- export declare const IssueDetectedFilterSensitiveLog: (obj: IssueDetected) => any;
133
-
134
- export declare const TranscriptFilterSensitiveLog: (obj: Transcript) => any;
135
-
136
- export declare const RealtimeContactAnalysisSegmentFilterSensitiveLog: (obj: RealtimeContactAnalysisSegment) => any;
137
-
138
- export declare const ListRealtimeContactAnalysisSegmentsResponseFilterSensitiveLog: (obj: ListRealtimeContactAnalysisSegmentsResponse) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ConnectContactLensServiceException as __BaseException } from "./ConnectContactLensServiceException";
3
+
4
+ export declare class AccessDeniedException extends __BaseException {
5
+ readonly name: "AccessDeniedException";
6
+ readonly $fault: "client";
7
+ Message: string | undefined;
8
+
9
+ constructor(
10
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
11
+ );
12
+ }
13
+
14
+ export declare class InternalServiceException extends __BaseException {
15
+ readonly name: "InternalServiceException";
16
+ readonly $fault: "server";
17
+ Message?: string;
18
+
19
+ constructor(
20
+ opts: __ExceptionOptionType<InternalServiceException, __BaseException>
21
+ );
22
+ }
23
+
24
+ export declare class InvalidRequestException extends __BaseException {
25
+ readonly name: "InvalidRequestException";
26
+ readonly $fault: "client";
27
+ Message?: string;
28
+
29
+ constructor(
30
+ opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
31
+ );
32
+ }
33
+ export interface ListRealtimeContactAnalysisSegmentsRequest {
34
+ InstanceId: string | undefined;
35
+
36
+ ContactId: string | undefined;
37
+
38
+ MaxResults?: number;
39
+
40
+ NextToken?: string;
41
+ }
42
+
43
+ export interface PointOfInterest {
44
+ BeginOffsetMillis: number | undefined;
45
+
46
+ EndOffsetMillis: number | undefined;
47
+ }
48
+
49
+ export interface CategoryDetails {
50
+ PointsOfInterest: PointOfInterest[] | undefined;
51
+ }
52
+
53
+ export interface Categories {
54
+ MatchedCategories: string[] | undefined;
55
+
56
+ MatchedDetails: Record<string, CategoryDetails> | undefined;
57
+ }
58
+
59
+ export interface CharacterOffsets {
60
+ BeginOffsetChar: number | undefined;
61
+
62
+ EndOffsetChar: number | undefined;
63
+ }
64
+
65
+ export interface IssueDetected {
66
+ CharacterOffsets: CharacterOffsets | undefined;
67
+ }
68
+ export declare enum SentimentValue {
69
+ NEGATIVE = "NEGATIVE",
70
+ NEUTRAL = "NEUTRAL",
71
+ POSITIVE = "POSITIVE",
72
+ }
73
+
74
+ export interface Transcript {
75
+ Id: string | undefined;
76
+
77
+ ParticipantId: string | undefined;
78
+
79
+ ParticipantRole: string | undefined;
80
+
81
+ Content: string | undefined;
82
+
83
+ BeginOffsetMillis: number | undefined;
84
+
85
+ EndOffsetMillis: number | undefined;
86
+
87
+ Sentiment: SentimentValue | string | undefined;
88
+
89
+ IssuesDetected?: IssueDetected[];
90
+ }
91
+
92
+ export interface RealtimeContactAnalysisSegment {
93
+ Transcript?: Transcript;
94
+
95
+ Categories?: Categories;
96
+ }
97
+ export interface ListRealtimeContactAnalysisSegmentsResponse {
98
+ Segments: RealtimeContactAnalysisSegment[] | undefined;
99
+
100
+ NextToken?: string;
101
+ }
102
+
103
+ export declare class ResourceNotFoundException extends __BaseException {
104
+ readonly name: "ResourceNotFoundException";
105
+ readonly $fault: "client";
106
+ Message?: string;
107
+
108
+ constructor(
109
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
110
+ );
111
+ }
112
+
113
+ export declare class ThrottlingException extends __BaseException {
114
+ readonly name: "ThrottlingException";
115
+ readonly $fault: "client";
116
+ Message: string | undefined;
117
+
118
+ constructor(
119
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
120
+ );
121
+ }
122
+
123
+ export declare const ListRealtimeContactAnalysisSegmentsRequestFilterSensitiveLog: (
124
+ obj: ListRealtimeContactAnalysisSegmentsRequest
125
+ ) => any;
126
+
127
+ export declare const PointOfInterestFilterSensitiveLog: (
128
+ obj: PointOfInterest
129
+ ) => any;
130
+
131
+ export declare const CategoryDetailsFilterSensitiveLog: (
132
+ obj: CategoryDetails
133
+ ) => any;
134
+
135
+ export declare const CategoriesFilterSensitiveLog: (obj: Categories) => any;
136
+
137
+ export declare const CharacterOffsetsFilterSensitiveLog: (
138
+ obj: CharacterOffsets
139
+ ) => any;
140
+
141
+ export declare const IssueDetectedFilterSensitiveLog: (
142
+ obj: IssueDetected
143
+ ) => any;
144
+
145
+ export declare const TranscriptFilterSensitiveLog: (obj: Transcript) => any;
146
+
147
+ export declare const RealtimeContactAnalysisSegmentFilterSensitiveLog: (
148
+ obj: RealtimeContactAnalysisSegment
149
+ ) => any;
150
+
151
+ export declare const ListRealtimeContactAnalysisSegmentsResponseFilterSensitiveLog: (
152
+ obj: ListRealtimeContactAnalysisSegmentsResponse
153
+ ) => any;
@@ -1,6 +1,7 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { ConnectContactLens } from "../ConnectContactLens";
3
- import { ConnectContactLensClient } from "../ConnectContactLensClient";
4
- export interface ConnectContactLensPaginationConfiguration extends PaginationConfiguration {
5
- client: ConnectContactLens | ConnectContactLensClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { ConnectContactLens } from "../ConnectContactLens";
3
+ import { ConnectContactLensClient } from "../ConnectContactLensClient";
4
+ export interface ConnectContactLensPaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: ConnectContactLens | ConnectContactLensClient;
7
+ }
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListRealtimeContactAnalysisSegmentsCommandInput, ListRealtimeContactAnalysisSegmentsCommandOutput } from "../commands/ListRealtimeContactAnalysisSegmentsCommand";
3
- import { ConnectContactLensPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListRealtimeContactAnalysisSegments(config: ConnectContactLensPaginationConfiguration, input: ListRealtimeContactAnalysisSegmentsCommandInput, ...additionalArguments: any): Paginator<ListRealtimeContactAnalysisSegmentsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListRealtimeContactAnalysisSegmentsCommandInput,
4
+ ListRealtimeContactAnalysisSegmentsCommandOutput,
5
+ } from "../commands/ListRealtimeContactAnalysisSegmentsCommand";
6
+ import { ConnectContactLensPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListRealtimeContactAnalysisSegments(
8
+ config: ConnectContactLensPaginationConfiguration,
9
+ input: ListRealtimeContactAnalysisSegmentsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListRealtimeContactAnalysisSegmentsCommandOutput>;
@@ -1,2 +1,2 @@
1
- export * from "./Interfaces";
2
- export * from "./ListRealtimeContactAnalysisSegmentsPaginator";
1
+ export * from "./Interfaces";
2
+ export * from "./ListRealtimeContactAnalysisSegmentsPaginator";
@@ -1,5 +1,17 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { ListRealtimeContactAnalysisSegmentsCommandInput, ListRealtimeContactAnalysisSegmentsCommandOutput } from "../commands/ListRealtimeContactAnalysisSegmentsCommand";
4
- export declare const serializeAws_restJson1ListRealtimeContactAnalysisSegmentsCommand: (input: ListRealtimeContactAnalysisSegmentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
5
- export declare const deserializeAws_restJson1ListRealtimeContactAnalysisSegmentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRealtimeContactAnalysisSegmentsCommandOutput>;
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ ListRealtimeContactAnalysisSegmentsCommandInput,
8
+ ListRealtimeContactAnalysisSegmentsCommandOutput,
9
+ } from "../commands/ListRealtimeContactAnalysisSegmentsCommand";
10
+ export declare const serializeAws_restJson1ListRealtimeContactAnalysisSegmentsCommand: (
11
+ input: ListRealtimeContactAnalysisSegmentsCommandInput,
12
+ context: __SerdeContext
13
+ ) => Promise<__HttpRequest>;
14
+ export declare const deserializeAws_restJson1ListRealtimeContactAnalysisSegmentsCommand: (
15
+ output: __HttpResponse,
16
+ context: __SerdeContext
17
+ ) => Promise<ListRealtimeContactAnalysisSegmentsCommandOutput>;
@@ -1,38 +1,68 @@
1
- import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
- import { ConnectContactLensClientConfig } from "./ConnectContactLensClient";
3
-
4
- export declare const getRuntimeConfig: (config: ConnectContactLensClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<any>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { ConnectContactLensClientConfig } from "./ConnectContactLensClient";
3
+
4
+ export declare const getRuntimeConfig: (
5
+ config: ConnectContactLensClientConfig
6
+ ) => {
7
+ runtime: string;
8
+ defaultsMode: import("@aws-sdk/types").Provider<
9
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
10
+ >;
11
+ base64Decoder: import("@aws-sdk/types").Decoder;
12
+ base64Encoder: import("@aws-sdk/types").Encoder;
13
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
14
+ credentialDefaultProvider: (
15
+ input: any
16
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
17
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
18
+ import("@aws-sdk/types").UserAgent
19
+ >;
20
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
21
+ region: string | import("@aws-sdk/types").Provider<any>;
22
+ requestHandler:
23
+ | (import("@aws-sdk/types").RequestHandler<
24
+ any,
25
+ any,
26
+ import("@aws-sdk/types").HttpHandlerOptions
27
+ > &
28
+ import("@aws-sdk/protocol-http").HttpHandler)
29
+ | RequestHandler;
30
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
31
+ sha256: import("@aws-sdk/types").HashConstructor;
32
+ streamCollector: import("@aws-sdk/types").StreamCollector;
33
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
34
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
35
+ utf8Decoder: import("@aws-sdk/types").Decoder;
36
+ utf8Encoder: import("@aws-sdk/types").Encoder;
37
+ apiVersion: string;
38
+ urlParser: import("@aws-sdk/types").UrlParser;
39
+ disableHostPrefix: boolean;
40
+ logger: import("@aws-sdk/types").Logger;
41
+ serviceId: string;
42
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
43
+ endpoint?:
44
+ | string
45
+ | import("@aws-sdk/types").Endpoint
46
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
47
+ | undefined;
48
+ tls?: boolean | undefined;
49
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
50
+ credentials?:
51
+ | import("@aws-sdk/types").Credentials
52
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
53
+ | undefined;
54
+ signer?:
55
+ | import("@aws-sdk/types").RequestSigner
56
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
57
+ | undefined;
58
+ signingEscapePath?: boolean | undefined;
59
+ systemClockOffset?: number | undefined;
60
+ signingRegion?: string | undefined;
61
+ signerConstructor?:
62
+ | (new (
63
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
64
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
65
+ ) => import("@aws-sdk/types").RequestSigner)
66
+ | undefined;
67
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
68
+ };
@@ -1,38 +1,68 @@
1
- import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
- import { ConnectContactLensClientConfig } from "./ConnectContactLensClient";
3
-
4
- export declare const getRuntimeConfig: (config: ConnectContactLensClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<string>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { ConnectContactLensClientConfig } from "./ConnectContactLensClient";
3
+
4
+ export declare const getRuntimeConfig: (
5
+ config: ConnectContactLensClientConfig
6
+ ) => {
7
+ runtime: string;
8
+ defaultsMode: import("@aws-sdk/types").Provider<
9
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
10
+ >;
11
+ base64Decoder: import("@aws-sdk/types").Decoder;
12
+ base64Encoder: import("@aws-sdk/types").Encoder;
13
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
14
+ credentialDefaultProvider: (
15
+ input: any
16
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
17
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
18
+ import("@aws-sdk/types").UserAgent
19
+ >;
20
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
21
+ region: string | import("@aws-sdk/types").Provider<string>;
22
+ requestHandler:
23
+ | (import("@aws-sdk/types").RequestHandler<
24
+ any,
25
+ any,
26
+ import("@aws-sdk/types").HttpHandlerOptions
27
+ > &
28
+ import("@aws-sdk/protocol-http").HttpHandler)
29
+ | RequestHandler;
30
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
31
+ sha256: import("@aws-sdk/types").HashConstructor;
32
+ streamCollector: import("@aws-sdk/types").StreamCollector;
33
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
34
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
35
+ utf8Decoder: import("@aws-sdk/types").Decoder;
36
+ utf8Encoder: import("@aws-sdk/types").Encoder;
37
+ apiVersion: string;
38
+ urlParser: import("@aws-sdk/types").UrlParser;
39
+ disableHostPrefix: boolean;
40
+ logger: import("@aws-sdk/types").Logger;
41
+ serviceId: string;
42
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
43
+ endpoint?:
44
+ | string
45
+ | import("@aws-sdk/types").Endpoint
46
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
47
+ | undefined;
48
+ tls?: boolean | undefined;
49
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
50
+ credentials?:
51
+ | import("@aws-sdk/types").Credentials
52
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
53
+ | undefined;
54
+ signer?:
55
+ | import("@aws-sdk/types").RequestSigner
56
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
57
+ | undefined;
58
+ signingEscapePath?: boolean | undefined;
59
+ systemClockOffset?: number | undefined;
60
+ signingRegion?: string | undefined;
61
+ signerConstructor?:
62
+ | (new (
63
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
64
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
65
+ ) => import("@aws-sdk/types").RequestSigner)
66
+ | undefined;
67
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
68
+ };
@@ -1,37 +1,69 @@
1
- import { ConnectContactLensClientConfig } from "./ConnectContactLensClient";
2
-
3
- export declare const getRuntimeConfig: (config: ConnectContactLensClientConfig) => {
4
- runtime: string;
5
- sha256: import("@aws-sdk/types").HashConstructor;
6
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
7
- apiVersion: string;
8
- urlParser: import("@aws-sdk/types").UrlParser;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- streamCollector: import("@aws-sdk/types").StreamCollector;
11
- base64Decoder: import("@aws-sdk/types").Decoder;
12
- base64Encoder: import("@aws-sdk/types").Encoder;
13
- utf8Decoder: import("@aws-sdk/types").Decoder;
14
- utf8Encoder: import("@aws-sdk/types").Encoder;
15
- disableHostPrefix: boolean;
16
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
17
- retryMode: string | import("@aws-sdk/types").Provider<string>;
18
- logger: import("@aws-sdk/types").Logger;
19
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
21
- serviceId: string;
22
- region: string | import("@aws-sdk/types").Provider<any>;
23
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
24
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
25
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
26
- defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
27
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
- tls?: boolean | undefined;
29
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
30
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
31
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
32
- signingEscapePath?: boolean | undefined;
33
- systemClockOffset?: number | undefined;
34
- signingRegion?: string | undefined;
35
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
36
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
37
- };
1
+ import { ConnectContactLensClientConfig } from "./ConnectContactLensClient";
2
+
3
+ export declare const getRuntimeConfig: (
4
+ config: ConnectContactLensClientConfig
5
+ ) => {
6
+ runtime: string;
7
+ sha256: import("@aws-sdk/types").HashConstructor;
8
+ requestHandler:
9
+ | (import("@aws-sdk/types").RequestHandler<
10
+ any,
11
+ any,
12
+ import("@aws-sdk/types").HttpHandlerOptions
13
+ > &
14
+ import("@aws-sdk/protocol-http").HttpHandler)
15
+ | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
16
+ apiVersion: string;
17
+ urlParser: import("@aws-sdk/types").UrlParser;
18
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
19
+ streamCollector: import("@aws-sdk/types").StreamCollector;
20
+ base64Decoder: import("@aws-sdk/types").Decoder;
21
+ base64Encoder: import("@aws-sdk/types").Encoder;
22
+ utf8Decoder: import("@aws-sdk/types").Decoder;
23
+ utf8Encoder: import("@aws-sdk/types").Encoder;
24
+ disableHostPrefix: boolean;
25
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
26
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
27
+ logger: import("@aws-sdk/types").Logger;
28
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
29
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
30
+ serviceId: string;
31
+ region: string | import("@aws-sdk/types").Provider<any>;
32
+ credentialDefaultProvider: (
33
+ input: any
34
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
35
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
36
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
37
+ import("@aws-sdk/types").UserAgent
38
+ >;
39
+ defaultsMode:
40
+ | import("@aws-sdk/smithy-client").DefaultsMode
41
+ | import("@aws-sdk/types").Provider<
42
+ import("@aws-sdk/smithy-client").DefaultsMode
43
+ >;
44
+ endpoint?:
45
+ | string
46
+ | import("@aws-sdk/types").Endpoint
47
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
48
+ | undefined;
49
+ tls?: boolean | undefined;
50
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
51
+ credentials?:
52
+ | import("@aws-sdk/types").Credentials
53
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
54
+ | undefined;
55
+ signer?:
56
+ | import("@aws-sdk/types").RequestSigner
57
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
58
+ | undefined;
59
+ signingEscapePath?: boolean | undefined;
60
+ systemClockOffset?: number | undefined;
61
+ signingRegion?: string | undefined;
62
+ signerConstructor?:
63
+ | (new (
64
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
65
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
66
+ ) => import("@aws-sdk/types").RequestSigner)
67
+ | undefined;
68
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
69
+ };
@@ -1,11 +1,13 @@
1
- import { Logger as __Logger } from "@aws-sdk/types";
2
- import { ConnectContactLensClientConfig } from "./ConnectContactLensClient";
3
-
4
- export declare const getRuntimeConfig: (config: ConnectContactLensClientConfig) => {
5
- apiVersion: string;
6
- disableHostPrefix: boolean;
7
- logger: __Logger;
8
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
9
- serviceId: string;
10
- urlParser: import("@aws-sdk/types").UrlParser;
11
- };
1
+ import { Logger as __Logger } from "@aws-sdk/types";
2
+ import { ConnectContactLensClientConfig } from "./ConnectContactLensClient";
3
+
4
+ export declare const getRuntimeConfig: (
5
+ config: ConnectContactLensClientConfig
6
+ ) => {
7
+ apiVersion: string;
8
+ disableHostPrefix: boolean;
9
+ logger: __Logger;
10
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
11
+ serviceId: string;
12
+ urlParser: import("@aws-sdk/types").UrlParser;
13
+ };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-connect-contact-lens",
3
3
  "description": "AWS SDK for JavaScript Connect Contact Lens Client for Node.js, Browser and React Native",
4
- "version": "3.168.0",
4
+ "version": "3.170.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",
@@ -19,45 +19,45 @@
19
19
  "dependencies": {
20
20
  "@aws-crypto/sha256-browser": "2.0.0",
21
21
  "@aws-crypto/sha256-js": "2.0.0",
22
- "@aws-sdk/client-sts": "3.168.0",
23
- "@aws-sdk/config-resolver": "3.168.0",
24
- "@aws-sdk/credential-provider-node": "3.168.0",
25
- "@aws-sdk/fetch-http-handler": "3.168.0",
26
- "@aws-sdk/hash-node": "3.168.0",
27
- "@aws-sdk/invalid-dependency": "3.168.0",
28
- "@aws-sdk/middleware-content-length": "3.168.0",
29
- "@aws-sdk/middleware-host-header": "3.168.0",
30
- "@aws-sdk/middleware-logger": "3.168.0",
31
- "@aws-sdk/middleware-recursion-detection": "3.168.0",
32
- "@aws-sdk/middleware-retry": "3.168.0",
33
- "@aws-sdk/middleware-serde": "3.168.0",
34
- "@aws-sdk/middleware-signing": "3.168.0",
35
- "@aws-sdk/middleware-stack": "3.168.0",
36
- "@aws-sdk/middleware-user-agent": "3.168.0",
37
- "@aws-sdk/node-config-provider": "3.168.0",
38
- "@aws-sdk/node-http-handler": "3.168.0",
39
- "@aws-sdk/protocol-http": "3.168.0",
40
- "@aws-sdk/smithy-client": "3.168.0",
41
- "@aws-sdk/types": "3.168.0",
42
- "@aws-sdk/url-parser": "3.168.0",
43
- "@aws-sdk/util-base64-browser": "3.168.0",
44
- "@aws-sdk/util-base64-node": "3.168.0",
45
- "@aws-sdk/util-body-length-browser": "3.168.0",
46
- "@aws-sdk/util-body-length-node": "3.168.0",
47
- "@aws-sdk/util-defaults-mode-browser": "3.168.0",
48
- "@aws-sdk/util-defaults-mode-node": "3.168.0",
49
- "@aws-sdk/util-user-agent-browser": "3.168.0",
50
- "@aws-sdk/util-user-agent-node": "3.168.0",
51
- "@aws-sdk/util-utf8-browser": "3.168.0",
52
- "@aws-sdk/util-utf8-node": "3.168.0",
22
+ "@aws-sdk/client-sts": "3.170.0",
23
+ "@aws-sdk/config-resolver": "3.170.0",
24
+ "@aws-sdk/credential-provider-node": "3.170.0",
25
+ "@aws-sdk/fetch-http-handler": "3.170.0",
26
+ "@aws-sdk/hash-node": "3.170.0",
27
+ "@aws-sdk/invalid-dependency": "3.170.0",
28
+ "@aws-sdk/middleware-content-length": "3.170.0",
29
+ "@aws-sdk/middleware-host-header": "3.170.0",
30
+ "@aws-sdk/middleware-logger": "3.170.0",
31
+ "@aws-sdk/middleware-recursion-detection": "3.170.0",
32
+ "@aws-sdk/middleware-retry": "3.170.0",
33
+ "@aws-sdk/middleware-serde": "3.170.0",
34
+ "@aws-sdk/middleware-signing": "3.170.0",
35
+ "@aws-sdk/middleware-stack": "3.170.0",
36
+ "@aws-sdk/middleware-user-agent": "3.170.0",
37
+ "@aws-sdk/node-config-provider": "3.170.0",
38
+ "@aws-sdk/node-http-handler": "3.170.0",
39
+ "@aws-sdk/protocol-http": "3.170.0",
40
+ "@aws-sdk/smithy-client": "3.170.0",
41
+ "@aws-sdk/types": "3.170.0",
42
+ "@aws-sdk/url-parser": "3.170.0",
43
+ "@aws-sdk/util-base64-browser": "3.170.0",
44
+ "@aws-sdk/util-base64-node": "3.170.0",
45
+ "@aws-sdk/util-body-length-browser": "3.170.0",
46
+ "@aws-sdk/util-body-length-node": "3.170.0",
47
+ "@aws-sdk/util-defaults-mode-browser": "3.170.0",
48
+ "@aws-sdk/util-defaults-mode-node": "3.170.0",
49
+ "@aws-sdk/util-user-agent-browser": "3.170.0",
50
+ "@aws-sdk/util-user-agent-node": "3.170.0",
51
+ "@aws-sdk/util-utf8-browser": "3.170.0",
52
+ "@aws-sdk/util-utf8-node": "3.170.0",
53
53
  "tslib": "^2.3.1"
54
54
  },
55
55
  "devDependencies": {
56
- "@aws-sdk/service-client-documentation-generator": "3.168.0",
56
+ "@aws-sdk/service-client-documentation-generator": "3.170.0",
57
57
  "@tsconfig/recommended": "1.0.1",
58
58
  "@types/node": "^12.7.5",
59
59
  "concurrently": "7.0.0",
60
- "downlevel-dts": "0.7.0",
60
+ "downlevel-dts": "0.10.1",
61
61
  "rimraf": "3.0.2",
62
62
  "typedoc": "0.19.2",
63
63
  "typescript": "~4.6.2"