@aws-sdk/client-connect 3.1110.0 → 3.1112.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.
Files changed (86) hide show
  1. package/README.md +35 -0
  2. package/dist-cjs/index.js +206 -9
  3. package/dist-es/Connect.js +12 -0
  4. package/dist-es/commands/CreateExtractionDefinitionCommand.js +4 -0
  5. package/dist-es/commands/DeleteExtractionDefinitionCommand.js +4 -0
  6. package/dist-es/commands/DescribeExtractionDefinitionCommand.js +4 -0
  7. package/dist-es/commands/ListExtractionDefinitionsCommand.js +4 -0
  8. package/dist-es/commands/UpdateExtractionDefinitionCommand.js +4 -0
  9. package/dist-es/commands/index.js +5 -0
  10. package/dist-es/models/enums.js +7 -0
  11. package/dist-es/pagination/ListExtractionDefinitionsPaginator.js +4 -0
  12. package/dist-es/pagination/index.js +1 -0
  13. package/dist-es/schemas/schemas_0.js +146 -8
  14. package/dist-types/Connect.d.ts +42 -0
  15. package/dist-types/ConnectClient.d.ts +7 -2
  16. package/dist-types/commands/CreateExtractionDefinitionCommand.d.ts +111 -0
  17. package/dist-types/commands/CreateRuleCommand.d.ts +9 -2
  18. package/dist-types/commands/CreateTestCaseCommand.d.ts +1 -1
  19. package/dist-types/commands/CreateTrafficDistributionGroupCommand.d.ts +1 -1
  20. package/dist-types/commands/CreateUseCaseCommand.d.ts +1 -1
  21. package/dist-types/commands/DeleteExtractionDefinitionCommand.d.ts +85 -0
  22. package/dist-types/commands/DescribeExtractionDefinitionCommand.d.ts +107 -0
  23. package/dist-types/commands/DescribeRuleCommand.d.ts +9 -2
  24. package/dist-types/commands/GetCurrentMetricDataCommand.d.ts +1 -1
  25. package/dist-types/commands/GetCurrentUserDataCommand.d.ts +1 -2
  26. package/dist-types/commands/ListExtractionDefinitionsCommand.d.ts +98 -0
  27. package/dist-types/commands/ListRulesCommand.d.ts +3 -3
  28. package/dist-types/commands/SearchContactEvaluationsCommand.d.ts +1 -1
  29. package/dist-types/commands/SearchContactFlowModulesCommand.d.ts +1 -1
  30. package/dist-types/commands/SearchRulesCommand.d.ts +2 -2
  31. package/dist-types/commands/StartAssistantContactCommand.d.ts +4 -1
  32. package/dist-types/commands/UpdateExtractionDefinitionCommand.d.ts +100 -0
  33. package/dist-types/commands/UpdateRuleCommand.d.ts +8 -1
  34. package/dist-types/commands/UpdateViewMetadataCommand.d.ts +2 -1
  35. package/dist-types/commands/UpdateWorkspaceMetadataCommand.d.ts +1 -1
  36. package/dist-types/commands/UpdateWorkspacePageCommand.d.ts +1 -1
  37. package/dist-types/commands/UpdateWorkspaceThemeCommand.d.ts +1 -1
  38. package/dist-types/commands/UpdateWorkspaceVisibilityCommand.d.ts +1 -1
  39. package/dist-types/commands/index.d.ts +5 -0
  40. package/dist-types/models/enums.d.ts +15 -0
  41. package/dist-types/models/models_0.d.ts +128 -188
  42. package/dist-types/models/models_1.d.ts +285 -492
  43. package/dist-types/models/models_2.d.ts +1736 -1606
  44. package/dist-types/models/models_3.d.ts +2192 -2081
  45. package/dist-types/models/models_4.d.ts +367 -7
  46. package/dist-types/pagination/ListExtractionDefinitionsPaginator.d.ts +7 -0
  47. package/dist-types/pagination/index.d.ts +1 -0
  48. package/dist-types/runtimeConfig.browser.d.ts +40 -40
  49. package/dist-types/runtimeConfig.d.ts +36 -36
  50. package/dist-types/runtimeConfig.native.d.ts +38 -38
  51. package/dist-types/runtimeConfig.shared.d.ts +2 -2
  52. package/dist-types/schemas/schemas_0.d.ts +22 -0
  53. package/dist-types/ts3.4/Connect.d.ts +92 -0
  54. package/dist-types/ts3.4/ConnectClient.d.ts +30 -0
  55. package/dist-types/ts3.4/commands/CreateExtractionDefinitionCommand.d.ts +42 -0
  56. package/dist-types/ts3.4/commands/CreateTestCaseCommand.d.ts +1 -1
  57. package/dist-types/ts3.4/commands/CreateTrafficDistributionGroupCommand.d.ts +1 -1
  58. package/dist-types/ts3.4/commands/CreateUseCaseCommand.d.ts +1 -1
  59. package/dist-types/ts3.4/commands/DeleteExtractionDefinitionCommand.d.ts +42 -0
  60. package/dist-types/ts3.4/commands/DescribeExtractionDefinitionCommand.d.ts +42 -0
  61. package/dist-types/ts3.4/commands/GetCurrentMetricDataCommand.d.ts +1 -1
  62. package/dist-types/ts3.4/commands/GetCurrentUserDataCommand.d.ts +1 -2
  63. package/dist-types/ts3.4/commands/ListExtractionDefinitionsCommand.d.ts +42 -0
  64. package/dist-types/ts3.4/commands/SearchContactEvaluationsCommand.d.ts +1 -1
  65. package/dist-types/ts3.4/commands/SearchContactFlowModulesCommand.d.ts +1 -1
  66. package/dist-types/ts3.4/commands/UpdateExtractionDefinitionCommand.d.ts +42 -0
  67. package/dist-types/ts3.4/commands/UpdateViewMetadataCommand.d.ts +2 -1
  68. package/dist-types/ts3.4/commands/UpdateWorkspaceMetadataCommand.d.ts +1 -1
  69. package/dist-types/ts3.4/commands/UpdateWorkspacePageCommand.d.ts +1 -1
  70. package/dist-types/ts3.4/commands/UpdateWorkspaceThemeCommand.d.ts +1 -1
  71. package/dist-types/ts3.4/commands/UpdateWorkspaceVisibilityCommand.d.ts +1 -1
  72. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  73. package/dist-types/ts3.4/models/enums.d.ts +8 -0
  74. package/dist-types/ts3.4/models/models_0.d.ts +31 -46
  75. package/dist-types/ts3.4/models/models_1.d.ts +72 -72
  76. package/dist-types/ts3.4/models/models_2.d.ts +89 -102
  77. package/dist-types/ts3.4/models/models_3.d.ts +112 -104
  78. package/dist-types/ts3.4/models/models_4.d.ts +109 -14
  79. package/dist-types/ts3.4/pagination/ListExtractionDefinitionsPaginator.d.ts +11 -0
  80. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  81. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +56 -58
  82. package/dist-types/ts3.4/runtimeConfig.d.ts +58 -58
  83. package/dist-types/ts3.4/runtimeConfig.native.d.ts +60 -62
  84. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +3 -3
  85. package/dist-types/ts3.4/schemas/schemas_0.d.ts +22 -0
  86. package/package.json +5 -5
@@ -1,8 +1,15 @@
1
1
  import {
2
2
  AnsweringMachineDetectionStatus,
3
3
  Channel,
4
+ ContactFlowModuleState,
5
+ ContactFlowModuleStatus,
6
+ ContactFlowState,
7
+ ContactFlowStatus,
8
+ ContactFlowType,
4
9
  ContactInitiationMethod,
5
10
  DisconnectOnCustomerExitParticipantType,
11
+ EvaluationFormItemEnablementAction,
12
+ EvaluationFormItemEnablementOperator,
6
13
  EvaluationFormQuestionType,
7
14
  EvaluationFormValidationStatus,
8
15
  EvaluationFormVersionStatus,
@@ -12,6 +19,7 @@ import {
12
19
  TestCaseStatus,
13
20
  ViewStatus,
14
21
  ViewType,
22
+ Visibility,
15
23
  } from "./enums";
16
24
  import {
17
25
  AdditionalEmailRecipients,
@@ -21,6 +29,7 @@ import {
21
29
  Campaign,
22
30
  Endpoint,
23
31
  EvaluationFormAutoEvaluationConfiguration,
32
+ EvaluationFormItemEnablementExpression,
24
33
  EvaluationFormLanguageConfiguration,
25
34
  EvaluationFormQuestionScoringConfiguration,
26
35
  EvaluationFormQuestionTypeProperties,
@@ -51,33 +60,23 @@ import {
51
60
  RecordingInfo,
52
61
  TaskTemplateInfoV2,
53
62
  WisdomInfo,
63
+ WorkspaceTheme,
54
64
  } from "./models_1";
65
+ import { BooleanCondition, DateTimeCondition, DecimalCondition, NumberCondition } from "./models_2";
55
66
  import {
56
- BooleanCondition,
67
+ ChatMessage,
57
68
  ContactFlowModuleSearchFilter,
58
69
  ContactFlowSearchFilter,
59
- DateTimeCondition,
60
- DecimalCondition,
61
- EvaluationSearchFilter,
62
- NumberCondition,
63
- } from "./models_2";
64
- import {
65
- AgentStatusSearchCriteria,
66
- ChatMessage,
67
- ContactFlowModuleSearchCriteria,
68
- ContactFlowSearchCriteria,
69
70
  ContactSearchSummaryAgentInfo,
70
71
  ContactSearchSummaryAiAgentInfo,
71
72
  ContactSearchSummaryQueueInfo,
72
- DataTableSearchCriteria,
73
73
  DataTableSearchFilter,
74
74
  DateCondition,
75
75
  EmailAddressInfo,
76
- EmailAddressSearchCriteria,
77
76
  EmailAddressSearchFilter,
78
77
  EmailAttachment,
79
- EvaluationFormItemEnablementConfiguration,
80
78
  EvaluationFormSearchFilter,
79
+ EvaluationSearchFilter,
81
80
  HierarchyGroupCondition,
82
81
  HoursOfOperationSearchFilter,
83
82
  InboundAdditionalRecipients,
@@ -105,6 +104,102 @@ import {
105
104
  WorkspaceAssociationSearchFilter,
106
105
  WorkspaceSearchFilter,
107
106
  } from "./models_3";
107
+ export interface UpdateViewMetadataResponse {}
108
+ export interface UpdateWorkspaceMetadataRequest {
109
+ InstanceId: string | undefined;
110
+ WorkspaceId: string | undefined;
111
+ Name?: string | undefined;
112
+ Description?: string | undefined;
113
+ Title?: string | undefined;
114
+ }
115
+ export interface UpdateWorkspaceMetadataResponse {}
116
+ export interface UpdateWorkspacePageRequest {
117
+ InstanceId: string | undefined;
118
+ WorkspaceId: string | undefined;
119
+ Page: string | undefined;
120
+ NewPage?: string | undefined;
121
+ ResourceArn?: string | undefined;
122
+ Slug?: string | undefined;
123
+ InputData?: string | undefined;
124
+ }
125
+ export interface UpdateWorkspacePageResponse {}
126
+ export interface UpdateWorkspaceThemeRequest {
127
+ InstanceId: string | undefined;
128
+ WorkspaceId: string | undefined;
129
+ Theme?: WorkspaceTheme | undefined;
130
+ }
131
+ export interface UpdateWorkspaceThemeResponse {}
132
+ export interface UpdateWorkspaceVisibilityRequest {
133
+ InstanceId: string | undefined;
134
+ WorkspaceId: string | undefined;
135
+ Visibility: Visibility | undefined;
136
+ }
137
+ export interface UpdateWorkspaceVisibilityResponse {}
138
+ export interface EvaluationFormItemEnablementCondition {
139
+ Operands: EvaluationFormItemEnablementConditionOperand[] | undefined;
140
+ Operator?: EvaluationFormItemEnablementOperator | undefined;
141
+ }
142
+ export type EvaluationFormItemEnablementConditionOperand =
143
+ | EvaluationFormItemEnablementConditionOperand.ConditionMember
144
+ | EvaluationFormItemEnablementConditionOperand.ExpressionMember
145
+ | EvaluationFormItemEnablementConditionOperand.$UnknownMember;
146
+ export declare namespace EvaluationFormItemEnablementConditionOperand {
147
+ interface ExpressionMember {
148
+ Expression: EvaluationFormItemEnablementExpression;
149
+ Condition?: never;
150
+ $unknown?: never;
151
+ }
152
+ interface ConditionMember {
153
+ Expression?: never;
154
+ Condition: EvaluationFormItemEnablementCondition;
155
+ $unknown?: never;
156
+ }
157
+ interface $UnknownMember {
158
+ Expression?: never;
159
+ Condition?: never;
160
+ $unknown: [string, any];
161
+ }
162
+ interface Visitor<T> {
163
+ Expression: (value: EvaluationFormItemEnablementExpression) => T;
164
+ Condition: (value: EvaluationFormItemEnablementCondition) => T;
165
+ _: (name: string, value: any) => T;
166
+ }
167
+ }
168
+ export interface AgentStatusSearchCriteria {
169
+ OrConditions?: AgentStatusSearchCriteria[] | undefined;
170
+ AndConditions?: AgentStatusSearchCriteria[] | undefined;
171
+ StringCondition?: StringCondition | undefined;
172
+ }
173
+ export interface ContactFlowModuleSearchCriteria {
174
+ OrConditions?: ContactFlowModuleSearchCriteria[] | undefined;
175
+ AndConditions?: ContactFlowModuleSearchCriteria[] | undefined;
176
+ StringCondition?: StringCondition | undefined;
177
+ StateCondition?: ContactFlowModuleState | undefined;
178
+ StatusCondition?: ContactFlowModuleStatus | undefined;
179
+ }
180
+ export interface ContactFlowSearchCriteria {
181
+ OrConditions?: ContactFlowSearchCriteria[] | undefined;
182
+ AndConditions?: ContactFlowSearchCriteria[] | undefined;
183
+ StringCondition?: StringCondition | undefined;
184
+ TypeCondition?: ContactFlowType | undefined;
185
+ StateCondition?: ContactFlowState | undefined;
186
+ StatusCondition?: ContactFlowStatus | undefined;
187
+ }
188
+ export interface DataTableSearchCriteria {
189
+ OrConditions?: DataTableSearchCriteria[] | undefined;
190
+ AndConditions?: DataTableSearchCriteria[] | undefined;
191
+ StringCondition?: StringCondition | undefined;
192
+ }
193
+ export interface EmailAddressSearchCriteria {
194
+ OrConditions?: EmailAddressSearchCriteria[] | undefined;
195
+ AndConditions?: EmailAddressSearchCriteria[] | undefined;
196
+ StringCondition?: StringCondition | undefined;
197
+ }
198
+ export interface EvaluationFormItemEnablementConfiguration {
199
+ Condition: EvaluationFormItemEnablementCondition | undefined;
200
+ Action: EvaluationFormItemEnablementAction | undefined;
201
+ DefaultAction?: EvaluationFormItemEnablementAction | undefined;
202
+ }
108
203
  export interface EvaluationFormSearchCriteria {
109
204
  OrConditions?: EvaluationFormSearchCriteria[] | undefined;
110
205
  AndConditions?: EvaluationFormSearchCriteria[] | undefined;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListExtractionDefinitionsCommandInput,
4
+ ListExtractionDefinitionsCommandOutput,
5
+ } from "../commands/ListExtractionDefinitionsCommand";
6
+ import { ConnectPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListExtractionDefinitions: (
8
+ config: ConnectPaginationConfiguration,
9
+ input: ListExtractionDefinitionsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListExtractionDefinitionsCommandOutput>;
@@ -25,6 +25,7 @@ export * from "./ListDefaultVocabulariesPaginator";
25
25
  export * from "./ListEntitySecurityProfilesPaginator";
26
26
  export * from "./ListEvaluationFormsPaginator";
27
27
  export * from "./ListEvaluationFormVersionsPaginator";
28
+ export * from "./ListExtractionDefinitionsPaginator";
28
29
  export * from "./ListFlowAssociationsPaginator";
29
30
  export * from "./ListHoursOfOperationOverridesPaginator";
30
31
  export * from "./ListHoursOfOperationsPaginator";
@@ -1,81 +1,30 @@
1
1
  import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
2
  import { ConnectClientConfig } from "./ConnectClient";
3
3
  export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
4
- runtime: string;
5
- defaultsMode: import("@smithy/types").Provider<
6
- import("@smithy/core/client").ResolvedDefaultsMode
7
- >;
8
- bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
- credentialDefaultProvider:
10
- | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
11
- | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
12
- defaultUserAgentProvider: (
13
- config?: import("@aws-sdk/core/client").PreviouslyResolved,
14
- ) => Promise<import("@smithy/types").UserAgent>;
15
- maxAttempts: number | import("@smithy/types").Provider<number>;
16
- region: string | import("@smithy/types").Provider<any>;
17
- requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
18
- retryMode: string | import("@smithy/types").Provider<string>;
19
- streamCollector: (
20
- stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
21
- ) => Promise<Uint8Array>;
22
- useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
23
- (boolean | import("@smithy/types").Provider<boolean | undefined>);
24
- useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
25
- (boolean | import("@smithy/types").Provider<boolean | undefined>);
26
- cacheMiddleware?: boolean | undefined;
27
- protocol:
28
- | import("@smithy/types").ClientProtocol<any, any>
29
- | import("@smithy/types").ClientProtocolCtor<any, any>
30
- | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
31
- protocolSettings: {
32
- defaultNamespace?: string;
33
- [setting: string]: unknown;
34
- };
35
- apiVersion: string;
36
- sha256: import("@smithy/types").HashConstructor;
37
- urlParser: import("@smithy/types").UrlParser;
38
- base64Decoder: import("@smithy/types").Decoder;
39
- base64Encoder: (_input: Uint8Array | string) => string;
40
- utf8Decoder: import("@smithy/types").Decoder;
41
- utf8Encoder: (input: Uint8Array | string) => string;
42
- disableHostPrefix: boolean;
43
- serviceId: string;
44
- profile?: string;
45
- logger: import("@smithy/types").Logger;
46
- extensions: import("./runtimeExtensions").RuntimeExtension[];
47
- customUserAgent?: string | import("@smithy/types").UserAgent;
48
- userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
49
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
4
+ cacheMiddleware?: boolean;
50
5
  endpoint?:
51
6
  | ((
52
7
  | string
53
8
  | import("@smithy/types").Endpoint
54
- | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
55
9
  | import("@smithy/types").EndpointV2
10
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
56
11
  | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
57
12
  ) &
58
13
  (
59
14
  | string
60
- | import("@smithy/types").Provider<string>
61
15
  | import("@smithy/types").Endpoint
62
- | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
63
16
  | import("@smithy/types").EndpointV2
17
+ | import("@smithy/types").Provider<string>
18
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
64
19
  | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
65
20
  ))
66
21
  | undefined;
67
- endpointProvider: (
68
- endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
69
- context?: {
70
- logger?: import("@smithy/types").Logger;
71
- },
72
- ) => import("@smithy/types").EndpointV2;
73
22
  tls?: boolean;
74
23
  ignoreConfiguredEndpointUrls?: boolean;
75
24
  serviceConfiguredEndpoint?: never;
76
- authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
77
- httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
78
- httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ConnectHttpAuthSchemeProvider;
25
+ customUserAgent?: string | import("@smithy/types").UserAgent;
26
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
27
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
79
28
  credentials?:
80
29
  | import("@smithy/types").AwsCredentialIdentity
81
30
  | import("@smithy/types").AwsCredentialIdentityProvider;
@@ -92,4 +41,53 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
92
41
  import("@smithy/signature-v4").SignatureV4CryptoInit,
93
42
  ) => import("@smithy/types").RequestSigner;
94
43
  disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
44
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
45
+ apiVersion: string;
46
+ base64Decoder: import("@smithy/types").Decoder;
47
+ base64Encoder: (_input: Uint8Array | string) => string;
48
+ disableHostPrefix: boolean;
49
+ endpointProvider: (
50
+ params: import("./endpoint/EndpointParameters").EndpointParameters,
51
+ context?: {
52
+ logger?: import("@smithy/types").Logger;
53
+ },
54
+ ) => import("@smithy/types").EndpointV2;
55
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
56
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ConnectHttpAuthSchemeProvider;
57
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
58
+ logger: import("@smithy/types").Logger;
59
+ protocol:
60
+ | import("@smithy/types").$ClientProtocol<any, any>
61
+ | import("@smithy/types").$ClientProtocolCtor<any, any>
62
+ | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
63
+ protocolSettings: {
64
+ [setting: string]: unknown;
65
+ defaultNamespace?: string;
66
+ };
67
+ serviceId: string;
68
+ sha256: import("@smithy/types").HashConstructor;
69
+ urlParser: import("@smithy/types").UrlParser;
70
+ utf8Decoder: import("@smithy/types").Decoder;
71
+ utf8Encoder: (input: Uint8Array | string) => string;
72
+ profile?: string;
73
+ runtime: string;
74
+ defaultsMode: import("@smithy/types").Provider<
75
+ import("@smithy/core/client").ResolvedDefaultsMode
76
+ >;
77
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
78
+ credentialDefaultProvider:
79
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
80
+ | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
81
+ defaultUserAgentProvider: (
82
+ config?: import("@aws-sdk/core/client").PreviouslyResolved,
83
+ ) => Promise<import("@smithy/types").UserAgent>;
84
+ maxAttempts: number | import("@smithy/types").Provider<number>;
85
+ region: string | import("@smithy/types").Provider<any>;
86
+ requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
87
+ retryMode: string | import("@smithy/types").Provider<string>;
88
+ streamCollector: (
89
+ stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
90
+ ) => Promise<Uint8Array>;
91
+ useDualstackEndpoint: boolean | (() => Promise<boolean>);
92
+ useFipsEndpoint: boolean | (() => Promise<boolean>);
95
93
  };
@@ -1,81 +1,29 @@
1
1
  import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
2
  import { ConnectClientConfig } from "./ConnectClient";
3
3
  export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
4
- runtime: string;
5
- defaultsMode: import("@smithy/types").Provider<
6
- import("@smithy/core/client").ResolvedDefaultsMode
7
- >;
8
- authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
9
- bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
- credentialDefaultProvider:
11
- | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
12
- | ((
13
- init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
14
- ) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
15
- defaultUserAgentProvider: (
16
- config?: import("@aws-sdk/core/client").PreviouslyResolved,
17
- ) => Promise<import("@smithy/types").UserAgent>;
18
- maxAttempts: number | import("@smithy/types").Provider<number>;
19
- region: string | import("@smithy/types").Provider<string>;
20
- requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
21
- retryMode: string | import("@smithy/types").Provider<string>;
22
- streamCollector: (
23
- stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
24
- ) => Promise<Uint8Array>;
25
- useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
26
- useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
27
- userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
28
- cacheMiddleware?: boolean | undefined;
29
- protocol:
30
- | import("@smithy/types").ClientProtocol<any, any>
31
- | import("@smithy/types").ClientProtocolCtor<any, any>
32
- | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
33
- protocolSettings: {
34
- defaultNamespace?: string;
35
- [setting: string]: unknown;
36
- };
37
- apiVersion: string;
38
- sha256: import("@smithy/types").HashConstructor;
39
- urlParser: import("@smithy/types").UrlParser;
40
- base64Decoder: import("@smithy/types").Decoder;
41
- base64Encoder: (_input: Uint8Array | string) => string;
42
- utf8Decoder: import("@smithy/types").Decoder;
43
- utf8Encoder: (input: Uint8Array | string) => string;
44
- disableHostPrefix: boolean;
45
- serviceId: string;
46
- profile?: string;
47
- logger: import("@smithy/types").Logger;
48
- extensions: import("./runtimeExtensions").RuntimeExtension[];
49
- customUserAgent?: string | import("@smithy/types").UserAgent;
50
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
4
+ cacheMiddleware?: boolean;
51
5
  endpoint?:
52
6
  | ((
53
7
  | string
54
8
  | import("@smithy/types").Endpoint
55
- | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
56
9
  | import("@smithy/types").EndpointV2
10
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
57
11
  | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
58
12
  ) &
59
13
  (
60
14
  | string
61
- | import("@smithy/types").Provider<string>
62
15
  | import("@smithy/types").Endpoint
63
- | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
64
16
  | import("@smithy/types").EndpointV2
17
+ | import("@smithy/types").Provider<string>
18
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
65
19
  | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
66
20
  ))
67
21
  | undefined;
68
- endpointProvider: (
69
- endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
70
- context?: {
71
- logger?: import("@smithy/types").Logger;
72
- },
73
- ) => import("@smithy/types").EndpointV2;
74
22
  tls?: boolean;
75
23
  ignoreConfiguredEndpointUrls?: boolean;
76
24
  serviceConfiguredEndpoint?: never;
77
- httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
78
- httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ConnectHttpAuthSchemeProvider;
25
+ customUserAgent?: string | import("@smithy/types").UserAgent;
26
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
79
27
  credentials?:
80
28
  | import("@smithy/types").AwsCredentialIdentity
81
29
  | import("@smithy/types").AwsCredentialIdentityProvider;
@@ -92,4 +40,56 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
92
40
  import("@smithy/signature-v4").SignatureV4CryptoInit,
93
41
  ) => import("@smithy/types").RequestSigner;
94
42
  disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
43
+ apiVersion: string;
44
+ base64Decoder: import("@smithy/types").Decoder;
45
+ base64Encoder: (_input: Uint8Array | string) => string;
46
+ disableHostPrefix: boolean;
47
+ endpointProvider: (
48
+ params: import("./endpoint/EndpointParameters").EndpointParameters,
49
+ context?: {
50
+ logger?: import("@smithy/types").Logger;
51
+ },
52
+ ) => import("@smithy/types").EndpointV2;
53
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
54
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ConnectHttpAuthSchemeProvider;
55
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
56
+ logger: import("@smithy/types").Logger;
57
+ protocol:
58
+ | import("@smithy/types").$ClientProtocol<any, any>
59
+ | import("@smithy/types").$ClientProtocolCtor<any, any>
60
+ | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
61
+ protocolSettings: {
62
+ [setting: string]: unknown;
63
+ defaultNamespace?: string;
64
+ };
65
+ serviceId: string;
66
+ sha256: import("@smithy/types").HashConstructor;
67
+ urlParser: import("@smithy/types").UrlParser;
68
+ utf8Decoder: import("@smithy/types").Decoder;
69
+ utf8Encoder: (input: Uint8Array | string) => string;
70
+ runtime: string;
71
+ defaultsMode: import("@smithy/types").Provider<
72
+ import("@smithy/core/client").ResolvedDefaultsMode
73
+ >;
74
+ authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
75
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
76
+ credentialDefaultProvider:
77
+ | ((
78
+ init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
79
+ ) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider)
80
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider);
81
+ defaultUserAgentProvider: (
82
+ config?: import("@aws-sdk/core/client").PreviouslyResolved,
83
+ ) => Promise<import("@smithy/types").UserAgent>;
84
+ maxAttempts: number | import("@smithy/types").Provider<number>;
85
+ region: string | import("@smithy/types").Provider<string>;
86
+ requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
87
+ retryMode: string | import("@smithy/types").Provider<string>;
88
+ streamCollector: (
89
+ stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
90
+ ) => Promise<Uint8Array>;
91
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
92
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
93
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
94
+ profile?: string;
95
95
  };
@@ -1,85 +1,29 @@
1
1
  import { ConnectClientConfig } from "./ConnectClient";
2
2
  export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
3
- runtime: string;
4
- requestHandler:
5
- | import("@smithy/types").NodeHttpHandlerOptions
6
- | import("@smithy/types").FetchHttpHandlerOptions
7
- | Record<string, unknown>
8
- | import("@smithy/core/protocols").HttpHandler<any>
9
- | import("@smithy/fetch-http-handler").FetchHttpHandler;
10
3
  cacheMiddleware?: boolean;
11
- protocol:
12
- | import("@smithy/types").ClientProtocol<any, any>
13
- | import("@smithy/types").ClientProtocolCtor<any, any>
14
- | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
15
- protocolSettings: {
16
- defaultNamespace?: string;
17
- [setting: string]: unknown;
18
- };
19
- apiVersion: string;
20
- sha256: import("@smithy/types").HashConstructor;
21
- urlParser: import("@smithy/types").UrlParser;
22
- bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
23
- streamCollector: (
24
- stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
25
- ) => Promise<Uint8Array>;
26
- base64Decoder: import("@smithy/types").Decoder;
27
- base64Encoder: (_input: Uint8Array | string) => string;
28
- utf8Decoder: import("@smithy/types").Decoder;
29
- utf8Encoder: (input: Uint8Array | string) => string;
30
- disableHostPrefix: boolean;
31
- serviceId: string;
32
- useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
33
- (boolean | import("@smithy/types").Provider<boolean | undefined>);
34
- useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
35
- (boolean | import("@smithy/types").Provider<boolean | undefined>);
36
- region: string | import("@smithy/types").Provider<any>;
37
- profile?: string;
38
- defaultUserAgentProvider: (
39
- config?: import("@aws-sdk/core/client").PreviouslyResolved,
40
- ) => Promise<import("@smithy/types").UserAgent>;
41
- credentialDefaultProvider:
42
- | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
43
- | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
44
- maxAttempts: number | import("@smithy/types").Provider<number>;
45
- retryMode: string | import("@smithy/types").Provider<string>;
46
- logger: import("@smithy/types").Logger;
47
- extensions: import("./runtimeExtensions").RuntimeExtension[];
48
- defaultsMode:
49
- | import("@smithy/core/client").DefaultsMode
50
- | import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
51
- customUserAgent?: string | import("@smithy/types").UserAgent;
52
- userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
53
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
54
4
  endpoint?:
55
5
  | ((
56
6
  | string
57
7
  | import("@smithy/types").Endpoint
58
- | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
59
8
  | import("@smithy/types").EndpointV2
9
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
60
10
  | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
61
11
  ) &
62
12
  (
63
13
  | string
64
- | import("@smithy/types").Provider<string>
65
14
  | import("@smithy/types").Endpoint
66
- | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
67
15
  | import("@smithy/types").EndpointV2
16
+ | import("@smithy/types").Provider<string>
17
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
68
18
  | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
69
19
  ))
70
20
  | undefined;
71
- endpointProvider: (
72
- endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
73
- context?: {
74
- logger?: import("@smithy/types").Logger;
75
- },
76
- ) => import("@smithy/types").EndpointV2;
77
21
  tls?: boolean;
78
22
  ignoreConfiguredEndpointUrls?: boolean;
79
23
  serviceConfiguredEndpoint?: never;
80
- authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
81
- httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
82
- httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ConnectHttpAuthSchemeProvider;
24
+ customUserAgent?: string | import("@smithy/types").UserAgent;
25
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
26
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
83
27
  credentials?:
84
28
  | import("@smithy/types").AwsCredentialIdentity
85
29
  | import("@smithy/types").AwsCredentialIdentityProvider;
@@ -96,4 +40,58 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
96
40
  import("@smithy/signature-v4").SignatureV4CryptoInit,
97
41
  ) => import("@smithy/types").RequestSigner;
98
42
  disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
43
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
44
+ apiVersion: string;
45
+ base64Decoder: import("@smithy/types").Decoder;
46
+ base64Encoder: (_input: Uint8Array | string) => string;
47
+ disableHostPrefix: boolean;
48
+ endpointProvider: (
49
+ params: import("./endpoint/EndpointParameters").EndpointParameters,
50
+ context?: {
51
+ logger?: import("@smithy/types").Logger;
52
+ },
53
+ ) => import("@smithy/types").EndpointV2;
54
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
55
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ConnectHttpAuthSchemeProvider;
56
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
57
+ logger: import("@smithy/types").Logger;
58
+ protocol:
59
+ | import("@smithy/types").$ClientProtocol<any, any>
60
+ | import("@smithy/types").$ClientProtocolCtor<any, any>
61
+ | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
62
+ protocolSettings: {
63
+ [setting: string]: unknown;
64
+ defaultNamespace?: string;
65
+ };
66
+ serviceId: string;
67
+ sha256: import("@smithy/types").HashConstructor;
68
+ urlParser: import("@smithy/types").UrlParser;
69
+ utf8Decoder: import("@smithy/types").Decoder;
70
+ utf8Encoder: (input: Uint8Array | string) => string;
71
+ profile?: string;
72
+ defaultsMode:
73
+ | import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>
74
+ | import("@smithy/core/client").DefaultsMode;
75
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
76
+ credentialDefaultProvider:
77
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
78
+ | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
79
+ defaultUserAgentProvider: (
80
+ config?: import("@aws-sdk/core/client").PreviouslyResolved,
81
+ ) => Promise<import("@smithy/types").UserAgent>;
82
+ maxAttempts: number | import("@smithy/types").Provider<number>;
83
+ region: string | import("@smithy/types").Provider<any>;
84
+ requestHandler:
85
+ | import("@smithy/fetch-http-handler").FetchHttpHandler
86
+ | import("@smithy/types").FetchHttpHandlerOptions
87
+ | import("@smithy/types").NodeHttpHandlerOptions
88
+ | Record<string, unknown>
89
+ | import("@smithy/core/protocols").HttpHandler<any>;
90
+ retryMode: string | import("@smithy/types").Provider<string>;
91
+ streamCollector: (
92
+ stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
93
+ ) => Promise<Uint8Array>;
94
+ useDualstackEndpoint: boolean | (() => Promise<boolean>);
95
+ useFipsEndpoint: boolean | (() => Promise<boolean>);
96
+ runtime: string;
99
97
  };
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
6
6
  base64Encoder: (_input: Uint8Array | string) => string;
7
7
  disableHostPrefix: boolean;
8
8
  endpointProvider: (
9
- endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
9
+ params: import("./endpoint/EndpointParameters").EndpointParameters,
10
10
  context?: {
11
11
  logger?: import("@smithy/types").Logger;
12
12
  },
@@ -16,8 +16,8 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
16
16
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
17
17
  logger: import("@smithy/types").Logger;
18
18
  protocol:
19
- | import("@smithy/types").ClientProtocol<any, any>
20
- | import("@smithy/types").ClientProtocolCtor<any, any>
19
+ | import("@smithy/types").$ClientProtocol<any, any>
20
+ | import("@smithy/types").$ClientProtocolCtor<any, any>
21
21
  | typeof AwsRestJsonProtocol;
22
22
  protocolSettings: {
23
23
  [setting: string]: unknown;