@aws-sdk/client-bedrock-agentcore 3.986.0 → 3.988.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.
@@ -389,6 +389,136 @@ export interface BrowserProfileConfiguration {
389
389
  */
390
390
  profileIdentifier: string | undefined;
391
391
  }
392
+ /**
393
+ * <p>Configuration for domains that should bypass all proxies and connect directly to the internet. These bypass rules take precedence over all proxy routing rules.</p>
394
+ * @public
395
+ */
396
+ export interface ProxyBypass {
397
+ /**
398
+ * <p>Array of domain patterns that should bypass the proxy. Supports <code>.amazonaws.com</code> for subdomain matching or <code>amazonaws.com</code> for exact domain matching. Requests to these domains connect directly without using any proxy. Maximum 253 characters per pattern.</p>
399
+ * @public
400
+ */
401
+ domainPatterns?: string[] | undefined;
402
+ }
403
+ /**
404
+ * <p>Configuration for HTTP Basic Authentication using credentials stored in Amazon Web Services Secrets Manager. The secret must contain a JSON object with <code>username</code> and <code>password</code> string fields. Username allows alphanumeric characters and <code>@._+=-</code> symbols (pattern: <code>^[a-zA-Z0-9@._+=\-]+$</code>). Password allows alphanumeric characters and <code>@._+=-!#$%&amp;*</code> symbols (pattern: <code>^[a-zA-Z0-9@._+=\-!#$%&amp;*]+$</code>). Both fields have a maximum length of 256 characters.</p>
405
+ * @public
406
+ */
407
+ export interface BasicAuth {
408
+ /**
409
+ * <p>The Amazon Resource Name (ARN) of the Amazon Web Services Secrets Manager secret containing proxy credentials. The secret must be a JSON object with <code>username</code> and <code>password</code> string fields that meet validation requirements. The caller must have <code>secretsmanager:GetSecretValue</code> permission for this ARN. Example secret format: <code>\{"username": "proxy_user", "password": "secure_password"\}</code> </p>
410
+ * @public
411
+ */
412
+ secretArn: string | undefined;
413
+ }
414
+ /**
415
+ * <p>Union type representing different proxy authentication methods. Currently supports HTTP Basic Authentication (username and password).</p>
416
+ * @public
417
+ */
418
+ export type ProxyCredentials = ProxyCredentials.BasicAuthMember | ProxyCredentials.$UnknownMember;
419
+ /**
420
+ * @public
421
+ */
422
+ export declare namespace ProxyCredentials {
423
+ /**
424
+ * <p>HTTP Basic Authentication credentials (username and password) stored in Amazon Web Services Secrets Manager.</p>
425
+ * @public
426
+ */
427
+ interface BasicAuthMember {
428
+ basicAuth: BasicAuth;
429
+ $unknown?: never;
430
+ }
431
+ /**
432
+ * @public
433
+ */
434
+ interface $UnknownMember {
435
+ basicAuth?: never;
436
+ $unknown: [string, any];
437
+ }
438
+ /**
439
+ * @deprecated unused in schema-serde mode.
440
+ *
441
+ */
442
+ interface Visitor<T> {
443
+ basicAuth: (value: BasicAuth) => T;
444
+ _: (name: string, value: any) => T;
445
+ }
446
+ }
447
+ /**
448
+ * <p>Configuration for a customer-managed external proxy server. Includes server location, optional domain-based routing patterns, and authentication credentials.</p>
449
+ * @public
450
+ */
451
+ export interface ExternalProxy {
452
+ /**
453
+ * <p>The hostname of the proxy server. Must be a valid DNS hostname (maximum 253 characters).</p>
454
+ * @public
455
+ */
456
+ server: string | undefined;
457
+ /**
458
+ * <p>The port number of the proxy server. Valid range: 1-65535.</p>
459
+ * @public
460
+ */
461
+ port: number | undefined;
462
+ /**
463
+ * <p>Optional array of domain patterns that should route through this specific proxy. Supports <code>.example.com</code> for subdomain matching (matches any subdomain of example.com) or <code>example.com</code> for exact domain matching. If omitted, this proxy acts as a catch-all for domains not matched by other proxies. Maximum 100 patterns per proxy, each up to 253 characters.</p>
464
+ * @public
465
+ */
466
+ domainPatterns?: string[] | undefined;
467
+ /**
468
+ * <p>Optional authentication credentials for the proxy server. If omitted, the proxy is accessed without authentication (useful for IP-allowlisted proxies).</p>
469
+ * @public
470
+ */
471
+ credentials?: ProxyCredentials | undefined;
472
+ }
473
+ /**
474
+ * <p>Union type representing different proxy configurations. Currently supports external customer-managed proxies.</p>
475
+ * @public
476
+ */
477
+ export type Proxy = Proxy.ExternalProxyMember | Proxy.$UnknownMember;
478
+ /**
479
+ * @public
480
+ */
481
+ export declare namespace Proxy {
482
+ /**
483
+ * <p>Configuration for an external customer-managed proxy server.</p>
484
+ * @public
485
+ */
486
+ interface ExternalProxyMember {
487
+ externalProxy: ExternalProxy;
488
+ $unknown?: never;
489
+ }
490
+ /**
491
+ * @public
492
+ */
493
+ interface $UnknownMember {
494
+ externalProxy?: never;
495
+ $unknown: [string, any];
496
+ }
497
+ /**
498
+ * @deprecated unused in schema-serde mode.
499
+ *
500
+ */
501
+ interface Visitor<T> {
502
+ externalProxy: (value: ExternalProxy) => T;
503
+ _: (name: string, value: any) => T;
504
+ }
505
+ }
506
+ /**
507
+ * <p>Configuration for routing browser traffic through customer-managed proxy servers. Supports 1-5 proxy servers for domain-based routing and proxy bypass rules.</p>
508
+ * @public
509
+ */
510
+ export interface ProxyConfiguration {
511
+ /**
512
+ * <p>An array of 1-5 proxy server configurations for domain-based routing. Each proxy can specify which domains it handles via <code>domainPatterns</code>, enabling flexible routing of different traffic through different proxies based on destination domain.</p>
513
+ * @public
514
+ */
515
+ proxies: Proxy[] | undefined;
516
+ /**
517
+ * <p>Optional configuration for domains that should bypass all proxies and connect directly to their destination, like the internet. Takes precedence over all proxy routing rules.</p>
518
+ * @public
519
+ */
520
+ bypass?: ProxyBypass | undefined;
521
+ }
392
522
  /**
393
523
  * <p>The configuration for a stream that enables programmatic control of a browser session in Amazon Bedrock AgentCore. This stream provides a bidirectional communication channel for sending commands to the browser and receiving responses, allowing agents to automate web interactions such as navigation, form filling, and element clicking.</p>
394
524
  * @public
@@ -502,6 +632,11 @@ export interface GetBrowserSessionResponse {
502
632
  * @public
503
633
  */
504
634
  streams?: BrowserSessionStream | undefined;
635
+ /**
636
+ * <p>The active proxy configuration for this browser session. This field is only present if proxy configuration was provided when the session was started using <code>StartBrowserSession</code>. The configuration includes proxy servers, domain bypass rules and the proxy authentication credentials.</p>
637
+ * @public
638
+ */
639
+ proxyConfiguration?: ProxyConfiguration | undefined;
505
640
  /**
506
641
  * <p>The artifact containing the session replay information.</p>
507
642
  * @public
@@ -633,6 +768,11 @@ export interface StartBrowserSessionRequest {
633
768
  * @public
634
769
  */
635
770
  profileConfiguration?: BrowserProfileConfiguration | undefined;
771
+ /**
772
+ * <p>Optional proxy configuration for routing browser traffic through customer-specified proxy servers. When provided, enables HTTP Basic authentication via Amazon Web Services Secrets Manager and domain-based routing rules. Requires <code>secretsmanager:GetSecretValue</code> IAM permission for the specified secret ARNs.</p>
773
+ * @public
774
+ */
775
+ proxyConfiguration?: ProxyConfiguration | undefined;
636
776
  /**
637
777
  * <p>A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If this token matches a previous request, Amazon Bedrock AgentCore ignores the request, but does not return an error. This parameter helps prevent the creation of duplicate sessions if there are temporary network issues.</p>
638
778
  * @public
@@ -1,8 +1,30 @@
1
+ import { TypeRegistry } from "@smithy/core/schema";
1
2
  import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema, StaticUnionSchema } from "@smithy/types";
3
+ export declare var BedrockAgentCoreServiceException$: StaticErrorSchema;
2
4
  export declare var AccessDeniedException$: StaticErrorSchema;
5
+ export declare var ConflictException$: StaticErrorSchema;
6
+ export declare var DuplicateIdException$: StaticErrorSchema;
7
+ export declare var InternalServerException$: StaticErrorSchema;
8
+ export declare var InvalidInputException$: StaticErrorSchema;
9
+ export declare var ResourceNotFoundException$: StaticErrorSchema;
10
+ export declare var RetryableConflictException$: StaticErrorSchema;
11
+ export declare var RuntimeClientError$: StaticErrorSchema;
12
+ export declare var ServiceException$: StaticErrorSchema;
13
+ export declare var ServiceQuotaExceededException$: StaticErrorSchema;
14
+ export declare var ThrottledException$: StaticErrorSchema;
15
+ export declare var ThrottlingException$: StaticErrorSchema;
16
+ export declare var UnauthorizedException$: StaticErrorSchema;
17
+ export declare var ValidationException$: StaticErrorSchema;
18
+ /**
19
+ * TypeRegistry instances containing modeled errors.
20
+ * @internal
21
+ *
22
+ */
23
+ export declare const errorTypeRegistries: TypeRegistry[];
3
24
  export declare var ActorSummary$: StaticStructureSchema;
4
25
  export declare var AutomationStream$: StaticStructureSchema;
5
26
  export declare var AutomationStreamUpdate$: StaticStructureSchema;
27
+ export declare var BasicAuth$: StaticStructureSchema;
6
28
  export declare var BatchCreateMemoryRecordsInput$: StaticStructureSchema;
7
29
  export declare var BatchCreateMemoryRecordsOutput$: StaticStructureSchema;
8
30
  export declare var BatchDeleteMemoryRecordsInput$: StaticStructureSchema;
@@ -19,7 +41,6 @@ export declare var CodeInterpreterResult$: StaticStructureSchema;
19
41
  export declare var CodeInterpreterSessionSummary$: StaticStructureSchema;
20
42
  export declare var CompleteResourceTokenAuthRequest$: StaticStructureSchema;
21
43
  export declare var CompleteResourceTokenAuthResponse$: StaticStructureSchema;
22
- export declare var ConflictException$: StaticErrorSchema;
23
44
  export declare var ContentBlock$: StaticStructureSchema;
24
45
  export declare var Conversational$: StaticStructureSchema;
25
46
  export declare var CreateEventInput$: StaticStructureSchema;
@@ -28,12 +49,12 @@ export declare var DeleteEventInput$: StaticStructureSchema;
28
49
  export declare var DeleteEventOutput$: StaticStructureSchema;
29
50
  export declare var DeleteMemoryRecordInput$: StaticStructureSchema;
30
51
  export declare var DeleteMemoryRecordOutput$: StaticStructureSchema;
31
- export declare var DuplicateIdException$: StaticErrorSchema;
32
52
  export declare var EvaluateRequest$: StaticStructureSchema;
33
53
  export declare var EvaluateResponse$: StaticStructureSchema;
34
54
  export declare var EvaluationResultContent$: StaticStructureSchema;
35
55
  export declare var Event$: StaticStructureSchema;
36
56
  export declare var EventMetadataFilterExpression$: StaticStructureSchema;
57
+ export declare var ExternalProxy$: StaticStructureSchema;
37
58
  export declare var ExtractionJob$: StaticStructureSchema;
38
59
  export declare var ExtractionJobFilterInput$: StaticStructureSchema;
39
60
  export declare var ExtractionJobMetadata$: StaticStructureSchema;
@@ -59,8 +80,6 @@ export declare var GetWorkloadAccessTokenForUserIdResponse$: StaticStructureSche
59
80
  export declare var GetWorkloadAccessTokenRequest$: StaticStructureSchema;
60
81
  export declare var GetWorkloadAccessTokenResponse$: StaticStructureSchema;
61
82
  export declare var InputContentBlock$: StaticStructureSchema;
62
- export declare var InternalServerException$: StaticErrorSchema;
63
- export declare var InvalidInputException$: StaticErrorSchema;
64
83
  export declare var InvokeAgentRuntimeRequest$: StaticStructureSchema;
65
84
  export declare var InvokeAgentRuntimeResponse$: StaticStructureSchema;
66
85
  export declare var InvokeCodeInterpreterRequest$: StaticStructureSchema;
@@ -88,18 +107,15 @@ export declare var MemoryRecordOutput$: StaticStructureSchema;
88
107
  export declare var MemoryRecordSummary$: StaticStructureSchema;
89
108
  export declare var MemoryRecordUpdateInput$: StaticStructureSchema;
90
109
  export declare var MessageMetadata$: StaticStructureSchema;
110
+ export declare var ProxyBypass$: StaticStructureSchema;
111
+ export declare var ProxyConfiguration$: StaticStructureSchema;
91
112
  export declare var ResourceContent$: StaticStructureSchema;
92
- export declare var ResourceNotFoundException$: StaticErrorSchema;
93
113
  export declare var RetrieveMemoryRecordsInput$: StaticStructureSchema;
94
114
  export declare var RetrieveMemoryRecordsOutput$: StaticStructureSchema;
95
- export declare var RetryableConflictException$: StaticErrorSchema;
96
- export declare var RuntimeClientError$: StaticErrorSchema;
97
115
  export declare var S3Location$: StaticStructureSchema;
98
116
  export declare var SaveBrowserSessionProfileRequest$: StaticStructureSchema;
99
117
  export declare var SaveBrowserSessionProfileResponse$: StaticStructureSchema;
100
118
  export declare var SearchCriteria$: StaticStructureSchema;
101
- export declare var ServiceException$: StaticErrorSchema;
102
- export declare var ServiceQuotaExceededException$: StaticErrorSchema;
103
119
  export declare var SessionSummary$: StaticStructureSchema;
104
120
  export declare var SpanContext$: StaticStructureSchema;
105
121
  export declare var StartBrowserSessionRequest$: StaticStructureSchema;
@@ -114,18 +130,13 @@ export declare var StopCodeInterpreterSessionRequest$: StaticStructureSchema;
114
130
  export declare var StopCodeInterpreterSessionResponse$: StaticStructureSchema;
115
131
  export declare var StopRuntimeSessionRequest$: StaticStructureSchema;
116
132
  export declare var StopRuntimeSessionResponse$: StaticStructureSchema;
117
- export declare var ThrottledException$: StaticErrorSchema;
118
- export declare var ThrottlingException$: StaticErrorSchema;
119
133
  export declare var TokenUsage$: StaticStructureSchema;
120
134
  export declare var ToolArguments$: StaticStructureSchema;
121
135
  export declare var ToolResultStructuredContent$: StaticStructureSchema;
122
- export declare var UnauthorizedException$: StaticErrorSchema;
123
136
  export declare var UpdateBrowserStreamRequest$: StaticStructureSchema;
124
137
  export declare var UpdateBrowserStreamResponse$: StaticStructureSchema;
125
- export declare var ValidationException$: StaticErrorSchema;
126
138
  export declare var ValidationExceptionField$: StaticStructureSchema;
127
139
  export declare var ViewPort$: StaticStructureSchema;
128
- export declare var BedrockAgentCoreServiceException$: StaticErrorSchema;
129
140
  export declare var CodeInterpreterStreamOutput$: StaticUnionSchema;
130
141
  export declare var Content$: StaticUnionSchema;
131
142
  export declare var Context$: StaticUnionSchema;
@@ -136,6 +147,8 @@ export declare var LeftExpression$: StaticUnionSchema;
136
147
  export declare var MemoryContent$: StaticUnionSchema;
137
148
  export declare var MetadataValue$: StaticUnionSchema;
138
149
  export declare var PayloadType$: StaticUnionSchema;
150
+ export declare var Proxy$: StaticUnionSchema;
151
+ export declare var ProxyCredentials$: StaticUnionSchema;
139
152
  export declare var ResourceLocation$: StaticUnionSchema;
140
153
  export declare var RightExpression$: StaticUnionSchema;
141
154
  export declare var StreamUpdate$: StaticUnionSchema;
@@ -128,6 +128,54 @@ export interface BrowserExtension {
128
128
  export interface BrowserProfileConfiguration {
129
129
  profileIdentifier: string | undefined;
130
130
  }
131
+ export interface ProxyBypass {
132
+ domainPatterns?: string[] | undefined;
133
+ }
134
+ export interface BasicAuth {
135
+ secretArn: string | undefined;
136
+ }
137
+ export type ProxyCredentials =
138
+ | ProxyCredentials.BasicAuthMember
139
+ | ProxyCredentials.$UnknownMember;
140
+ export declare namespace ProxyCredentials {
141
+ interface BasicAuthMember {
142
+ basicAuth: BasicAuth;
143
+ $unknown?: never;
144
+ }
145
+ interface $UnknownMember {
146
+ basicAuth?: never;
147
+ $unknown: [string, any];
148
+ }
149
+ interface Visitor<T> {
150
+ basicAuth: (value: BasicAuth) => T;
151
+ _: (name: string, value: any) => T;
152
+ }
153
+ }
154
+ export interface ExternalProxy {
155
+ server: string | undefined;
156
+ port: number | undefined;
157
+ domainPatterns?: string[] | undefined;
158
+ credentials?: ProxyCredentials | undefined;
159
+ }
160
+ export type Proxy = Proxy.ExternalProxyMember | Proxy.$UnknownMember;
161
+ export declare namespace Proxy {
162
+ interface ExternalProxyMember {
163
+ externalProxy: ExternalProxy;
164
+ $unknown?: never;
165
+ }
166
+ interface $UnknownMember {
167
+ externalProxy?: never;
168
+ $unknown: [string, any];
169
+ }
170
+ interface Visitor<T> {
171
+ externalProxy: (value: ExternalProxy) => T;
172
+ _: (name: string, value: any) => T;
173
+ }
174
+ }
175
+ export interface ProxyConfiguration {
176
+ proxies: Proxy[] | undefined;
177
+ bypass?: ProxyBypass | undefined;
178
+ }
131
179
  export interface AutomationStream {
132
180
  streamEndpoint: string | undefined;
133
181
  streamStatus: AutomationStreamStatus | undefined;
@@ -154,6 +202,7 @@ export interface GetBrowserSessionResponse {
154
202
  sessionTimeoutSeconds?: number | undefined;
155
203
  status?: BrowserSessionStatus | undefined;
156
204
  streams?: BrowserSessionStream | undefined;
205
+ proxyConfiguration?: ProxyConfiguration | undefined;
157
206
  sessionReplayArtifact?: string | undefined;
158
207
  lastUpdatedAt?: Date | undefined;
159
208
  }
@@ -184,6 +233,7 @@ export interface StartBrowserSessionRequest {
184
233
  viewPort?: ViewPort | undefined;
185
234
  extensions?: BrowserExtension[] | undefined;
186
235
  profileConfiguration?: BrowserProfileConfiguration | undefined;
236
+ proxyConfiguration?: ProxyConfiguration | undefined;
187
237
  clientToken?: string | undefined;
188
238
  }
189
239
  export interface StartBrowserSessionResponse {
@@ -1,13 +1,30 @@
1
+ import { TypeRegistry } from "@smithy/core/schema";
1
2
  import {
2
3
  StaticErrorSchema,
3
4
  StaticOperationSchema,
4
5
  StaticStructureSchema,
5
6
  StaticUnionSchema,
6
7
  } from "@smithy/types";
8
+ export declare var BedrockAgentCoreServiceException$: StaticErrorSchema;
7
9
  export declare var AccessDeniedException$: StaticErrorSchema;
10
+ export declare var ConflictException$: StaticErrorSchema;
11
+ export declare var DuplicateIdException$: StaticErrorSchema;
12
+ export declare var InternalServerException$: StaticErrorSchema;
13
+ export declare var InvalidInputException$: StaticErrorSchema;
14
+ export declare var ResourceNotFoundException$: StaticErrorSchema;
15
+ export declare var RetryableConflictException$: StaticErrorSchema;
16
+ export declare var RuntimeClientError$: StaticErrorSchema;
17
+ export declare var ServiceException$: StaticErrorSchema;
18
+ export declare var ServiceQuotaExceededException$: StaticErrorSchema;
19
+ export declare var ThrottledException$: StaticErrorSchema;
20
+ export declare var ThrottlingException$: StaticErrorSchema;
21
+ export declare var UnauthorizedException$: StaticErrorSchema;
22
+ export declare var ValidationException$: StaticErrorSchema;
23
+ export declare const errorTypeRegistries: TypeRegistry[];
8
24
  export declare var ActorSummary$: StaticStructureSchema;
9
25
  export declare var AutomationStream$: StaticStructureSchema;
10
26
  export declare var AutomationStreamUpdate$: StaticStructureSchema;
27
+ export declare var BasicAuth$: StaticStructureSchema;
11
28
  export declare var BatchCreateMemoryRecordsInput$: StaticStructureSchema;
12
29
  export declare var BatchCreateMemoryRecordsOutput$: StaticStructureSchema;
13
30
  export declare var BatchDeleteMemoryRecordsInput$: StaticStructureSchema;
@@ -24,7 +41,6 @@ export declare var CodeInterpreterResult$: StaticStructureSchema;
24
41
  export declare var CodeInterpreterSessionSummary$: StaticStructureSchema;
25
42
  export declare var CompleteResourceTokenAuthRequest$: StaticStructureSchema;
26
43
  export declare var CompleteResourceTokenAuthResponse$: StaticStructureSchema;
27
- export declare var ConflictException$: StaticErrorSchema;
28
44
  export declare var ContentBlock$: StaticStructureSchema;
29
45
  export declare var Conversational$: StaticStructureSchema;
30
46
  export declare var CreateEventInput$: StaticStructureSchema;
@@ -33,12 +49,12 @@ export declare var DeleteEventInput$: StaticStructureSchema;
33
49
  export declare var DeleteEventOutput$: StaticStructureSchema;
34
50
  export declare var DeleteMemoryRecordInput$: StaticStructureSchema;
35
51
  export declare var DeleteMemoryRecordOutput$: StaticStructureSchema;
36
- export declare var DuplicateIdException$: StaticErrorSchema;
37
52
  export declare var EvaluateRequest$: StaticStructureSchema;
38
53
  export declare var EvaluateResponse$: StaticStructureSchema;
39
54
  export declare var EvaluationResultContent$: StaticStructureSchema;
40
55
  export declare var Event$: StaticStructureSchema;
41
56
  export declare var EventMetadataFilterExpression$: StaticStructureSchema;
57
+ export declare var ExternalProxy$: StaticStructureSchema;
42
58
  export declare var ExtractionJob$: StaticStructureSchema;
43
59
  export declare var ExtractionJobFilterInput$: StaticStructureSchema;
44
60
  export declare var ExtractionJobMetadata$: StaticStructureSchema;
@@ -64,8 +80,6 @@ export declare var GetWorkloadAccessTokenForUserIdResponse$: StaticStructureSche
64
80
  export declare var GetWorkloadAccessTokenRequest$: StaticStructureSchema;
65
81
  export declare var GetWorkloadAccessTokenResponse$: StaticStructureSchema;
66
82
  export declare var InputContentBlock$: StaticStructureSchema;
67
- export declare var InternalServerException$: StaticErrorSchema;
68
- export declare var InvalidInputException$: StaticErrorSchema;
69
83
  export declare var InvokeAgentRuntimeRequest$: StaticStructureSchema;
70
84
  export declare var InvokeAgentRuntimeResponse$: StaticStructureSchema;
71
85
  export declare var InvokeCodeInterpreterRequest$: StaticStructureSchema;
@@ -93,18 +107,15 @@ export declare var MemoryRecordOutput$: StaticStructureSchema;
93
107
  export declare var MemoryRecordSummary$: StaticStructureSchema;
94
108
  export declare var MemoryRecordUpdateInput$: StaticStructureSchema;
95
109
  export declare var MessageMetadata$: StaticStructureSchema;
110
+ export declare var ProxyBypass$: StaticStructureSchema;
111
+ export declare var ProxyConfiguration$: StaticStructureSchema;
96
112
  export declare var ResourceContent$: StaticStructureSchema;
97
- export declare var ResourceNotFoundException$: StaticErrorSchema;
98
113
  export declare var RetrieveMemoryRecordsInput$: StaticStructureSchema;
99
114
  export declare var RetrieveMemoryRecordsOutput$: StaticStructureSchema;
100
- export declare var RetryableConflictException$: StaticErrorSchema;
101
- export declare var RuntimeClientError$: StaticErrorSchema;
102
115
  export declare var S3Location$: StaticStructureSchema;
103
116
  export declare var SaveBrowserSessionProfileRequest$: StaticStructureSchema;
104
117
  export declare var SaveBrowserSessionProfileResponse$: StaticStructureSchema;
105
118
  export declare var SearchCriteria$: StaticStructureSchema;
106
- export declare var ServiceException$: StaticErrorSchema;
107
- export declare var ServiceQuotaExceededException$: StaticErrorSchema;
108
119
  export declare var SessionSummary$: StaticStructureSchema;
109
120
  export declare var SpanContext$: StaticStructureSchema;
110
121
  export declare var StartBrowserSessionRequest$: StaticStructureSchema;
@@ -119,18 +130,13 @@ export declare var StopCodeInterpreterSessionRequest$: StaticStructureSchema;
119
130
  export declare var StopCodeInterpreterSessionResponse$: StaticStructureSchema;
120
131
  export declare var StopRuntimeSessionRequest$: StaticStructureSchema;
121
132
  export declare var StopRuntimeSessionResponse$: StaticStructureSchema;
122
- export declare var ThrottledException$: StaticErrorSchema;
123
- export declare var ThrottlingException$: StaticErrorSchema;
124
133
  export declare var TokenUsage$: StaticStructureSchema;
125
134
  export declare var ToolArguments$: StaticStructureSchema;
126
135
  export declare var ToolResultStructuredContent$: StaticStructureSchema;
127
- export declare var UnauthorizedException$: StaticErrorSchema;
128
136
  export declare var UpdateBrowserStreamRequest$: StaticStructureSchema;
129
137
  export declare var UpdateBrowserStreamResponse$: StaticStructureSchema;
130
- export declare var ValidationException$: StaticErrorSchema;
131
138
  export declare var ValidationExceptionField$: StaticStructureSchema;
132
139
  export declare var ViewPort$: StaticStructureSchema;
133
- export declare var BedrockAgentCoreServiceException$: StaticErrorSchema;
134
140
  export declare var CodeInterpreterStreamOutput$: StaticUnionSchema;
135
141
  export declare var Content$: StaticUnionSchema;
136
142
  export declare var Context$: StaticUnionSchema;
@@ -141,6 +147,8 @@ export declare var LeftExpression$: StaticUnionSchema;
141
147
  export declare var MemoryContent$: StaticUnionSchema;
142
148
  export declare var MetadataValue$: StaticUnionSchema;
143
149
  export declare var PayloadType$: StaticUnionSchema;
150
+ export declare var Proxy$: StaticUnionSchema;
151
+ export declare var ProxyCredentials$: StaticUnionSchema;
144
152
  export declare var ResourceLocation$: StaticUnionSchema;
145
153
  export declare var RightExpression$: StaticUnionSchema;
146
154
  export declare var StreamUpdate$: StaticUnionSchema;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-bedrock-agentcore",
3
3
  "description": "AWS SDK for JavaScript Bedrock Agentcore Client for Node.js, Browser and React Native",
4
- "version": "3.986.0",
4
+ "version": "3.988.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-bedrock-agentcore",
@@ -21,19 +21,19 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "5.2.0",
23
23
  "@aws-crypto/sha256-js": "5.2.0",
24
- "@aws-sdk/core": "^3.973.7",
25
- "@aws-sdk/credential-provider-node": "^3.972.6",
24
+ "@aws-sdk/core": "^3.973.8",
25
+ "@aws-sdk/credential-provider-node": "^3.972.7",
26
26
  "@aws-sdk/middleware-host-header": "^3.972.3",
27
27
  "@aws-sdk/middleware-logger": "^3.972.3",
28
28
  "@aws-sdk/middleware-recursion-detection": "^3.972.3",
29
- "@aws-sdk/middleware-user-agent": "^3.972.7",
29
+ "@aws-sdk/middleware-user-agent": "^3.972.8",
30
30
  "@aws-sdk/region-config-resolver": "^3.972.3",
31
31
  "@aws-sdk/types": "^3.973.1",
32
- "@aws-sdk/util-endpoints": "3.986.0",
32
+ "@aws-sdk/util-endpoints": "3.988.0",
33
33
  "@aws-sdk/util-user-agent-browser": "^3.972.3",
34
- "@aws-sdk/util-user-agent-node": "^3.972.5",
34
+ "@aws-sdk/util-user-agent-node": "^3.972.6",
35
35
  "@smithy/config-resolver": "^4.4.6",
36
- "@smithy/core": "^3.22.1",
36
+ "@smithy/core": "^3.23.0",
37
37
  "@smithy/eventstream-serde-browser": "^4.2.8",
38
38
  "@smithy/eventstream-serde-config-resolver": "^4.3.8",
39
39
  "@smithy/eventstream-serde-node": "^4.2.8",
@@ -41,25 +41,25 @@
41
41
  "@smithy/hash-node": "^4.2.8",
42
42
  "@smithy/invalid-dependency": "^4.2.8",
43
43
  "@smithy/middleware-content-length": "^4.2.8",
44
- "@smithy/middleware-endpoint": "^4.4.13",
45
- "@smithy/middleware-retry": "^4.4.30",
44
+ "@smithy/middleware-endpoint": "^4.4.14",
45
+ "@smithy/middleware-retry": "^4.4.31",
46
46
  "@smithy/middleware-serde": "^4.2.9",
47
47
  "@smithy/middleware-stack": "^4.2.8",
48
48
  "@smithy/node-config-provider": "^4.3.8",
49
- "@smithy/node-http-handler": "^4.4.9",
49
+ "@smithy/node-http-handler": "^4.4.10",
50
50
  "@smithy/protocol-http": "^5.3.8",
51
- "@smithy/smithy-client": "^4.11.2",
51
+ "@smithy/smithy-client": "^4.11.3",
52
52
  "@smithy/types": "^4.12.0",
53
53
  "@smithy/url-parser": "^4.2.8",
54
54
  "@smithy/util-base64": "^4.3.0",
55
55
  "@smithy/util-body-length-browser": "^4.2.0",
56
56
  "@smithy/util-body-length-node": "^4.2.1",
57
- "@smithy/util-defaults-mode-browser": "^4.3.29",
58
- "@smithy/util-defaults-mode-node": "^4.2.32",
57
+ "@smithy/util-defaults-mode-browser": "^4.3.30",
58
+ "@smithy/util-defaults-mode-node": "^4.2.33",
59
59
  "@smithy/util-endpoints": "^3.2.8",
60
60
  "@smithy/util-middleware": "^4.2.8",
61
61
  "@smithy/util-retry": "^4.2.8",
62
- "@smithy/util-stream": "^4.5.11",
62
+ "@smithy/util-stream": "^4.5.12",
63
63
  "@smithy/util-utf8": "^4.2.0",
64
64
  "tslib": "^2.6.2"
65
65
  },