types-boto3-bedrock-agentcore 1.39.7__py3-none-any.whl

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.
@@ -0,0 +1,53 @@
1
+ """
2
+ Main interface for bedrock-agentcore service.
3
+
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/)
5
+
6
+ Copyright 2025 Vlad Emelianov
7
+
8
+ Usage::
9
+
10
+ ```python
11
+ from boto3.session import Session
12
+ from types_boto3_bedrock_agentcore import (
13
+ BedrockAgentCoreDataPlaneFrontingLayerClient,
14
+ Client,
15
+ ListActorsPaginator,
16
+ ListEventsPaginator,
17
+ ListMemoryRecordsPaginator,
18
+ ListSessionsPaginator,
19
+ RetrieveMemoryRecordsPaginator,
20
+ )
21
+
22
+ session = Session()
23
+ client: BedrockAgentCoreDataPlaneFrontingLayerClient = session.client("bedrock-agentcore")
24
+
25
+ list_actors_paginator: ListActorsPaginator = client.get_paginator("list_actors")
26
+ list_events_paginator: ListEventsPaginator = client.get_paginator("list_events")
27
+ list_memory_records_paginator: ListMemoryRecordsPaginator = client.get_paginator("list_memory_records")
28
+ list_sessions_paginator: ListSessionsPaginator = client.get_paginator("list_sessions")
29
+ retrieve_memory_records_paginator: RetrieveMemoryRecordsPaginator = client.get_paginator("retrieve_memory_records")
30
+ ```
31
+ """
32
+
33
+ from .client import BedrockAgentCoreDataPlaneFrontingLayerClient
34
+ from .paginator import (
35
+ ListActorsPaginator,
36
+ ListEventsPaginator,
37
+ ListMemoryRecordsPaginator,
38
+ ListSessionsPaginator,
39
+ RetrieveMemoryRecordsPaginator,
40
+ )
41
+
42
+ Client = BedrockAgentCoreDataPlaneFrontingLayerClient
43
+
44
+
45
+ __all__ = (
46
+ "BedrockAgentCoreDataPlaneFrontingLayerClient",
47
+ "Client",
48
+ "ListActorsPaginator",
49
+ "ListEventsPaginator",
50
+ "ListMemoryRecordsPaginator",
51
+ "ListSessionsPaginator",
52
+ "RetrieveMemoryRecordsPaginator",
53
+ )
@@ -0,0 +1,52 @@
1
+ """
2
+ Main interface for bedrock-agentcore service.
3
+
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/)
5
+
6
+ Copyright 2025 Vlad Emelianov
7
+
8
+ Usage::
9
+
10
+ ```python
11
+ from boto3.session import Session
12
+ from types_boto3_bedrock_agentcore import (
13
+ BedrockAgentCoreDataPlaneFrontingLayerClient,
14
+ Client,
15
+ ListActorsPaginator,
16
+ ListEventsPaginator,
17
+ ListMemoryRecordsPaginator,
18
+ ListSessionsPaginator,
19
+ RetrieveMemoryRecordsPaginator,
20
+ )
21
+
22
+ session = Session()
23
+ client: BedrockAgentCoreDataPlaneFrontingLayerClient = session.client("bedrock-agentcore")
24
+
25
+ list_actors_paginator: ListActorsPaginator = client.get_paginator("list_actors")
26
+ list_events_paginator: ListEventsPaginator = client.get_paginator("list_events")
27
+ list_memory_records_paginator: ListMemoryRecordsPaginator = client.get_paginator("list_memory_records")
28
+ list_sessions_paginator: ListSessionsPaginator = client.get_paginator("list_sessions")
29
+ retrieve_memory_records_paginator: RetrieveMemoryRecordsPaginator = client.get_paginator("retrieve_memory_records")
30
+ ```
31
+ """
32
+
33
+ from .client import BedrockAgentCoreDataPlaneFrontingLayerClient
34
+ from .paginator import (
35
+ ListActorsPaginator,
36
+ ListEventsPaginator,
37
+ ListMemoryRecordsPaginator,
38
+ ListSessionsPaginator,
39
+ RetrieveMemoryRecordsPaginator,
40
+ )
41
+
42
+ Client = BedrockAgentCoreDataPlaneFrontingLayerClient
43
+
44
+ __all__ = (
45
+ "BedrockAgentCoreDataPlaneFrontingLayerClient",
46
+ "Client",
47
+ "ListActorsPaginator",
48
+ "ListEventsPaginator",
49
+ "ListMemoryRecordsPaginator",
50
+ "ListSessionsPaginator",
51
+ "RetrieveMemoryRecordsPaginator",
52
+ )
@@ -0,0 +1,43 @@
1
+ """
2
+ Main CLI entrypoint.
3
+
4
+ Copyright 2025 Vlad Emelianov
5
+ """
6
+
7
+ import sys
8
+
9
+
10
+ def print_info() -> None:
11
+ """
12
+ Print package info to stdout.
13
+ """
14
+ sys.stdout.write(
15
+ "Type annotations for boto3 BedrockAgentCoreDataPlaneFrontingLayer 1.39.7\n"
16
+ "Version: 1.39.7\n"
17
+ "Builder version: 8.11.0\n"
18
+ "Docs: https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore//\n"
19
+ "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore.html#bedrockagentcoredataplanefrontinglayer\n"
20
+ "Other services: https://pypi.org/project/boto3-stubs/\n"
21
+ "Changelog: https://github.com/youtype/mypy_boto3_builder/releases\n"
22
+ )
23
+
24
+
25
+ def print_version() -> None:
26
+ """
27
+ Print package version to stdout.
28
+ """
29
+ sys.stdout.write("1.39.7\n")
30
+
31
+
32
+ def main() -> None:
33
+ """
34
+ Main CLI entrypoint.
35
+ """
36
+ if "--version" in sys.argv:
37
+ print_version()
38
+ return
39
+ print_info()
40
+
41
+
42
+ if __name__ == "__main__":
43
+ main()
@@ -0,0 +1,467 @@
1
+ """
2
+ Type annotations for bedrock-agentcore service Client.
3
+
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/)
5
+
6
+ Copyright 2025 Vlad Emelianov
7
+
8
+ Usage::
9
+
10
+ ```python
11
+ from boto3.session import Session
12
+ from types_boto3_bedrock_agentcore.client import BedrockAgentCoreDataPlaneFrontingLayerClient
13
+
14
+ session = Session()
15
+ client: BedrockAgentCoreDataPlaneFrontingLayerClient = session.client("bedrock-agentcore")
16
+ ```
17
+ """
18
+
19
+ from __future__ import annotations
20
+
21
+ import sys
22
+ from typing import Any, overload
23
+
24
+ from botocore.client import BaseClient, ClientMeta
25
+ from botocore.errorfactory import BaseClientExceptions
26
+ from botocore.exceptions import ClientError as BotocoreClientError
27
+
28
+ from .paginator import (
29
+ ListActorsPaginator,
30
+ ListEventsPaginator,
31
+ ListMemoryRecordsPaginator,
32
+ ListSessionsPaginator,
33
+ RetrieveMemoryRecordsPaginator,
34
+ )
35
+ from .type_defs import (
36
+ CreateEventInputTypeDef,
37
+ CreateEventOutputTypeDef,
38
+ DeleteEventInputTypeDef,
39
+ DeleteEventOutputTypeDef,
40
+ DeleteMemoryRecordInputTypeDef,
41
+ DeleteMemoryRecordOutputTypeDef,
42
+ GetBrowserSessionRequestTypeDef,
43
+ GetBrowserSessionResponseTypeDef,
44
+ GetCodeInterpreterSessionRequestTypeDef,
45
+ GetCodeInterpreterSessionResponseTypeDef,
46
+ GetEventInputTypeDef,
47
+ GetEventOutputTypeDef,
48
+ GetMemoryRecordInputTypeDef,
49
+ GetMemoryRecordOutputTypeDef,
50
+ GetResourceApiKeyRequestTypeDef,
51
+ GetResourceApiKeyResponseTypeDef,
52
+ GetResourceOauth2TokenRequestTypeDef,
53
+ GetResourceOauth2TokenResponseTypeDef,
54
+ GetWorkloadAccessTokenForJWTRequestTypeDef,
55
+ GetWorkloadAccessTokenForJWTResponseTypeDef,
56
+ GetWorkloadAccessTokenForUserIdRequestTypeDef,
57
+ GetWorkloadAccessTokenForUserIdResponseTypeDef,
58
+ GetWorkloadAccessTokenRequestTypeDef,
59
+ GetWorkloadAccessTokenResponseTypeDef,
60
+ InvokeAgentRuntimeRequestTypeDef,
61
+ InvokeAgentRuntimeResponseTypeDef,
62
+ InvokeCodeInterpreterRequestTypeDef,
63
+ InvokeCodeInterpreterResponseTypeDef,
64
+ ListActorsInputTypeDef,
65
+ ListActorsOutputTypeDef,
66
+ ListBrowserSessionsRequestTypeDef,
67
+ ListBrowserSessionsResponseTypeDef,
68
+ ListCodeInterpreterSessionsRequestTypeDef,
69
+ ListCodeInterpreterSessionsResponseTypeDef,
70
+ ListEventsInputTypeDef,
71
+ ListEventsOutputTypeDef,
72
+ ListMemoryRecordsInputTypeDef,
73
+ ListMemoryRecordsOutputTypeDef,
74
+ ListSessionsInputTypeDef,
75
+ ListSessionsOutputTypeDef,
76
+ RetrieveMemoryRecordsInputTypeDef,
77
+ RetrieveMemoryRecordsOutputTypeDef,
78
+ StartBrowserSessionRequestTypeDef,
79
+ StartBrowserSessionResponseTypeDef,
80
+ StartCodeInterpreterSessionRequestTypeDef,
81
+ StartCodeInterpreterSessionResponseTypeDef,
82
+ StopBrowserSessionRequestTypeDef,
83
+ StopBrowserSessionResponseTypeDef,
84
+ StopCodeInterpreterSessionRequestTypeDef,
85
+ StopCodeInterpreterSessionResponseTypeDef,
86
+ UpdateBrowserStreamRequestTypeDef,
87
+ UpdateBrowserStreamResponseTypeDef,
88
+ )
89
+
90
+ if sys.version_info >= (3, 9):
91
+ from builtins import type as Type
92
+ from collections.abc import Mapping
93
+ else:
94
+ from typing import Mapping, Type
95
+ if sys.version_info >= (3, 12):
96
+ from typing import Literal, Unpack
97
+ else:
98
+ from typing_extensions import Literal, Unpack
99
+
100
+
101
+ __all__ = ("BedrockAgentCoreDataPlaneFrontingLayerClient",)
102
+
103
+
104
+ class Exceptions(BaseClientExceptions):
105
+ AccessDeniedException: Type[BotocoreClientError]
106
+ ClientError: Type[BotocoreClientError]
107
+ ConflictException: Type[BotocoreClientError]
108
+ InternalServerException: Type[BotocoreClientError]
109
+ InvalidInputException: Type[BotocoreClientError]
110
+ ResourceNotFoundException: Type[BotocoreClientError]
111
+ RuntimeClientError: Type[BotocoreClientError]
112
+ ServiceException: Type[BotocoreClientError]
113
+ ServiceQuotaExceededException: Type[BotocoreClientError]
114
+ ThrottledException: Type[BotocoreClientError]
115
+ ThrottlingException: Type[BotocoreClientError]
116
+ UnauthorizedException: Type[BotocoreClientError]
117
+ ValidationException: Type[BotocoreClientError]
118
+
119
+
120
+ class BedrockAgentCoreDataPlaneFrontingLayerClient(BaseClient):
121
+ """
122
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore.html#BedrockAgentCoreDataPlaneFrontingLayer.Client)
123
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/)
124
+ """
125
+
126
+ meta: ClientMeta
127
+
128
+ @property
129
+ def exceptions(self) -> Exceptions:
130
+ """
131
+ BedrockAgentCoreDataPlaneFrontingLayerClient exceptions.
132
+
133
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore.html#BedrockAgentCoreDataPlaneFrontingLayer.Client)
134
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#exceptions)
135
+ """
136
+
137
+ def can_paginate(self, operation_name: str) -> bool:
138
+ """
139
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore/client/can_paginate.html)
140
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#can_paginate)
141
+ """
142
+
143
+ def generate_presigned_url(
144
+ self,
145
+ ClientMethod: str,
146
+ Params: Mapping[str, Any] = ...,
147
+ ExpiresIn: int = 3600,
148
+ HttpMethod: str = ...,
149
+ ) -> str:
150
+ """
151
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore/client/generate_presigned_url.html)
152
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#generate_presigned_url)
153
+ """
154
+
155
+ def create_event(self, **kwargs: Unpack[CreateEventInputTypeDef]) -> CreateEventOutputTypeDef:
156
+ """
157
+ Creates an event in a memory store.
158
+
159
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore/client/create_event.html)
160
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#create_event)
161
+ """
162
+
163
+ def delete_event(self, **kwargs: Unpack[DeleteEventInputTypeDef]) -> DeleteEventOutputTypeDef:
164
+ """
165
+ Deletes an event from a memory store.
166
+
167
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore/client/delete_event.html)
168
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#delete_event)
169
+ """
170
+
171
+ def delete_memory_record(
172
+ self, **kwargs: Unpack[DeleteMemoryRecordInputTypeDef]
173
+ ) -> DeleteMemoryRecordOutputTypeDef:
174
+ """
175
+ Deletes a memory record from a memory store.
176
+
177
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore/client/delete_memory_record.html)
178
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#delete_memory_record)
179
+ """
180
+
181
+ def get_browser_session(
182
+ self, **kwargs: Unpack[GetBrowserSessionRequestTypeDef]
183
+ ) -> GetBrowserSessionResponseTypeDef:
184
+ """
185
+ Retrieves detailed information about a specific browser session in Amazon
186
+ Bedrock.
187
+
188
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore/client/get_browser_session.html)
189
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#get_browser_session)
190
+ """
191
+
192
+ def get_code_interpreter_session(
193
+ self, **kwargs: Unpack[GetCodeInterpreterSessionRequestTypeDef]
194
+ ) -> GetCodeInterpreterSessionResponseTypeDef:
195
+ """
196
+ Retrieves detailed information about a specific code interpreter session in
197
+ Amazon Bedrock.
198
+
199
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore/client/get_code_interpreter_session.html)
200
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#get_code_interpreter_session)
201
+ """
202
+
203
+ def get_event(self, **kwargs: Unpack[GetEventInputTypeDef]) -> GetEventOutputTypeDef:
204
+ """
205
+ Retrieves information about a specific event in a memory store.
206
+
207
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore/client/get_event.html)
208
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#get_event)
209
+ """
210
+
211
+ def get_memory_record(
212
+ self, **kwargs: Unpack[GetMemoryRecordInputTypeDef]
213
+ ) -> GetMemoryRecordOutputTypeDef:
214
+ """
215
+ Retrieves a specific memory record from a memory store.
216
+
217
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore/client/get_memory_record.html)
218
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#get_memory_record)
219
+ """
220
+
221
+ def get_resource_api_key(
222
+ self, **kwargs: Unpack[GetResourceApiKeyRequestTypeDef]
223
+ ) -> GetResourceApiKeyResponseTypeDef:
224
+ """
225
+ Retrieves an API Key associated with an API Key Credential Provider.
226
+
227
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore/client/get_resource_api_key.html)
228
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#get_resource_api_key)
229
+ """
230
+
231
+ def get_resource_oauth2_token(
232
+ self, **kwargs: Unpack[GetResourceOauth2TokenRequestTypeDef]
233
+ ) -> GetResourceOauth2TokenResponseTypeDef:
234
+ """
235
+ Reaturns the Oauth2Token of the provided resource.
236
+
237
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore/client/get_resource_oauth2_token.html)
238
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#get_resource_oauth2_token)
239
+ """
240
+
241
+ def get_workload_access_token(
242
+ self, **kwargs: Unpack[GetWorkloadAccessTokenRequestTypeDef]
243
+ ) -> GetWorkloadAccessTokenResponseTypeDef:
244
+ """
245
+ Obtains an Workload access token for agentic workloads not acting on behalf of
246
+ user.
247
+
248
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore/client/get_workload_access_token.html)
249
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#get_workload_access_token)
250
+ """
251
+
252
+ def get_workload_access_token_for_jwt(
253
+ self, **kwargs: Unpack[GetWorkloadAccessTokenForJWTRequestTypeDef]
254
+ ) -> GetWorkloadAccessTokenForJWTResponseTypeDef:
255
+ """
256
+ Obtains an Workload access token for agentic workloads acting on behalf of user
257
+ with JWT token.
258
+
259
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore/client/get_workload_access_token_for_jwt.html)
260
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#get_workload_access_token_for_jwt)
261
+ """
262
+
263
+ def get_workload_access_token_for_user_id(
264
+ self, **kwargs: Unpack[GetWorkloadAccessTokenForUserIdRequestTypeDef]
265
+ ) -> GetWorkloadAccessTokenForUserIdResponseTypeDef:
266
+ """
267
+ Obtains an Workload access token for agentic workloads acting on behalf of user
268
+ with User Id.
269
+
270
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore/client/get_workload_access_token_for_user_id.html)
271
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#get_workload_access_token_for_user_id)
272
+ """
273
+
274
+ def invoke_agent_runtime(
275
+ self, **kwargs: Unpack[InvokeAgentRuntimeRequestTypeDef]
276
+ ) -> InvokeAgentRuntimeResponseTypeDef:
277
+ """
278
+ Sends a request to an agent runtime in Amazon Bedrock and receives responses in
279
+ real-time.
280
+
281
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore/client/invoke_agent_runtime.html)
282
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#invoke_agent_runtime)
283
+ """
284
+
285
+ def invoke_code_interpreter(
286
+ self, **kwargs: Unpack[InvokeCodeInterpreterRequestTypeDef]
287
+ ) -> InvokeCodeInterpreterResponseTypeDef:
288
+ """
289
+ Executes code within an active code interpreter session in Amazon Bedrock.
290
+
291
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore/client/invoke_code_interpreter.html)
292
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#invoke_code_interpreter)
293
+ """
294
+
295
+ def list_actors(self, **kwargs: Unpack[ListActorsInputTypeDef]) -> ListActorsOutputTypeDef:
296
+ """
297
+ Lists all actors in a memory store.
298
+
299
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore/client/list_actors.html)
300
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#list_actors)
301
+ """
302
+
303
+ def list_browser_sessions(
304
+ self, **kwargs: Unpack[ListBrowserSessionsRequestTypeDef]
305
+ ) -> ListBrowserSessionsResponseTypeDef:
306
+ """
307
+ Retrieves a list of browser sessions in Amazon Bedrock that match the specified
308
+ criteria.
309
+
310
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore/client/list_browser_sessions.html)
311
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#list_browser_sessions)
312
+ """
313
+
314
+ def list_code_interpreter_sessions(
315
+ self, **kwargs: Unpack[ListCodeInterpreterSessionsRequestTypeDef]
316
+ ) -> ListCodeInterpreterSessionsResponseTypeDef:
317
+ """
318
+ Retrieves a list of code interpreter sessions in Amazon Bedrock that match the
319
+ specified criteria.
320
+
321
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore/client/list_code_interpreter_sessions.html)
322
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#list_code_interpreter_sessions)
323
+ """
324
+
325
+ def list_events(self, **kwargs: Unpack[ListEventsInputTypeDef]) -> ListEventsOutputTypeDef:
326
+ """
327
+ Lists events in a memory store based on specified criteria.
328
+
329
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore/client/list_events.html)
330
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#list_events)
331
+ """
332
+
333
+ def list_memory_records(
334
+ self, **kwargs: Unpack[ListMemoryRecordsInputTypeDef]
335
+ ) -> ListMemoryRecordsOutputTypeDef:
336
+ """
337
+ Lists memory records in a memory store based on specified criteria.
338
+
339
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore/client/list_memory_records.html)
340
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#list_memory_records)
341
+ """
342
+
343
+ def list_sessions(
344
+ self, **kwargs: Unpack[ListSessionsInputTypeDef]
345
+ ) -> ListSessionsOutputTypeDef:
346
+ """
347
+ Lists sessions in a memory store based on specified criteria.
348
+
349
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore/client/list_sessions.html)
350
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#list_sessions)
351
+ """
352
+
353
+ def retrieve_memory_records(
354
+ self, **kwargs: Unpack[RetrieveMemoryRecordsInputTypeDef]
355
+ ) -> RetrieveMemoryRecordsOutputTypeDef:
356
+ """
357
+ Searches for and retrieves memory records from a memory store based on
358
+ specified search criteria.
359
+
360
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore/client/retrieve_memory_records.html)
361
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#retrieve_memory_records)
362
+ """
363
+
364
+ def start_browser_session(
365
+ self, **kwargs: Unpack[StartBrowserSessionRequestTypeDef]
366
+ ) -> StartBrowserSessionResponseTypeDef:
367
+ """
368
+ Creates and initializes a browser session in Amazon Bedrock.
369
+
370
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore/client/start_browser_session.html)
371
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#start_browser_session)
372
+ """
373
+
374
+ def start_code_interpreter_session(
375
+ self, **kwargs: Unpack[StartCodeInterpreterSessionRequestTypeDef]
376
+ ) -> StartCodeInterpreterSessionResponseTypeDef:
377
+ """
378
+ Creates and initializes a code interpreter session in Amazon Bedrock.
379
+
380
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore/client/start_code_interpreter_session.html)
381
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#start_code_interpreter_session)
382
+ """
383
+
384
+ def stop_browser_session(
385
+ self, **kwargs: Unpack[StopBrowserSessionRequestTypeDef]
386
+ ) -> StopBrowserSessionResponseTypeDef:
387
+ """
388
+ Terminates an active browser session in Amazon Bedrock.
389
+
390
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore/client/stop_browser_session.html)
391
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#stop_browser_session)
392
+ """
393
+
394
+ def stop_code_interpreter_session(
395
+ self, **kwargs: Unpack[StopCodeInterpreterSessionRequestTypeDef]
396
+ ) -> StopCodeInterpreterSessionResponseTypeDef:
397
+ """
398
+ Terminates an active code interpreter session in Amazon Bedrock.
399
+
400
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore/client/stop_code_interpreter_session.html)
401
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#stop_code_interpreter_session)
402
+ """
403
+
404
+ def update_browser_stream(
405
+ self, **kwargs: Unpack[UpdateBrowserStreamRequestTypeDef]
406
+ ) -> UpdateBrowserStreamResponseTypeDef:
407
+ """
408
+ Updates a browser stream.
409
+
410
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore/client/update_browser_stream.html)
411
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#update_browser_stream)
412
+ """
413
+
414
+ @overload # type: ignore[override]
415
+ def get_paginator( # type: ignore[override]
416
+ self, operation_name: Literal["list_actors"]
417
+ ) -> ListActorsPaginator:
418
+ """
419
+ Create a paginator for an operation.
420
+
421
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore/client/get_paginator.html)
422
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#get_paginator)
423
+ """
424
+
425
+ @overload # type: ignore[override]
426
+ def get_paginator( # type: ignore[override]
427
+ self, operation_name: Literal["list_events"]
428
+ ) -> ListEventsPaginator:
429
+ """
430
+ Create a paginator for an operation.
431
+
432
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore/client/get_paginator.html)
433
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#get_paginator)
434
+ """
435
+
436
+ @overload # type: ignore[override]
437
+ def get_paginator( # type: ignore[override]
438
+ self, operation_name: Literal["list_memory_records"]
439
+ ) -> ListMemoryRecordsPaginator:
440
+ """
441
+ Create a paginator for an operation.
442
+
443
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore/client/get_paginator.html)
444
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#get_paginator)
445
+ """
446
+
447
+ @overload # type: ignore[override]
448
+ def get_paginator( # type: ignore[override]
449
+ self, operation_name: Literal["list_sessions"]
450
+ ) -> ListSessionsPaginator:
451
+ """
452
+ Create a paginator for an operation.
453
+
454
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore/client/get_paginator.html)
455
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#get_paginator)
456
+ """
457
+
458
+ @overload # type: ignore[override]
459
+ def get_paginator( # type: ignore[override]
460
+ self, operation_name: Literal["retrieve_memory_records"]
461
+ ) -> RetrieveMemoryRecordsPaginator:
462
+ """
463
+ Create a paginator for an operation.
464
+
465
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-agentcore/client/get_paginator.html)
466
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/client/#get_paginator)
467
+ """