aws-sdk-bedrockagentruntime 1.42.0 → 1.47.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 +25 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentruntime/client.rb +780 -30
- data/lib/aws-sdk-bedrockagentruntime/client_api.rb +475 -0
- data/lib/aws-sdk-bedrockagentruntime/endpoint_provider.rb +13 -17
- data/lib/aws-sdk-bedrockagentruntime/types.rb +946 -6
- data/lib/aws-sdk-bedrockagentruntime.rb +2 -2
- data/sig/client.rbs +193 -0
- data/sig/types.rbs +283 -3
- metadata +2 -2
@@ -634,6 +634,47 @@ module Aws::BedrockAgentRuntime
|
|
634
634
|
include Aws::Structure
|
635
635
|
end
|
636
636
|
|
637
|
+
# A block of content that you pass to, or receive from, a Amazon Bedrock
|
638
|
+
# session in an invocation step. You pass the content to a session in
|
639
|
+
# the `payLoad` of the [PutInvocationStep][1] API operation. You
|
640
|
+
# retrieve the content with the [GetInvocationStep][2] API operation.
|
641
|
+
#
|
642
|
+
# For more information about sessions, see [Store and retrieve
|
643
|
+
# conversation history and context with Amazon Bedrock sessions][3].
|
644
|
+
#
|
645
|
+
#
|
646
|
+
#
|
647
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_PutInvocationStep.html
|
648
|
+
# [2]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_GetInvocationStep.html
|
649
|
+
# [3]: https://docs.aws.amazon.com/bedrock/latest/userguide/sessions.html
|
650
|
+
#
|
651
|
+
# @note BedrockSessionContentBlock is a union - when making an API calls you must set exactly one of the members.
|
652
|
+
#
|
653
|
+
# @note BedrockSessionContentBlock is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of BedrockSessionContentBlock corresponding to the set member.
|
654
|
+
#
|
655
|
+
# @!attribute [rw] image
|
656
|
+
# The image in the invocation step.
|
657
|
+
# @return [Types::ImageBlock]
|
658
|
+
#
|
659
|
+
# @!attribute [rw] text
|
660
|
+
# The text in the invocation step.
|
661
|
+
# @return [String]
|
662
|
+
#
|
663
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/BedrockSessionContentBlock AWS API Documentation
|
664
|
+
#
|
665
|
+
class BedrockSessionContentBlock < Struct.new(
|
666
|
+
:image,
|
667
|
+
:text,
|
668
|
+
:unknown)
|
669
|
+
SENSITIVE = []
|
670
|
+
include Aws::Structure
|
671
|
+
include Aws::Structure::Union
|
672
|
+
|
673
|
+
class Image < BedrockSessionContentBlock; end
|
674
|
+
class Text < BedrockSessionContentBlock; end
|
675
|
+
class Unknown < BedrockSessionContentBlock; end
|
676
|
+
end
|
677
|
+
|
637
678
|
# This property contains the document to chat with, along with its
|
638
679
|
# attributes.
|
639
680
|
#
|
@@ -883,6 +924,113 @@ module Aws::BedrockAgentRuntime
|
|
883
924
|
include Aws::Structure
|
884
925
|
end
|
885
926
|
|
927
|
+
# @!attribute [rw] description
|
928
|
+
# A description for the interactions in the invocation. For example,
|
929
|
+
# "User asking about weather in Seattle".
|
930
|
+
# @return [String]
|
931
|
+
#
|
932
|
+
# @!attribute [rw] invocation_id
|
933
|
+
# A unique identifier for the invocation in UUID format.
|
934
|
+
# @return [String]
|
935
|
+
#
|
936
|
+
# @!attribute [rw] session_identifier
|
937
|
+
# The unique identifier for the associated session for the invocation.
|
938
|
+
# You can specify either the session's `sessionId` or its Amazon
|
939
|
+
# Resource Name (ARN).
|
940
|
+
# @return [String]
|
941
|
+
#
|
942
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/CreateInvocationRequest AWS API Documentation
|
943
|
+
#
|
944
|
+
class CreateInvocationRequest < Struct.new(
|
945
|
+
:description,
|
946
|
+
:invocation_id,
|
947
|
+
:session_identifier)
|
948
|
+
SENSITIVE = []
|
949
|
+
include Aws::Structure
|
950
|
+
end
|
951
|
+
|
952
|
+
# @!attribute [rw] created_at
|
953
|
+
# The timestamp for when the invocation was created.
|
954
|
+
# @return [Time]
|
955
|
+
#
|
956
|
+
# @!attribute [rw] invocation_id
|
957
|
+
# The unique identifier for the invocation.
|
958
|
+
# @return [String]
|
959
|
+
#
|
960
|
+
# @!attribute [rw] session_id
|
961
|
+
# The unique identifier for the session associated with the
|
962
|
+
# invocation.
|
963
|
+
# @return [String]
|
964
|
+
#
|
965
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/CreateInvocationResponse AWS API Documentation
|
966
|
+
#
|
967
|
+
class CreateInvocationResponse < Struct.new(
|
968
|
+
:created_at,
|
969
|
+
:invocation_id,
|
970
|
+
:session_id)
|
971
|
+
SENSITIVE = []
|
972
|
+
include Aws::Structure
|
973
|
+
end
|
974
|
+
|
975
|
+
# @!attribute [rw] encryption_key_arn
|
976
|
+
# The Amazon Resource Name (ARN) of the KMS key to use to encrypt the
|
977
|
+
# session data. The user or role creating the session must have
|
978
|
+
# permission to use the key. For more information, see [Amazon Bedrock
|
979
|
+
# session encryption][1].
|
980
|
+
#
|
981
|
+
#
|
982
|
+
#
|
983
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/session-encryption.html
|
984
|
+
# @return [String]
|
985
|
+
#
|
986
|
+
# @!attribute [rw] session_metadata
|
987
|
+
# A map of key-value pairs containing attributes to be persisted
|
988
|
+
# across the session. For example, the user's ID, their language
|
989
|
+
# preference, and the type of device they are using.
|
990
|
+
# @return [Hash<String,String>]
|
991
|
+
#
|
992
|
+
# @!attribute [rw] tags
|
993
|
+
# Specify the key-value pairs for the tags that you want to attach to
|
994
|
+
# the session.
|
995
|
+
# @return [Hash<String,String>]
|
996
|
+
#
|
997
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/CreateSessionRequest AWS API Documentation
|
998
|
+
#
|
999
|
+
class CreateSessionRequest < Struct.new(
|
1000
|
+
:encryption_key_arn,
|
1001
|
+
:session_metadata,
|
1002
|
+
:tags)
|
1003
|
+
SENSITIVE = []
|
1004
|
+
include Aws::Structure
|
1005
|
+
end
|
1006
|
+
|
1007
|
+
# @!attribute [rw] created_at
|
1008
|
+
# The timestamp for when the session was created.
|
1009
|
+
# @return [Time]
|
1010
|
+
#
|
1011
|
+
# @!attribute [rw] session_arn
|
1012
|
+
# The Amazon Resource Name (ARN) of the created session.
|
1013
|
+
# @return [String]
|
1014
|
+
#
|
1015
|
+
# @!attribute [rw] session_id
|
1016
|
+
# The unique identifier for the session.
|
1017
|
+
# @return [String]
|
1018
|
+
#
|
1019
|
+
# @!attribute [rw] session_status
|
1020
|
+
# The current status of the session.
|
1021
|
+
# @return [String]
|
1022
|
+
#
|
1023
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/CreateSessionResponse AWS API Documentation
|
1024
|
+
#
|
1025
|
+
class CreateSessionResponse < Struct.new(
|
1026
|
+
:created_at,
|
1027
|
+
:session_arn,
|
1028
|
+
:session_id,
|
1029
|
+
:session_status)
|
1030
|
+
SENSITIVE = []
|
1031
|
+
include Aws::Structure
|
1032
|
+
end
|
1033
|
+
|
886
1034
|
# The trace behavior for the custom orchestration.
|
887
1035
|
#
|
888
1036
|
# @!attribute [rw] event
|
@@ -949,6 +1097,23 @@ module Aws::BedrockAgentRuntime
|
|
949
1097
|
#
|
950
1098
|
class DeleteAgentMemoryResponse < Aws::EmptyStructure; end
|
951
1099
|
|
1100
|
+
# @!attribute [rw] session_identifier
|
1101
|
+
# The unique identifier for the session to be deleted. You can specify
|
1102
|
+
# either the session's `sessionId` or its Amazon Resource Name (ARN).
|
1103
|
+
# @return [String]
|
1104
|
+
#
|
1105
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/DeleteSessionRequest AWS API Documentation
|
1106
|
+
#
|
1107
|
+
class DeleteSessionRequest < Struct.new(
|
1108
|
+
:session_identifier)
|
1109
|
+
SENSITIVE = []
|
1110
|
+
include Aws::Structure
|
1111
|
+
end
|
1112
|
+
|
1113
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/DeleteSessionResponse AWS API Documentation
|
1114
|
+
#
|
1115
|
+
class DeleteSessionResponse < Aws::EmptyStructure; end
|
1116
|
+
|
952
1117
|
# There was an issue with a dependency. Check the resource
|
953
1118
|
# configurations and retry the request.
|
954
1119
|
#
|
@@ -970,6 +1135,41 @@ module Aws::BedrockAgentRuntime
|
|
970
1135
|
include Aws::Structure
|
971
1136
|
end
|
972
1137
|
|
1138
|
+
# @!attribute [rw] session_identifier
|
1139
|
+
# The unique identifier for the session to end. You can specify either
|
1140
|
+
# the session's `sessionId` or its Amazon Resource Name (ARN).
|
1141
|
+
# @return [String]
|
1142
|
+
#
|
1143
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/EndSessionRequest AWS API Documentation
|
1144
|
+
#
|
1145
|
+
class EndSessionRequest < Struct.new(
|
1146
|
+
:session_identifier)
|
1147
|
+
SENSITIVE = []
|
1148
|
+
include Aws::Structure
|
1149
|
+
end
|
1150
|
+
|
1151
|
+
# @!attribute [rw] session_arn
|
1152
|
+
# The Amazon Resource Name (ARN) of the session you ended.
|
1153
|
+
# @return [String]
|
1154
|
+
#
|
1155
|
+
# @!attribute [rw] session_id
|
1156
|
+
# The unique identifier of the session you ended.
|
1157
|
+
# @return [String]
|
1158
|
+
#
|
1159
|
+
# @!attribute [rw] session_status
|
1160
|
+
# The current status of the session you ended.
|
1161
|
+
# @return [String]
|
1162
|
+
#
|
1163
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/EndSessionResponse AWS API Documentation
|
1164
|
+
#
|
1165
|
+
class EndSessionResponse < Struct.new(
|
1166
|
+
:session_arn,
|
1167
|
+
:session_id,
|
1168
|
+
:session_status)
|
1169
|
+
SENSITIVE = []
|
1170
|
+
include Aws::Structure
|
1171
|
+
end
|
1172
|
+
|
973
1173
|
# The unique external source of the content contained in the wrapper
|
974
1174
|
# object.
|
975
1175
|
#
|
@@ -2022,6 +2222,105 @@ module Aws::BedrockAgentRuntime
|
|
2022
2222
|
include Aws::Structure
|
2023
2223
|
end
|
2024
2224
|
|
2225
|
+
# @!attribute [rw] invocation_identifier
|
2226
|
+
# The unique identifier for the invocation in UUID format.
|
2227
|
+
# @return [String]
|
2228
|
+
#
|
2229
|
+
# @!attribute [rw] invocation_step_id
|
2230
|
+
# The unique identifier (in UUID format) for the specific invocation
|
2231
|
+
# step to retrieve.
|
2232
|
+
# @return [String]
|
2233
|
+
#
|
2234
|
+
# @!attribute [rw] session_identifier
|
2235
|
+
# The unique identifier for the invocation step's associated session.
|
2236
|
+
# You can specify either the session's `sessionId` or its Amazon
|
2237
|
+
# Resource Name (ARN).
|
2238
|
+
# @return [String]
|
2239
|
+
#
|
2240
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/GetInvocationStepRequest AWS API Documentation
|
2241
|
+
#
|
2242
|
+
class GetInvocationStepRequest < Struct.new(
|
2243
|
+
:invocation_identifier,
|
2244
|
+
:invocation_step_id,
|
2245
|
+
:session_identifier)
|
2246
|
+
SENSITIVE = []
|
2247
|
+
include Aws::Structure
|
2248
|
+
end
|
2249
|
+
|
2250
|
+
# @!attribute [rw] invocation_step
|
2251
|
+
# The complete details of the requested invocation step.
|
2252
|
+
# @return [Types::InvocationStep]
|
2253
|
+
#
|
2254
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/GetInvocationStepResponse AWS API Documentation
|
2255
|
+
#
|
2256
|
+
class GetInvocationStepResponse < Struct.new(
|
2257
|
+
:invocation_step)
|
2258
|
+
SENSITIVE = []
|
2259
|
+
include Aws::Structure
|
2260
|
+
end
|
2261
|
+
|
2262
|
+
# @!attribute [rw] session_identifier
|
2263
|
+
# A unique identifier for the session to retrieve. You can specify
|
2264
|
+
# either the session's `sessionId` or its Amazon Resource Name (ARN).
|
2265
|
+
# @return [String]
|
2266
|
+
#
|
2267
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/GetSessionRequest AWS API Documentation
|
2268
|
+
#
|
2269
|
+
class GetSessionRequest < Struct.new(
|
2270
|
+
:session_identifier)
|
2271
|
+
SENSITIVE = []
|
2272
|
+
include Aws::Structure
|
2273
|
+
end
|
2274
|
+
|
2275
|
+
# @!attribute [rw] created_at
|
2276
|
+
# The timestamp for when the session was created.
|
2277
|
+
# @return [Time]
|
2278
|
+
#
|
2279
|
+
# @!attribute [rw] encryption_key_arn
|
2280
|
+
# The Amazon Resource Name (ARN) of the Key Management Service key
|
2281
|
+
# used to encrypt the session data. For more information, see [Amazon
|
2282
|
+
# Bedrock session encryption][1].
|
2283
|
+
#
|
2284
|
+
#
|
2285
|
+
#
|
2286
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/session-encryption.html
|
2287
|
+
# @return [String]
|
2288
|
+
#
|
2289
|
+
# @!attribute [rw] last_updated_at
|
2290
|
+
# The timestamp for when the session was last modified.
|
2291
|
+
# @return [Time]
|
2292
|
+
#
|
2293
|
+
# @!attribute [rw] session_arn
|
2294
|
+
# The Amazon Resource Name (ARN) of the session.
|
2295
|
+
# @return [String]
|
2296
|
+
#
|
2297
|
+
# @!attribute [rw] session_id
|
2298
|
+
# The unique identifier for the session in UUID format.
|
2299
|
+
# @return [String]
|
2300
|
+
#
|
2301
|
+
# @!attribute [rw] session_metadata
|
2302
|
+
# A map of key-value pairs containing attributes persisted across the
|
2303
|
+
# session.
|
2304
|
+
# @return [Hash<String,String>]
|
2305
|
+
#
|
2306
|
+
# @!attribute [rw] session_status
|
2307
|
+
# The current status of the session.
|
2308
|
+
# @return [String]
|
2309
|
+
#
|
2310
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/GetSessionResponse AWS API Documentation
|
2311
|
+
#
|
2312
|
+
class GetSessionResponse < Struct.new(
|
2313
|
+
:created_at,
|
2314
|
+
:encryption_key_arn,
|
2315
|
+
:last_updated_at,
|
2316
|
+
:session_arn,
|
2317
|
+
:session_id,
|
2318
|
+
:session_metadata,
|
2319
|
+
:session_status)
|
2320
|
+
SENSITIVE = []
|
2321
|
+
include Aws::Structure
|
2322
|
+
end
|
2323
|
+
|
2025
2324
|
# Assessment details of the content analyzed by Guardrails.
|
2026
2325
|
#
|
2027
2326
|
# @!attribute [rw] content_policy
|
@@ -2349,6 +2648,55 @@ module Aws::BedrockAgentRuntime
|
|
2349
2648
|
include Aws::Structure
|
2350
2649
|
end
|
2351
2650
|
|
2651
|
+
# Image content for an invocation step.
|
2652
|
+
#
|
2653
|
+
# @!attribute [rw] format
|
2654
|
+
# The format of the image.
|
2655
|
+
# @return [String]
|
2656
|
+
#
|
2657
|
+
# @!attribute [rw] source
|
2658
|
+
# The source for the image.
|
2659
|
+
# @return [Types::ImageSource]
|
2660
|
+
#
|
2661
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/ImageBlock AWS API Documentation
|
2662
|
+
#
|
2663
|
+
class ImageBlock < Struct.new(
|
2664
|
+
:format,
|
2665
|
+
:source)
|
2666
|
+
SENSITIVE = []
|
2667
|
+
include Aws::Structure
|
2668
|
+
end
|
2669
|
+
|
2670
|
+
# The source for an image.
|
2671
|
+
#
|
2672
|
+
# @note ImageSource is a union - when making an API calls you must set exactly one of the members.
|
2673
|
+
#
|
2674
|
+
# @note ImageSource is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ImageSource corresponding to the set member.
|
2675
|
+
#
|
2676
|
+
# @!attribute [rw] bytes
|
2677
|
+
# The raw image bytes for the image. If you use an Amazon Web Services
|
2678
|
+
# SDK, you don't need to encode the image bytes in base64.
|
2679
|
+
# @return [String]
|
2680
|
+
#
|
2681
|
+
# @!attribute [rw] s3_location
|
2682
|
+
# The path to the Amazon S3 bucket where the image is stored.
|
2683
|
+
# @return [Types::S3Location]
|
2684
|
+
#
|
2685
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/ImageSource AWS API Documentation
|
2686
|
+
#
|
2687
|
+
class ImageSource < Struct.new(
|
2688
|
+
:bytes,
|
2689
|
+
:s3_location,
|
2690
|
+
:unknown)
|
2691
|
+
SENSITIVE = []
|
2692
|
+
include Aws::Structure
|
2693
|
+
include Aws::Structure::Union
|
2694
|
+
|
2695
|
+
class Bytes < ImageSource; end
|
2696
|
+
class S3Location < ImageSource; end
|
2697
|
+
class Unknown < ImageSource; end
|
2698
|
+
end
|
2699
|
+
|
2352
2700
|
# Settings for implicit filtering, where a model generates a metadata
|
2353
2701
|
# filter based on the prompt.
|
2354
2702
|
#
|
@@ -2814,6 +3162,138 @@ module Aws::BedrockAgentRuntime
|
|
2814
3162
|
class Unknown < InvocationResultMember; end
|
2815
3163
|
end
|
2816
3164
|
|
3165
|
+
# Stores fine-grained state checkpoints, including text and images, for
|
3166
|
+
# each interaction in an invocation in a session. For more information
|
3167
|
+
# about sessions, see [Store and retrieve conversation history and
|
3168
|
+
# context with Amazon Bedrock sessions][1].
|
3169
|
+
#
|
3170
|
+
#
|
3171
|
+
#
|
3172
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/sessions.html
|
3173
|
+
#
|
3174
|
+
# @!attribute [rw] invocation_id
|
3175
|
+
# The unique identifier (in UUID format) for the invocation that
|
3176
|
+
# includes the invocation step.
|
3177
|
+
# @return [String]
|
3178
|
+
#
|
3179
|
+
# @!attribute [rw] invocation_step_id
|
3180
|
+
# The unique identifier (in UUID format) for the invocation step.
|
3181
|
+
# @return [String]
|
3182
|
+
#
|
3183
|
+
# @!attribute [rw] invocation_step_time
|
3184
|
+
# The timestamp for when the invocation step was created.
|
3185
|
+
# @return [Time]
|
3186
|
+
#
|
3187
|
+
# @!attribute [rw] payload
|
3188
|
+
# Payload content, such as text and images, for the invocation step.
|
3189
|
+
# @return [Types::InvocationStepPayload]
|
3190
|
+
#
|
3191
|
+
# @!attribute [rw] session_id
|
3192
|
+
# The unique identifier of the session containing the invocation step.
|
3193
|
+
# @return [String]
|
3194
|
+
#
|
3195
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/InvocationStep AWS API Documentation
|
3196
|
+
#
|
3197
|
+
class InvocationStep < Struct.new(
|
3198
|
+
:invocation_id,
|
3199
|
+
:invocation_step_id,
|
3200
|
+
:invocation_step_time,
|
3201
|
+
:payload,
|
3202
|
+
:session_id)
|
3203
|
+
SENSITIVE = []
|
3204
|
+
include Aws::Structure
|
3205
|
+
end
|
3206
|
+
|
3207
|
+
# Payload content, such as text and images, for the invocation step.
|
3208
|
+
#
|
3209
|
+
# @note InvocationStepPayload is a union - when making an API calls you must set exactly one of the members.
|
3210
|
+
#
|
3211
|
+
# @note InvocationStepPayload is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of InvocationStepPayload corresponding to the set member.
|
3212
|
+
#
|
3213
|
+
# @!attribute [rw] content_blocks
|
3214
|
+
# The content for the invocation step.
|
3215
|
+
# @return [Array<Types::BedrockSessionContentBlock>]
|
3216
|
+
#
|
3217
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/InvocationStepPayload AWS API Documentation
|
3218
|
+
#
|
3219
|
+
class InvocationStepPayload < Struct.new(
|
3220
|
+
:content_blocks,
|
3221
|
+
:unknown)
|
3222
|
+
SENSITIVE = [:content_blocks]
|
3223
|
+
include Aws::Structure
|
3224
|
+
include Aws::Structure::Union
|
3225
|
+
|
3226
|
+
class ContentBlocks < InvocationStepPayload; end
|
3227
|
+
class Unknown < InvocationStepPayload; end
|
3228
|
+
end
|
3229
|
+
|
3230
|
+
# Contains details about an invocation step within an invocation in a
|
3231
|
+
# session. For more information about sessions, see [Store and retrieve
|
3232
|
+
# conversation history and context with Amazon Bedrock sessions][1].
|
3233
|
+
#
|
3234
|
+
#
|
3235
|
+
#
|
3236
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/sessions.html
|
3237
|
+
#
|
3238
|
+
# @!attribute [rw] invocation_id
|
3239
|
+
# A unique identifier for the invocation in UUID format.
|
3240
|
+
# @return [String]
|
3241
|
+
#
|
3242
|
+
# @!attribute [rw] invocation_step_id
|
3243
|
+
# The unique identifier (in UUID format) for the invocation step.
|
3244
|
+
# @return [String]
|
3245
|
+
#
|
3246
|
+
# @!attribute [rw] invocation_step_time
|
3247
|
+
# The timestamp for when the invocation step was created.
|
3248
|
+
# @return [Time]
|
3249
|
+
#
|
3250
|
+
# @!attribute [rw] session_id
|
3251
|
+
# The unique identifier for the session associated with the invocation
|
3252
|
+
# step.
|
3253
|
+
# @return [String]
|
3254
|
+
#
|
3255
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/InvocationStepSummary AWS API Documentation
|
3256
|
+
#
|
3257
|
+
class InvocationStepSummary < Struct.new(
|
3258
|
+
:invocation_id,
|
3259
|
+
:invocation_step_id,
|
3260
|
+
:invocation_step_time,
|
3261
|
+
:session_id)
|
3262
|
+
SENSITIVE = []
|
3263
|
+
include Aws::Structure
|
3264
|
+
end
|
3265
|
+
|
3266
|
+
# Contains details about an invocation in a session. For more
|
3267
|
+
# information about sessions, see [Store and retrieve conversation
|
3268
|
+
# history and context with Amazon Bedrock sessions][1].
|
3269
|
+
#
|
3270
|
+
#
|
3271
|
+
#
|
3272
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/sessions.html
|
3273
|
+
#
|
3274
|
+
# @!attribute [rw] created_at
|
3275
|
+
# The timestamp for when the invocation was created.
|
3276
|
+
# @return [Time]
|
3277
|
+
#
|
3278
|
+
# @!attribute [rw] invocation_id
|
3279
|
+
# A unique identifier for the invocation in UUID format.
|
3280
|
+
# @return [String]
|
3281
|
+
#
|
3282
|
+
# @!attribute [rw] session_id
|
3283
|
+
# The unique identifier for the session associated with the
|
3284
|
+
# invocation.
|
3285
|
+
# @return [String]
|
3286
|
+
#
|
3287
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/InvocationSummary AWS API Documentation
|
3288
|
+
#
|
3289
|
+
class InvocationSummary < Struct.new(
|
3290
|
+
:created_at,
|
3291
|
+
:invocation_id,
|
3292
|
+
:session_id)
|
3293
|
+
SENSITIVE = []
|
3294
|
+
include Aws::Structure
|
3295
|
+
end
|
3296
|
+
|
2817
3297
|
# @!attribute [rw] agent_alias_id
|
2818
3298
|
# The alias of the agent to use.
|
2819
3299
|
# @return [String]
|
@@ -3470,6 +3950,182 @@ module Aws::BedrockAgentRuntime
|
|
3470
3950
|
include Aws::Structure
|
3471
3951
|
end
|
3472
3952
|
|
3953
|
+
# @!attribute [rw] invocation_identifier
|
3954
|
+
# The unique identifier (in UUID format) for the invocation to list
|
3955
|
+
# invocation steps for.
|
3956
|
+
# @return [String]
|
3957
|
+
#
|
3958
|
+
# @!attribute [rw] max_results
|
3959
|
+
# The maximum number of results to return in the response. If the
|
3960
|
+
# total number of results is greater than this value, use the token
|
3961
|
+
# returned in the response in the `nextToken` field when making
|
3962
|
+
# another request to return the next batch of results.
|
3963
|
+
# @return [Integer]
|
3964
|
+
#
|
3965
|
+
# @!attribute [rw] next_token
|
3966
|
+
# If the total number of results is greater than the `maxResults`
|
3967
|
+
# value provided in the request, enter the token returned in the
|
3968
|
+
# `nextToken` field in the response in this field to return the next
|
3969
|
+
# batch of results.
|
3970
|
+
# @return [String]
|
3971
|
+
#
|
3972
|
+
# @!attribute [rw] session_identifier
|
3973
|
+
# The unique identifier for the session associated with the invocation
|
3974
|
+
# steps. You can specify either the session's `sessionId` or its
|
3975
|
+
# Amazon Resource Name (ARN).
|
3976
|
+
# @return [String]
|
3977
|
+
#
|
3978
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/ListInvocationStepsRequest AWS API Documentation
|
3979
|
+
#
|
3980
|
+
class ListInvocationStepsRequest < Struct.new(
|
3981
|
+
:invocation_identifier,
|
3982
|
+
:max_results,
|
3983
|
+
:next_token,
|
3984
|
+
:session_identifier)
|
3985
|
+
SENSITIVE = []
|
3986
|
+
include Aws::Structure
|
3987
|
+
end
|
3988
|
+
|
3989
|
+
# @!attribute [rw] invocation_step_summaries
|
3990
|
+
# A list of summaries for each invocation step associated with a
|
3991
|
+
# session and if you specified it, an invocation within the session.
|
3992
|
+
# @return [Array<Types::InvocationStepSummary>]
|
3993
|
+
#
|
3994
|
+
# @!attribute [rw] next_token
|
3995
|
+
# If the total number of results is greater than the `maxResults`
|
3996
|
+
# value provided in the request, use this token when making another
|
3997
|
+
# request in the `nextToken` field to return the next batch of
|
3998
|
+
# results.
|
3999
|
+
# @return [String]
|
4000
|
+
#
|
4001
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/ListInvocationStepsResponse AWS API Documentation
|
4002
|
+
#
|
4003
|
+
class ListInvocationStepsResponse < Struct.new(
|
4004
|
+
:invocation_step_summaries,
|
4005
|
+
:next_token)
|
4006
|
+
SENSITIVE = []
|
4007
|
+
include Aws::Structure
|
4008
|
+
end
|
4009
|
+
|
4010
|
+
# @!attribute [rw] max_results
|
4011
|
+
# The maximum number of results to return in the response. If the
|
4012
|
+
# total number of results is greater than this value, use the token
|
4013
|
+
# returned in the response in the `nextToken` field when making
|
4014
|
+
# another request to return the next batch of results.
|
4015
|
+
# @return [Integer]
|
4016
|
+
#
|
4017
|
+
# @!attribute [rw] next_token
|
4018
|
+
# If the total number of results is greater than the `maxResults`
|
4019
|
+
# value provided in the request, enter the token returned in the
|
4020
|
+
# `nextToken` field in the response in this field to return the next
|
4021
|
+
# batch of results.
|
4022
|
+
# @return [String]
|
4023
|
+
#
|
4024
|
+
# @!attribute [rw] session_identifier
|
4025
|
+
# The unique identifier for the session to list invocations for. You
|
4026
|
+
# can specify either the session's `sessionId` or its Amazon Resource
|
4027
|
+
# Name (ARN).
|
4028
|
+
# @return [String]
|
4029
|
+
#
|
4030
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/ListInvocationsRequest AWS API Documentation
|
4031
|
+
#
|
4032
|
+
class ListInvocationsRequest < Struct.new(
|
4033
|
+
:max_results,
|
4034
|
+
:next_token,
|
4035
|
+
:session_identifier)
|
4036
|
+
SENSITIVE = []
|
4037
|
+
include Aws::Structure
|
4038
|
+
end
|
4039
|
+
|
4040
|
+
# @!attribute [rw] invocation_summaries
|
4041
|
+
# A list of invocation summaries associated with the session.
|
4042
|
+
# @return [Array<Types::InvocationSummary>]
|
4043
|
+
#
|
4044
|
+
# @!attribute [rw] next_token
|
4045
|
+
# If the total number of results is greater than the `maxResults`
|
4046
|
+
# value provided in the request, use this token when making another
|
4047
|
+
# request in the `nextToken` field to return the next batch of
|
4048
|
+
# results.
|
4049
|
+
# @return [String]
|
4050
|
+
#
|
4051
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/ListInvocationsResponse AWS API Documentation
|
4052
|
+
#
|
4053
|
+
class ListInvocationsResponse < Struct.new(
|
4054
|
+
:invocation_summaries,
|
4055
|
+
:next_token)
|
4056
|
+
SENSITIVE = []
|
4057
|
+
include Aws::Structure
|
4058
|
+
end
|
4059
|
+
|
4060
|
+
# @!attribute [rw] max_results
|
4061
|
+
# The maximum number of results to return in the response. If the
|
4062
|
+
# total number of results is greater than this value, use the token
|
4063
|
+
# returned in the response in the `nextToken` field when making
|
4064
|
+
# another request to return the next batch of results.
|
4065
|
+
# @return [Integer]
|
4066
|
+
#
|
4067
|
+
# @!attribute [rw] next_token
|
4068
|
+
# If the total number of results is greater than the `maxResults`
|
4069
|
+
# value provided in the request, enter the token returned in the
|
4070
|
+
# `nextToken` field in the response in this field to return the next
|
4071
|
+
# batch of results.
|
4072
|
+
# @return [String]
|
4073
|
+
#
|
4074
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/ListSessionsRequest AWS API Documentation
|
4075
|
+
#
|
4076
|
+
class ListSessionsRequest < Struct.new(
|
4077
|
+
:max_results,
|
4078
|
+
:next_token)
|
4079
|
+
SENSITIVE = []
|
4080
|
+
include Aws::Structure
|
4081
|
+
end
|
4082
|
+
|
4083
|
+
# @!attribute [rw] next_token
|
4084
|
+
# If the total number of results is greater than the `maxResults`
|
4085
|
+
# value provided in the request, use this token when making another
|
4086
|
+
# request in the `nextToken` field to return the next batch of
|
4087
|
+
# results.
|
4088
|
+
# @return [String]
|
4089
|
+
#
|
4090
|
+
# @!attribute [rw] session_summaries
|
4091
|
+
# A list of summaries for each session in your Amazon Web Services
|
4092
|
+
# account.
|
4093
|
+
# @return [Array<Types::SessionSummary>]
|
4094
|
+
#
|
4095
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/ListSessionsResponse AWS API Documentation
|
4096
|
+
#
|
4097
|
+
class ListSessionsResponse < Struct.new(
|
4098
|
+
:next_token,
|
4099
|
+
:session_summaries)
|
4100
|
+
SENSITIVE = []
|
4101
|
+
include Aws::Structure
|
4102
|
+
end
|
4103
|
+
|
4104
|
+
# @!attribute [rw] resource_arn
|
4105
|
+
# The Amazon Resource Name (ARN) of the resource for which to list
|
4106
|
+
# tags.
|
4107
|
+
# @return [String]
|
4108
|
+
#
|
4109
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/ListTagsForResourceRequest AWS API Documentation
|
4110
|
+
#
|
4111
|
+
class ListTagsForResourceRequest < Struct.new(
|
4112
|
+
:resource_arn)
|
4113
|
+
SENSITIVE = []
|
4114
|
+
include Aws::Structure
|
4115
|
+
end
|
4116
|
+
|
4117
|
+
# @!attribute [rw] tags
|
4118
|
+
# The key-value pairs for the tags associated with the resource.
|
4119
|
+
# @return [Hash<String,String>]
|
4120
|
+
#
|
4121
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/ListTagsForResourceResponse AWS API Documentation
|
4122
|
+
#
|
4123
|
+
class ListTagsForResourceResponse < Struct.new(
|
4124
|
+
:tags)
|
4125
|
+
SENSITIVE = []
|
4126
|
+
include Aws::Structure
|
4127
|
+
end
|
4128
|
+
|
3473
4129
|
# Contains sessions summaries.
|
3474
4130
|
#
|
3475
4131
|
# @note Memory is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Memory corresponding to the set member.
|
@@ -3913,6 +4569,11 @@ module Aws::BedrockAgentRuntime
|
|
3913
4569
|
# output.
|
3914
4570
|
# @return [Types::RawResponse]
|
3915
4571
|
#
|
4572
|
+
# @!attribute [rw] reasoning_content
|
4573
|
+
# Contains content about the reasoning that the model made during the
|
4574
|
+
# orchestration step.
|
4575
|
+
# @return [Types::ReasoningContentBlock]
|
4576
|
+
#
|
3916
4577
|
# @!attribute [rw] trace_id
|
3917
4578
|
# The unique identifier of the trace.
|
3918
4579
|
# @return [String]
|
@@ -3922,8 +4583,9 @@ module Aws::BedrockAgentRuntime
|
|
3922
4583
|
class OrchestrationModelInvocationOutput < Struct.new(
|
3923
4584
|
:metadata,
|
3924
4585
|
:raw_response,
|
4586
|
+
:reasoning_content,
|
3925
4587
|
:trace_id)
|
3926
|
-
SENSITIVE = [:metadata, :raw_response]
|
4588
|
+
SENSITIVE = [:metadata, :raw_response, :reasoning_content]
|
3927
4589
|
include Aws::Structure
|
3928
4590
|
end
|
3929
4591
|
|
@@ -4116,6 +4778,11 @@ module Aws::BedrockAgentRuntime
|
|
4116
4778
|
# Details of the raw response from the foundation model output.
|
4117
4779
|
# @return [Types::RawResponse]
|
4118
4780
|
#
|
4781
|
+
# @!attribute [rw] reasoning_content
|
4782
|
+
# Contains content about the reasoning that the model made during the
|
4783
|
+
# post-processing step.
|
4784
|
+
# @return [Types::ReasoningContentBlock]
|
4785
|
+
#
|
4119
4786
|
# @!attribute [rw] trace_id
|
4120
4787
|
# The unique identifier of the trace.
|
4121
4788
|
# @return [String]
|
@@ -4126,8 +4793,9 @@ module Aws::BedrockAgentRuntime
|
|
4126
4793
|
:metadata,
|
4127
4794
|
:parsed_response,
|
4128
4795
|
:raw_response,
|
4796
|
+
:reasoning_content,
|
4129
4797
|
:trace_id)
|
4130
|
-
SENSITIVE = [:metadata, :parsed_response, :raw_response]
|
4798
|
+
SENSITIVE = [:metadata, :parsed_response, :raw_response, :reasoning_content]
|
4131
4799
|
include Aws::Structure
|
4132
4800
|
end
|
4133
4801
|
|
@@ -4202,6 +4870,11 @@ module Aws::BedrockAgentRuntime
|
|
4202
4870
|
# Details of the raw response from the foundation model output.
|
4203
4871
|
# @return [Types::RawResponse]
|
4204
4872
|
#
|
4873
|
+
# @!attribute [rw] reasoning_content
|
4874
|
+
# Contains content about the reasoning that the model made during the
|
4875
|
+
# pre-processing step.
|
4876
|
+
# @return [Types::ReasoningContentBlock]
|
4877
|
+
#
|
4205
4878
|
# @!attribute [rw] trace_id
|
4206
4879
|
# The unique identifier of the trace.
|
4207
4880
|
# @return [String]
|
@@ -4212,8 +4885,9 @@ module Aws::BedrockAgentRuntime
|
|
4212
4885
|
:metadata,
|
4213
4886
|
:parsed_response,
|
4214
4887
|
:raw_response,
|
4888
|
+
:reasoning_content,
|
4215
4889
|
:trace_id)
|
4216
|
-
SENSITIVE = [:metadata, :parsed_response, :raw_response]
|
4890
|
+
SENSITIVE = [:metadata, :parsed_response, :raw_response, :reasoning_content]
|
4217
4891
|
include Aws::Structure
|
4218
4892
|
end
|
4219
4893
|
|
@@ -4287,6 +4961,16 @@ module Aws::BedrockAgentRuntime
|
|
4287
4961
|
#
|
4288
4962
|
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/advanced-prompts.html
|
4289
4963
|
#
|
4964
|
+
# @!attribute [rw] additional_model_request_fields
|
4965
|
+
# If the Converse or ConverseStream operations support the model,
|
4966
|
+
# `additionalModelRequestFields` contains additional inference
|
4967
|
+
# parameters, beyond the base set of inference parameters in the
|
4968
|
+
# `inferenceConfiguration` field.
|
4969
|
+
#
|
4970
|
+
# For more information, see *Inference request parameters and response
|
4971
|
+
# fields for foundation models* in the Amazon Bedrock user guide.
|
4972
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
4973
|
+
#
|
4290
4974
|
# @!attribute [rw] base_prompt_template
|
4291
4975
|
# Defines the prompt template with which to replace the default prompt
|
4292
4976
|
# template. You can use placeholder variables in the base prompt
|
@@ -4315,7 +4999,7 @@ module Aws::BedrockAgentRuntime
|
|
4315
4999
|
# Specifies whether to override the default parser Lambda function
|
4316
5000
|
# when parsing the raw foundation model output in the part of the
|
4317
5001
|
# agent sequence defined by the `promptType`. If you set the field as
|
4318
|
-
# `
|
5002
|
+
# `OVERRIDDEN`, the `overrideLambda` field in the
|
4319
5003
|
# [PromptOverrideConfiguration][1] must be specified with the ARN of a
|
4320
5004
|
# Lambda function.
|
4321
5005
|
#
|
@@ -4354,6 +5038,7 @@ module Aws::BedrockAgentRuntime
|
|
4354
5038
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/PromptConfiguration AWS API Documentation
|
4355
5039
|
#
|
4356
5040
|
class PromptConfiguration < Struct.new(
|
5041
|
+
:additional_model_request_fields,
|
4357
5042
|
:base_prompt_template,
|
4358
5043
|
:inference_configuration,
|
4359
5044
|
:parser_mode,
|
@@ -4458,6 +5143,54 @@ module Aws::BedrockAgentRuntime
|
|
4458
5143
|
include Aws::Structure
|
4459
5144
|
end
|
4460
5145
|
|
5146
|
+
# @!attribute [rw] invocation_identifier
|
5147
|
+
# The unique identifier (in UUID format) of the invocation to add the
|
5148
|
+
# invocation step to.
|
5149
|
+
# @return [String]
|
5150
|
+
#
|
5151
|
+
# @!attribute [rw] invocation_step_id
|
5152
|
+
# The unique identifier of the invocation step in UUID format.
|
5153
|
+
# @return [String]
|
5154
|
+
#
|
5155
|
+
# @!attribute [rw] invocation_step_time
|
5156
|
+
# The timestamp for when the invocation step occurred.
|
5157
|
+
# @return [Time]
|
5158
|
+
#
|
5159
|
+
# @!attribute [rw] payload
|
5160
|
+
# The payload for the invocation step, including text and images for
|
5161
|
+
# the interaction.
|
5162
|
+
# @return [Types::InvocationStepPayload]
|
5163
|
+
#
|
5164
|
+
# @!attribute [rw] session_identifier
|
5165
|
+
# The unique identifier for the session to add the invocation step to.
|
5166
|
+
# You can specify either the session's `sessionId` or its Amazon
|
5167
|
+
# Resource Name (ARN).
|
5168
|
+
# @return [String]
|
5169
|
+
#
|
5170
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/PutInvocationStepRequest AWS API Documentation
|
5171
|
+
#
|
5172
|
+
class PutInvocationStepRequest < Struct.new(
|
5173
|
+
:invocation_identifier,
|
5174
|
+
:invocation_step_id,
|
5175
|
+
:invocation_step_time,
|
5176
|
+
:payload,
|
5177
|
+
:session_identifier)
|
5178
|
+
SENSITIVE = []
|
5179
|
+
include Aws::Structure
|
5180
|
+
end
|
5181
|
+
|
5182
|
+
# @!attribute [rw] invocation_step_id
|
5183
|
+
# The unique identifier of the invocation step in UUID format.
|
5184
|
+
# @return [String]
|
5185
|
+
#
|
5186
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/PutInvocationStepResponse AWS API Documentation
|
5187
|
+
#
|
5188
|
+
class PutInvocationStepResponse < Struct.new(
|
5189
|
+
:invocation_step_id)
|
5190
|
+
SENSITIVE = []
|
5191
|
+
include Aws::Structure
|
5192
|
+
end
|
5193
|
+
|
4461
5194
|
# Contains information about a natural language query to transform into
|
4462
5195
|
# SQL.
|
4463
5196
|
#
|
@@ -4528,6 +5261,63 @@ module Aws::BedrockAgentRuntime
|
|
4528
5261
|
include Aws::Structure
|
4529
5262
|
end
|
4530
5263
|
|
5264
|
+
# Contains content regarding the reasoning that the foundation model
|
5265
|
+
# made with respect to the content in the content block. Reasoning
|
5266
|
+
# refers to a Chain of Thought (CoT) that the model generates to enhance
|
5267
|
+
# the accuracy of its final response.
|
5268
|
+
#
|
5269
|
+
# @note ReasoningContentBlock is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ReasoningContentBlock corresponding to the set member.
|
5270
|
+
#
|
5271
|
+
# @!attribute [rw] reasoning_text
|
5272
|
+
# Contains information about the reasoning that the model used to
|
5273
|
+
# return the content in the content block.
|
5274
|
+
# @return [Types::ReasoningTextBlock]
|
5275
|
+
#
|
5276
|
+
# @!attribute [rw] redacted_content
|
5277
|
+
# The content in the reasoning that was encrypted by the model
|
5278
|
+
# provider for trust and safety reasons.
|
5279
|
+
# @return [String]
|
5280
|
+
#
|
5281
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/ReasoningContentBlock AWS API Documentation
|
5282
|
+
#
|
5283
|
+
class ReasoningContentBlock < Struct.new(
|
5284
|
+
:reasoning_text,
|
5285
|
+
:redacted_content,
|
5286
|
+
:unknown)
|
5287
|
+
SENSITIVE = [:reasoning_text]
|
5288
|
+
include Aws::Structure
|
5289
|
+
include Aws::Structure::Union
|
5290
|
+
|
5291
|
+
class ReasoningText < ReasoningContentBlock; end
|
5292
|
+
class RedactedContent < ReasoningContentBlock; end
|
5293
|
+
class Unknown < ReasoningContentBlock; end
|
5294
|
+
end
|
5295
|
+
|
5296
|
+
# Contains information about the reasoning that the model used to return
|
5297
|
+
# the content in the content block.
|
5298
|
+
#
|
5299
|
+
# @!attribute [rw] signature
|
5300
|
+
# A hash of all the messages in the conversation to ensure that the
|
5301
|
+
# content in the reasoning text block isn't tampered with. You must
|
5302
|
+
# submit the signature in subsequent `Converse` requests, in addition
|
5303
|
+
# to the previous messages. If the previous messages are tampered
|
5304
|
+
# with, the response throws an error.
|
5305
|
+
# @return [String]
|
5306
|
+
#
|
5307
|
+
# @!attribute [rw] text
|
5308
|
+
# Text describing the reasoning that the model used to return the
|
5309
|
+
# content in the content block.
|
5310
|
+
# @return [String]
|
5311
|
+
#
|
5312
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/ReasoningTextBlock AWS API Documentation
|
5313
|
+
#
|
5314
|
+
class ReasoningTextBlock < Struct.new(
|
5315
|
+
:signature,
|
5316
|
+
:text)
|
5317
|
+
SENSITIVE = []
|
5318
|
+
include Aws::Structure
|
5319
|
+
end
|
5320
|
+
|
4531
5321
|
# Contains details about the agent's response to reprompt the input.
|
4532
5322
|
#
|
4533
5323
|
# @!attribute [rw] source
|
@@ -5277,8 +6067,8 @@ module Aws::BedrockAgentRuntime
|
|
5277
6067
|
# The type of resource that contains your data for retrieving
|
5278
6068
|
# information and generating responses.
|
5279
6069
|
#
|
5280
|
-
# If you choose
|
5281
|
-
# 3 Sonnet models for knowledge bases are supported.
|
6070
|
+
# If you choose to use `EXTERNAL_SOURCES`, then currently only
|
6071
|
+
# Anthropic Claude 3 Sonnet models for knowledge bases are supported.
|
5282
6072
|
# @return [String]
|
5283
6073
|
#
|
5284
6074
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/RetrieveAndGenerateConfiguration AWS API Documentation
|
@@ -5742,6 +6532,20 @@ module Aws::BedrockAgentRuntime
|
|
5742
6532
|
include Aws::Structure
|
5743
6533
|
end
|
5744
6534
|
|
6535
|
+
# Information about the Amazon S3 bucket where the image is stored.
|
6536
|
+
#
|
6537
|
+
# @!attribute [rw] uri
|
6538
|
+
# The path to the Amazon S3 bucket where the image is stored.
|
6539
|
+
# @return [String]
|
6540
|
+
#
|
6541
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/S3Location AWS API Documentation
|
6542
|
+
#
|
6543
|
+
class S3Location < Struct.new(
|
6544
|
+
:uri)
|
6545
|
+
SENSITIVE = []
|
6546
|
+
include Aws::Structure
|
6547
|
+
end
|
6548
|
+
|
5745
6549
|
# The unique wrapper object of the document from the S3 location.
|
5746
6550
|
#
|
5747
6551
|
# @!attribute [rw] uri
|
@@ -5872,6 +6676,46 @@ module Aws::BedrockAgentRuntime
|
|
5872
6676
|
include Aws::Structure
|
5873
6677
|
end
|
5874
6678
|
|
6679
|
+
# Contains details about a session. For more information about sessions,
|
6680
|
+
# see [Store and retrieve conversation history and context with Amazon
|
6681
|
+
# Bedrock sessions][1].
|
6682
|
+
#
|
6683
|
+
#
|
6684
|
+
#
|
6685
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/sessions.html
|
6686
|
+
#
|
6687
|
+
# @!attribute [rw] created_at
|
6688
|
+
# The timestamp for when the session was created.
|
6689
|
+
# @return [Time]
|
6690
|
+
#
|
6691
|
+
# @!attribute [rw] last_updated_at
|
6692
|
+
# The timestamp for when the session was last modified.
|
6693
|
+
# @return [Time]
|
6694
|
+
#
|
6695
|
+
# @!attribute [rw] session_arn
|
6696
|
+
# The Amazon Resource Name (ARN) of the session.
|
6697
|
+
# @return [String]
|
6698
|
+
#
|
6699
|
+
# @!attribute [rw] session_id
|
6700
|
+
# The unique identifier for the session.
|
6701
|
+
# @return [String]
|
6702
|
+
#
|
6703
|
+
# @!attribute [rw] session_status
|
6704
|
+
# The current status of the session.
|
6705
|
+
# @return [String]
|
6706
|
+
#
|
6707
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/SessionSummary AWS API Documentation
|
6708
|
+
#
|
6709
|
+
class SessionSummary < Struct.new(
|
6710
|
+
:created_at,
|
6711
|
+
:last_updated_at,
|
6712
|
+
:session_arn,
|
6713
|
+
:session_id,
|
6714
|
+
:session_status)
|
6715
|
+
SENSITIVE = []
|
6716
|
+
include Aws::Structure
|
6717
|
+
end
|
6718
|
+
|
5875
6719
|
# Contains information about where the text with a citation begins and
|
5876
6720
|
# ends in the generated output.
|
5877
6721
|
#
|
@@ -5923,6 +6767,28 @@ module Aws::BedrockAgentRuntime
|
|
5923
6767
|
include Aws::Structure
|
5924
6768
|
end
|
5925
6769
|
|
6770
|
+
# @!attribute [rw] resource_arn
|
6771
|
+
# The Amazon Resource Name (ARN) of the resource to tag.
|
6772
|
+
# @return [String]
|
6773
|
+
#
|
6774
|
+
# @!attribute [rw] tags
|
6775
|
+
# An object containing key-value pairs that define the tags to attach
|
6776
|
+
# to the resource.
|
6777
|
+
# @return [Hash<String,String>]
|
6778
|
+
#
|
6779
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/TagResourceRequest AWS API Documentation
|
6780
|
+
#
|
6781
|
+
class TagResourceRequest < Struct.new(
|
6782
|
+
:resource_arn,
|
6783
|
+
:tags)
|
6784
|
+
SENSITIVE = []
|
6785
|
+
include Aws::Structure
|
6786
|
+
end
|
6787
|
+
|
6788
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/TagResourceResponse AWS API Documentation
|
6789
|
+
#
|
6790
|
+
class TagResourceResponse < Aws::EmptyStructure; end
|
6791
|
+
|
5926
6792
|
# Configuration settings for text generation using a language model via
|
5927
6793
|
# the RetrieveAndGenerate operation. Includes parameters like
|
5928
6794
|
# temperature, top-p, maximum token count, and stop sequences.
|
@@ -6223,6 +7089,80 @@ module Aws::BedrockAgentRuntime
|
|
6223
7089
|
include Aws::Structure
|
6224
7090
|
end
|
6225
7091
|
|
7092
|
+
# @!attribute [rw] resource_arn
|
7093
|
+
# The Amazon Resource Name (ARN) of the resource from which to remove
|
7094
|
+
# tags.
|
7095
|
+
# @return [String]
|
7096
|
+
#
|
7097
|
+
# @!attribute [rw] tag_keys
|
7098
|
+
# A list of keys of the tags to remove from the resource.
|
7099
|
+
# @return [Array<String>]
|
7100
|
+
#
|
7101
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/UntagResourceRequest AWS API Documentation
|
7102
|
+
#
|
7103
|
+
class UntagResourceRequest < Struct.new(
|
7104
|
+
:resource_arn,
|
7105
|
+
:tag_keys)
|
7106
|
+
SENSITIVE = []
|
7107
|
+
include Aws::Structure
|
7108
|
+
end
|
7109
|
+
|
7110
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/UntagResourceResponse AWS API Documentation
|
7111
|
+
#
|
7112
|
+
class UntagResourceResponse < Aws::EmptyStructure; end
|
7113
|
+
|
7114
|
+
# @!attribute [rw] session_identifier
|
7115
|
+
# The unique identifier of the session to modify. You can specify
|
7116
|
+
# either the session's `sessionId` or its Amazon Resource Name (ARN).
|
7117
|
+
# @return [String]
|
7118
|
+
#
|
7119
|
+
# @!attribute [rw] session_metadata
|
7120
|
+
# A map of key-value pairs containing attributes to be persisted
|
7121
|
+
# across the session. For example the user's ID, their language
|
7122
|
+
# preference, and the type of device they are using.
|
7123
|
+
# @return [Hash<String,String>]
|
7124
|
+
#
|
7125
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/UpdateSessionRequest AWS API Documentation
|
7126
|
+
#
|
7127
|
+
class UpdateSessionRequest < Struct.new(
|
7128
|
+
:session_identifier,
|
7129
|
+
:session_metadata)
|
7130
|
+
SENSITIVE = []
|
7131
|
+
include Aws::Structure
|
7132
|
+
end
|
7133
|
+
|
7134
|
+
# @!attribute [rw] created_at
|
7135
|
+
# The timestamp for when the session was created.
|
7136
|
+
# @return [Time]
|
7137
|
+
#
|
7138
|
+
# @!attribute [rw] last_updated_at
|
7139
|
+
# The timestamp for when the session was last modified.
|
7140
|
+
# @return [Time]
|
7141
|
+
#
|
7142
|
+
# @!attribute [rw] session_arn
|
7143
|
+
# The Amazon Resource Name (ARN) of the session that was updated.
|
7144
|
+
# @return [String]
|
7145
|
+
#
|
7146
|
+
# @!attribute [rw] session_id
|
7147
|
+
# The unique identifier of the session you updated.
|
7148
|
+
# @return [String]
|
7149
|
+
#
|
7150
|
+
# @!attribute [rw] session_status
|
7151
|
+
# The status of the session you updated.
|
7152
|
+
# @return [String]
|
7153
|
+
#
|
7154
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/UpdateSessionResponse AWS API Documentation
|
7155
|
+
#
|
7156
|
+
class UpdateSessionResponse < Struct.new(
|
7157
|
+
:created_at,
|
7158
|
+
:last_updated_at,
|
7159
|
+
:session_arn,
|
7160
|
+
:session_id,
|
7161
|
+
:session_status)
|
7162
|
+
SENSITIVE = []
|
7163
|
+
include Aws::Structure
|
7164
|
+
end
|
7165
|
+
|
6226
7166
|
# Contains information of the usage of the foundation model.
|
6227
7167
|
#
|
6228
7168
|
# @!attribute [rw] input_tokens
|