aws-sdk-bedrockagentcore 1.16.0 → 1.18.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcore/client.rb +177 -50
- data/lib/aws-sdk-bedrockagentcore/client_api.rb +99 -30
- data/lib/aws-sdk-bedrockagentcore/errors.rb +20 -0
- data/lib/aws-sdk-bedrockagentcore/types.rb +258 -46
- data/lib/aws-sdk-bedrockagentcore.rb +1 -1
- data/sig/client.rbs +34 -0
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +55 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 676e23c16bfbb735c865caa35ddf469bcda0acd1ef2ee49234224a7e27b41221
|
|
4
|
+
data.tar.gz: a4376096769335ed424119f89f6b92725280ff9cdbac24200791e3ff5b4f80f5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eea0e71ad859c99bbc39ab8a4a5fd9c84aad26e4e04589b58e5950781097486ca06d1ab41b7698ae12f3539c16fb69727bbd9895ade19f753d4e3a479d7dda80
|
|
7
|
+
data.tar.gz: d4f74474fdac2123042e68a302702e15352edd06911b0cc599d79d6eb7d2d3b1666037f94053e013d7c46c6c8db0a5dbe546d37bc78ac248182f4f2849f95a09
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.18.0 (2026-02-05)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Support Browser profile persistence (cookies and local storage) across sessions for AgentCore Browser.
|
|
8
|
+
|
|
9
|
+
1.17.0 (2026-01-21)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Supports custom browser extensions for AgentCore Browser and increased message payloads up to 100KB per message in an Event for AgentCore Memory
|
|
13
|
+
|
|
4
14
|
1.16.0 (2026-01-16)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.18.0
|
|
@@ -993,8 +993,8 @@ module Aws::BedrockAgentCore
|
|
|
993
993
|
end
|
|
994
994
|
|
|
995
995
|
# Retrieves detailed information about a specific browser session in
|
|
996
|
-
# Amazon Bedrock. This operation returns the session's
|
|
997
|
-
# current status, associated streams, and metadata.
|
|
996
|
+
# Amazon Bedrock AgentCore. This operation returns the session's
|
|
997
|
+
# configuration, current status, associated streams, and metadata.
|
|
998
998
|
#
|
|
999
999
|
# To get a browser session, you must specify both the browser identifier
|
|
1000
1000
|
# and the session ID. The response includes information about the
|
|
@@ -1028,6 +1028,8 @@ module Aws::BedrockAgentCore
|
|
|
1028
1028
|
# * {Types::GetBrowserSessionResponse#name #name} => String
|
|
1029
1029
|
# * {Types::GetBrowserSessionResponse#created_at #created_at} => Time
|
|
1030
1030
|
# * {Types::GetBrowserSessionResponse#view_port #view_port} => Types::ViewPort
|
|
1031
|
+
# * {Types::GetBrowserSessionResponse#extensions #extensions} => Array<Types::BrowserExtension>
|
|
1032
|
+
# * {Types::GetBrowserSessionResponse#profile_configuration #profile_configuration} => Types::BrowserProfileConfiguration
|
|
1031
1033
|
# * {Types::GetBrowserSessionResponse#session_timeout_seconds #session_timeout_seconds} => Integer
|
|
1032
1034
|
# * {Types::GetBrowserSessionResponse#status #status} => String
|
|
1033
1035
|
# * {Types::GetBrowserSessionResponse#streams #streams} => Types::BrowserSessionStream
|
|
@@ -1049,6 +1051,11 @@ module Aws::BedrockAgentCore
|
|
|
1049
1051
|
# resp.created_at #=> Time
|
|
1050
1052
|
# resp.view_port.width #=> Integer
|
|
1051
1053
|
# resp.view_port.height #=> Integer
|
|
1054
|
+
# resp.extensions #=> Array
|
|
1055
|
+
# resp.extensions[0].location.s3.bucket #=> String
|
|
1056
|
+
# resp.extensions[0].location.s3.prefix #=> String
|
|
1057
|
+
# resp.extensions[0].location.s3.version_id #=> String
|
|
1058
|
+
# resp.profile_configuration.profile_identifier #=> String
|
|
1052
1059
|
# resp.session_timeout_seconds #=> Integer
|
|
1053
1060
|
# resp.status #=> String, one of "READY", "TERMINATED"
|
|
1054
1061
|
# resp.streams.automation_stream.stream_endpoint #=> String
|
|
@@ -1067,8 +1074,8 @@ module Aws::BedrockAgentCore
|
|
|
1067
1074
|
end
|
|
1068
1075
|
|
|
1069
1076
|
# Retrieves detailed information about a specific code interpreter
|
|
1070
|
-
# session in Amazon Bedrock. This operation returns the
|
|
1071
|
-
# configuration, current status, and metadata.
|
|
1077
|
+
# session in Amazon Bedrock AgentCore. This operation returns the
|
|
1078
|
+
# session's configuration, current status, and metadata.
|
|
1072
1079
|
#
|
|
1073
1080
|
# To get a code interpreter session, you must specify both the code
|
|
1074
1081
|
# interpreter identifier and the session ID. The response includes
|
|
@@ -1508,13 +1515,13 @@ module Aws::BedrockAgentCore
|
|
|
1508
1515
|
# @option params [required, String] :agent_runtime_arn
|
|
1509
1516
|
# The Amazon Web Services Resource Name (ARN) of the agent runtime to
|
|
1510
1517
|
# invoke. The ARN uniquely identifies the agent runtime resource in
|
|
1511
|
-
# Amazon Bedrock.
|
|
1518
|
+
# Amazon Bedrock AgentCore.
|
|
1512
1519
|
#
|
|
1513
1520
|
# @option params [String] :qualifier
|
|
1514
1521
|
# The qualifier to use for the agent runtime. This can be a version
|
|
1515
1522
|
# number or an endpoint name that points to a specific version. If not
|
|
1516
|
-
# specified, Amazon Bedrock uses the default version of the
|
|
1517
|
-
# runtime.
|
|
1523
|
+
# specified, Amazon Bedrock AgentCore uses the default version of the
|
|
1524
|
+
# agent runtime.
|
|
1518
1525
|
#
|
|
1519
1526
|
# @option params [String] :account_id
|
|
1520
1527
|
# The identifier of the Amazon Web Services account for the agent
|
|
@@ -1581,8 +1588,8 @@ module Aws::BedrockAgentCore
|
|
|
1581
1588
|
end
|
|
1582
1589
|
|
|
1583
1590
|
# Executes code within an active code interpreter session in Amazon
|
|
1584
|
-
# Bedrock. This operation processes the provided code, runs it
|
|
1585
|
-
# secure environment, and returns the execution results including
|
|
1591
|
+
# Bedrock AgentCore. This operation processes the provided code, runs it
|
|
1592
|
+
# in a secure environment, and returns the execution results including
|
|
1586
1593
|
# output, errors, and generated visualizations.
|
|
1587
1594
|
#
|
|
1588
1595
|
# To execute code, you must specify the code interpreter identifier,
|
|
@@ -1946,9 +1953,10 @@ module Aws::BedrockAgentCore
|
|
|
1946
1953
|
req.send_request(options)
|
|
1947
1954
|
end
|
|
1948
1955
|
|
|
1949
|
-
# Retrieves a list of browser sessions in Amazon Bedrock that
|
|
1950
|
-
# specified criteria. This operation returns summary
|
|
1951
|
-
# each session, including identifiers, status, and
|
|
1956
|
+
# Retrieves a list of browser sessions in Amazon Bedrock AgentCore that
|
|
1957
|
+
# match the specified criteria. This operation returns summary
|
|
1958
|
+
# information about each session, including identifiers, status, and
|
|
1959
|
+
# timestamps.
|
|
1952
1960
|
#
|
|
1953
1961
|
# You can filter the results by browser identifier and session status.
|
|
1954
1962
|
# The operation supports pagination to handle large result sets
|
|
@@ -1982,8 +1990,8 @@ module Aws::BedrockAgentCore
|
|
|
1982
1990
|
# @option params [String] :next_token
|
|
1983
1991
|
# The token for the next set of results. Use the value returned in the
|
|
1984
1992
|
# previous response in the next request to retrieve the next set of
|
|
1985
|
-
# results. If not specified, Amazon Bedrock returns the first
|
|
1986
|
-
# results.
|
|
1993
|
+
# results. If not specified, Amazon Bedrock AgentCore returns the first
|
|
1994
|
+
# page of results.
|
|
1987
1995
|
#
|
|
1988
1996
|
# @option params [String] :status
|
|
1989
1997
|
# The status of the browser sessions to list. Valid values include
|
|
@@ -2024,10 +2032,10 @@ module Aws::BedrockAgentCore
|
|
|
2024
2032
|
req.send_request(options)
|
|
2025
2033
|
end
|
|
2026
2034
|
|
|
2027
|
-
# Retrieves a list of code interpreter sessions in Amazon Bedrock
|
|
2028
|
-
# match the specified criteria. This operation returns
|
|
2029
|
-
# information about each session, including identifiers, status,
|
|
2030
|
-
# timestamps.
|
|
2035
|
+
# Retrieves a list of code interpreter sessions in Amazon Bedrock
|
|
2036
|
+
# AgentCore that match the specified criteria. This operation returns
|
|
2037
|
+
# summary information about each session, including identifiers, status,
|
|
2038
|
+
# and timestamps.
|
|
2031
2039
|
#
|
|
2032
2040
|
# You can filter the results by code interpreter identifier and session
|
|
2033
2041
|
# status. The operation supports pagination to handle large result sets
|
|
@@ -2061,8 +2069,8 @@ module Aws::BedrockAgentCore
|
|
|
2061
2069
|
# @option params [String] :next_token
|
|
2062
2070
|
# The token for the next set of results. Use the value returned in the
|
|
2063
2071
|
# previous response in the next request to retrieve the next set of
|
|
2064
|
-
# results. If not specified, Amazon Bedrock returns the first
|
|
2065
|
-
# results.
|
|
2072
|
+
# results. If not specified, Amazon Bedrock AgentCore returns the first
|
|
2073
|
+
# page of results.
|
|
2066
2074
|
#
|
|
2067
2075
|
# @option params [String] :status
|
|
2068
2076
|
# The status of the code interpreter sessions to list. Valid values
|
|
@@ -2276,8 +2284,8 @@ module Aws::BedrockAgentCore
|
|
|
2276
2284
|
# memory records.
|
|
2277
2285
|
#
|
|
2278
2286
|
# @option params [required, String] :namespace
|
|
2279
|
-
# The namespace to filter memory records by.
|
|
2280
|
-
# records in
|
|
2287
|
+
# The namespace prefix to filter memory records by. Returns all memory
|
|
2288
|
+
# records in namespaces that start with the provided prefix.
|
|
2281
2289
|
#
|
|
2282
2290
|
# @option params [String] :memory_strategy_id
|
|
2283
2291
|
# The memory strategy identifier to filter memory records by. If
|
|
@@ -2401,7 +2409,8 @@ module Aws::BedrockAgentCore
|
|
|
2401
2409
|
# memory records.
|
|
2402
2410
|
#
|
|
2403
2411
|
# @option params [required, String] :namespace
|
|
2404
|
-
# The namespace to filter memory records by.
|
|
2412
|
+
# The namespace prefix to filter memory records by. Searches for memory
|
|
2413
|
+
# records in namespaces that start with the provided prefix.
|
|
2405
2414
|
#
|
|
2406
2415
|
# @option params [required, Types::SearchCriteria] :search_criteria
|
|
2407
2416
|
# The search criteria to use for finding relevant memory records. This
|
|
@@ -2474,8 +2483,98 @@ module Aws::BedrockAgentCore
|
|
|
2474
2483
|
req.send_request(options)
|
|
2475
2484
|
end
|
|
2476
2485
|
|
|
2477
|
-
#
|
|
2478
|
-
#
|
|
2486
|
+
# Saves the current state of a browser session as a reusable profile in
|
|
2487
|
+
# Amazon Bedrock AgentCore. A browser profile captures persistent
|
|
2488
|
+
# browser data such as cookies and local storage from an active session,
|
|
2489
|
+
# enabling you to reuse this data in future browser sessions.
|
|
2490
|
+
#
|
|
2491
|
+
# To save a browser session profile, you must specify the profile
|
|
2492
|
+
# identifier, browser identifier, and session ID. The session must be
|
|
2493
|
+
# active when saving the profile. Once saved, the profile can be used
|
|
2494
|
+
# with the `StartBrowserSession` operation to initialize new sessions
|
|
2495
|
+
# with the stored browser state.
|
|
2496
|
+
#
|
|
2497
|
+
# Browser profiles are useful for scenarios that require persistent
|
|
2498
|
+
# authentication, maintaining user preferences across sessions, or
|
|
2499
|
+
# continuing tasks that depend on previously stored browser data.
|
|
2500
|
+
#
|
|
2501
|
+
# The following operations are related to `SaveBrowserSessionProfile`:
|
|
2502
|
+
#
|
|
2503
|
+
# * [StartBrowserSession][1]
|
|
2504
|
+
#
|
|
2505
|
+
# * [GetBrowserSession][2]
|
|
2506
|
+
#
|
|
2507
|
+
#
|
|
2508
|
+
#
|
|
2509
|
+
# [1]: https://docs.aws.amazon.com/bedrock-agentcore/latest/APIReference/API_StartBrowserSession.html
|
|
2510
|
+
# [2]: https://docs.aws.amazon.com/bedrock-agentcore/latest/APIReference/API_GetBrowserSession.html
|
|
2511
|
+
#
|
|
2512
|
+
# @option params [String] :trace_id
|
|
2513
|
+
# The trace identifier for request tracking.
|
|
2514
|
+
#
|
|
2515
|
+
# @option params [String] :trace_parent
|
|
2516
|
+
# The parent trace information for distributed tracing.
|
|
2517
|
+
#
|
|
2518
|
+
# @option params [required, String] :profile_identifier
|
|
2519
|
+
# The unique identifier for the browser profile. This identifier is used
|
|
2520
|
+
# to reference the profile when starting new browser sessions. The
|
|
2521
|
+
# identifier must follow the pattern of an alphanumeric name (up to 48
|
|
2522
|
+
# characters) followed by a hyphen and a 10-character alphanumeric
|
|
2523
|
+
# suffix.
|
|
2524
|
+
#
|
|
2525
|
+
# @option params [required, String] :browser_identifier
|
|
2526
|
+
# The unique identifier of the browser associated with the session from
|
|
2527
|
+
# which to save the profile.
|
|
2528
|
+
#
|
|
2529
|
+
# @option params [required, String] :session_id
|
|
2530
|
+
# The unique identifier of the browser session from which to save the
|
|
2531
|
+
# profile. The session must be active when saving the profile.
|
|
2532
|
+
#
|
|
2533
|
+
# @option params [String] :client_token
|
|
2534
|
+
# A unique, case-sensitive identifier to ensure that the API request
|
|
2535
|
+
# completes no more than one time. If this token matches a previous
|
|
2536
|
+
# request, Amazon Bedrock AgentCore ignores the request, but does not
|
|
2537
|
+
# return an error.
|
|
2538
|
+
#
|
|
2539
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
2540
|
+
# not need to pass this option.**
|
|
2541
|
+
#
|
|
2542
|
+
# @return [Types::SaveBrowserSessionProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2543
|
+
#
|
|
2544
|
+
# * {Types::SaveBrowserSessionProfileResponse#profile_identifier #profile_identifier} => String
|
|
2545
|
+
# * {Types::SaveBrowserSessionProfileResponse#browser_identifier #browser_identifier} => String
|
|
2546
|
+
# * {Types::SaveBrowserSessionProfileResponse#session_id #session_id} => String
|
|
2547
|
+
# * {Types::SaveBrowserSessionProfileResponse#last_updated_at #last_updated_at} => Time
|
|
2548
|
+
#
|
|
2549
|
+
# @example Request syntax with placeholder values
|
|
2550
|
+
#
|
|
2551
|
+
# resp = client.save_browser_session_profile({
|
|
2552
|
+
# trace_id: "SaveBrowserSessionProfileRequestTraceIdString",
|
|
2553
|
+
# trace_parent: "SaveBrowserSessionProfileRequestTraceParentString",
|
|
2554
|
+
# profile_identifier: "BrowserProfileId", # required
|
|
2555
|
+
# browser_identifier: "String", # required
|
|
2556
|
+
# session_id: "BrowserSessionId", # required
|
|
2557
|
+
# client_token: "ClientToken",
|
|
2558
|
+
# })
|
|
2559
|
+
#
|
|
2560
|
+
# @example Response structure
|
|
2561
|
+
#
|
|
2562
|
+
# resp.profile_identifier #=> String
|
|
2563
|
+
# resp.browser_identifier #=> String
|
|
2564
|
+
# resp.session_id #=> String
|
|
2565
|
+
# resp.last_updated_at #=> Time
|
|
2566
|
+
#
|
|
2567
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-2024-02-28/SaveBrowserSessionProfile AWS API Documentation
|
|
2568
|
+
#
|
|
2569
|
+
# @overload save_browser_session_profile(params = {})
|
|
2570
|
+
# @param [Hash] params ({})
|
|
2571
|
+
def save_browser_session_profile(params = {}, options = {})
|
|
2572
|
+
req = build_request(:save_browser_session_profile, params)
|
|
2573
|
+
req.send_request(options)
|
|
2574
|
+
end
|
|
2575
|
+
|
|
2576
|
+
# Creates and initializes a browser session in Amazon Bedrock AgentCore.
|
|
2577
|
+
# The session enables agents to navigate and interact with web content,
|
|
2479
2578
|
# extract information from websites, and perform web-based tasks as part
|
|
2480
2579
|
# of their response generation.
|
|
2481
2580
|
#
|
|
@@ -2490,13 +2589,16 @@ module Aws::BedrockAgentCore
|
|
|
2490
2589
|
#
|
|
2491
2590
|
# * [UpdateBrowserStream][2]
|
|
2492
2591
|
#
|
|
2493
|
-
# * [
|
|
2592
|
+
# * [SaveBrowserSessionProfile][3]
|
|
2593
|
+
#
|
|
2594
|
+
# * [StopBrowserSession][4]
|
|
2494
2595
|
#
|
|
2495
2596
|
#
|
|
2496
2597
|
#
|
|
2497
2598
|
# [1]: https://docs.aws.amazon.com/bedrock-agentcore/latest/APIReference/API_GetBrowserSession.html
|
|
2498
2599
|
# [2]: https://docs.aws.amazon.com/bedrock-agentcore/latest/APIReference/API_UpdateBrowserStream.html
|
|
2499
|
-
# [3]: https://docs.aws.amazon.com/bedrock-agentcore/latest/APIReference/
|
|
2600
|
+
# [3]: https://docs.aws.amazon.com/bedrock-agentcore/latest/APIReference/API_SaveBrowserSessionProfile.html
|
|
2601
|
+
# [4]: https://docs.aws.amazon.com/bedrock-agentcore/latest/APIReference/API_StopBrowserSession.html
|
|
2500
2602
|
#
|
|
2501
2603
|
# @option params [String] :trace_id
|
|
2502
2604
|
# The trace identifier for request tracking.
|
|
@@ -2522,15 +2624,26 @@ module Aws::BedrockAgentCore
|
|
|
2522
2624
|
# @option params [Types::ViewPort] :view_port
|
|
2523
2625
|
# The dimensions of the browser viewport for this session. This
|
|
2524
2626
|
# determines the visible area of the web content and affects how web
|
|
2525
|
-
# pages are rendered. If not specified, Amazon Bedrock uses a
|
|
2526
|
-
# viewport size.
|
|
2627
|
+
# pages are rendered. If not specified, Amazon Bedrock AgentCore uses a
|
|
2628
|
+
# default viewport size.
|
|
2629
|
+
#
|
|
2630
|
+
# @option params [Array<Types::BrowserExtension>] :extensions
|
|
2631
|
+
# A list of browser extensions to load into the browser session.
|
|
2632
|
+
#
|
|
2633
|
+
# @option params [Types::BrowserProfileConfiguration] :profile_configuration
|
|
2634
|
+
# The browser profile configuration to use for this session. A browser
|
|
2635
|
+
# profile contains persistent data such as cookies and local storage
|
|
2636
|
+
# that can be reused across multiple browser sessions. If specified, the
|
|
2637
|
+
# session initializes with the profile's stored data, enabling
|
|
2638
|
+
# continuity for tasks that require authentication or personalized
|
|
2639
|
+
# settings.
|
|
2527
2640
|
#
|
|
2528
2641
|
# @option params [String] :client_token
|
|
2529
2642
|
# A unique, case-sensitive identifier to ensure that the API request
|
|
2530
2643
|
# completes no more than one time. If this token matches a previous
|
|
2531
|
-
# request, Amazon Bedrock ignores the request, but does not
|
|
2532
|
-
# error. This parameter helps prevent the creation of
|
|
2533
|
-
# if there are temporary network issues.
|
|
2644
|
+
# request, Amazon Bedrock AgentCore ignores the request, but does not
|
|
2645
|
+
# return an error. This parameter helps prevent the creation of
|
|
2646
|
+
# duplicate sessions if there are temporary network issues.
|
|
2534
2647
|
#
|
|
2535
2648
|
# **A suitable default value is auto-generated.** You should normally
|
|
2536
2649
|
# not need to pass this option.**
|
|
@@ -2554,6 +2667,20 @@ module Aws::BedrockAgentCore
|
|
|
2554
2667
|
# width: 1, # required
|
|
2555
2668
|
# height: 1, # required
|
|
2556
2669
|
# },
|
|
2670
|
+
# extensions: [
|
|
2671
|
+
# {
|
|
2672
|
+
# location: { # required
|
|
2673
|
+
# s3: {
|
|
2674
|
+
# bucket: "S3LocationBucketString", # required
|
|
2675
|
+
# prefix: "S3LocationPrefixString", # required
|
|
2676
|
+
# version_id: "S3LocationVersionIdString",
|
|
2677
|
+
# },
|
|
2678
|
+
# },
|
|
2679
|
+
# },
|
|
2680
|
+
# ],
|
|
2681
|
+
# profile_configuration: {
|
|
2682
|
+
# profile_identifier: "BrowserProfileId", # required
|
|
2683
|
+
# },
|
|
2557
2684
|
# client_token: "ClientToken",
|
|
2558
2685
|
# })
|
|
2559
2686
|
#
|
|
@@ -2575,10 +2702,10 @@ module Aws::BedrockAgentCore
|
|
|
2575
2702
|
req.send_request(options)
|
|
2576
2703
|
end
|
|
2577
2704
|
|
|
2578
|
-
# Creates and initializes a code interpreter session in Amazon Bedrock
|
|
2579
|
-
# The session enables agents to execute code as part of their
|
|
2580
|
-
# generation, supporting programming languages such as Python
|
|
2581
|
-
# analysis, visualization, and computation tasks.
|
|
2705
|
+
# Creates and initializes a code interpreter session in Amazon Bedrock
|
|
2706
|
+
# AgentCore. The session enables agents to execute code as part of their
|
|
2707
|
+
# response generation, supporting programming languages such as Python
|
|
2708
|
+
# for data analysis, visualization, and computation tasks.
|
|
2582
2709
|
#
|
|
2583
2710
|
# To create a session, you must specify a code interpreter identifier
|
|
2584
2711
|
# and a name. The session remains active until it times out or you
|
|
@@ -2622,9 +2749,9 @@ module Aws::BedrockAgentCore
|
|
|
2622
2749
|
# @option params [String] :client_token
|
|
2623
2750
|
# A unique, case-sensitive identifier to ensure that the API request
|
|
2624
2751
|
# completes no more than one time. If this token matches a previous
|
|
2625
|
-
# request, Amazon Bedrock ignores the request, but does not
|
|
2626
|
-
# error. This parameter helps prevent the creation of
|
|
2627
|
-
# if there are temporary network issues.
|
|
2752
|
+
# request, Amazon Bedrock AgentCore ignores the request, but does not
|
|
2753
|
+
# return an error. This parameter helps prevent the creation of
|
|
2754
|
+
# duplicate sessions if there are temporary network issues.
|
|
2628
2755
|
#
|
|
2629
2756
|
# **A suitable default value is auto-generated.** You should normally
|
|
2630
2757
|
# not need to pass this option.**
|
|
@@ -2710,9 +2837,9 @@ module Aws::BedrockAgentCore
|
|
|
2710
2837
|
req.send_request(options)
|
|
2711
2838
|
end
|
|
2712
2839
|
|
|
2713
|
-
# Terminates an active browser session in Amazon Bedrock. This
|
|
2714
|
-
# stops the session, releases associated resources, and makes
|
|
2715
|
-
# session unavailable for further use.
|
|
2840
|
+
# Terminates an active browser session in Amazon Bedrock AgentCore. This
|
|
2841
|
+
# operation stops the session, releases associated resources, and makes
|
|
2842
|
+
# the session unavailable for further use.
|
|
2716
2843
|
#
|
|
2717
2844
|
# To stop a browser session, you must specify both the browser
|
|
2718
2845
|
# identifier and the session ID. Once stopped, a session cannot be
|
|
@@ -2744,8 +2871,8 @@ module Aws::BedrockAgentCore
|
|
|
2744
2871
|
# @option params [String] :client_token
|
|
2745
2872
|
# A unique, case-sensitive identifier to ensure that the API request
|
|
2746
2873
|
# completes no more than one time. If this token matches a previous
|
|
2747
|
-
# request, Amazon Bedrock ignores the request, but does not
|
|
2748
|
-
# error.
|
|
2874
|
+
# request, Amazon Bedrock AgentCore ignores the request, but does not
|
|
2875
|
+
# return an error.
|
|
2749
2876
|
#
|
|
2750
2877
|
# **A suitable default value is auto-generated.** You should normally
|
|
2751
2878
|
# not need to pass this option.**
|
|
@@ -2781,9 +2908,9 @@ module Aws::BedrockAgentCore
|
|
|
2781
2908
|
req.send_request(options)
|
|
2782
2909
|
end
|
|
2783
2910
|
|
|
2784
|
-
# Terminates an active code interpreter session in Amazon Bedrock
|
|
2785
|
-
# operation stops the session, releases associated
|
|
2786
|
-
# the session unavailable for further use.
|
|
2911
|
+
# Terminates an active code interpreter session in Amazon Bedrock
|
|
2912
|
+
# AgentCore. This operation stops the session, releases associated
|
|
2913
|
+
# resources, and makes the session unavailable for further use.
|
|
2787
2914
|
#
|
|
2788
2915
|
# To stop a code interpreter session, you must specify both the code
|
|
2789
2916
|
# interpreter identifier and the session ID. Once stopped, a session
|
|
@@ -2817,8 +2944,8 @@ module Aws::BedrockAgentCore
|
|
|
2817
2944
|
# @option params [String] :client_token
|
|
2818
2945
|
# A unique, case-sensitive identifier to ensure that the API request
|
|
2819
2946
|
# completes no more than one time. If this token matches a previous
|
|
2820
|
-
# request, Amazon Bedrock ignores the request, but does not
|
|
2821
|
-
# error.
|
|
2947
|
+
# request, Amazon Bedrock AgentCore ignores the request, but does not
|
|
2948
|
+
# return an error.
|
|
2822
2949
|
#
|
|
2823
2950
|
# **A suitable default value is auto-generated.** You should normally
|
|
2824
2951
|
# not need to pass this option.**
|
|
@@ -2980,7 +3107,7 @@ module Aws::BedrockAgentCore
|
|
|
2980
3107
|
tracer: tracer
|
|
2981
3108
|
)
|
|
2982
3109
|
context[:gem_name] = 'aws-sdk-bedrockagentcore'
|
|
2983
|
-
context[:gem_version] = '1.
|
|
3110
|
+
context[:gem_version] = '1.18.0'
|
|
2984
3111
|
Seahorse::Client::Request.new(handlers, context)
|
|
2985
3112
|
end
|
|
2986
3113
|
|