aws-sdk-bedrockagentruntime 1.46.0 → 1.48.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-bedrockagentruntime/client.rb +965 -1
- data/lib/aws-sdk-bedrockagentruntime/client_api.rb +493 -0
- data/lib/aws-sdk-bedrockagentruntime/types.rb +1031 -29
- data/lib/aws-sdk-bedrockagentruntime.rb +2 -2
- data/sig/client.rbs +400 -0
- data/sig/types.rbs +285 -0
- 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
|
#
|
@@ -808,6 +849,117 @@ module Aws::BedrockAgentRuntime
|
|
808
849
|
include Aws::Structure
|
809
850
|
end
|
810
851
|
|
852
|
+
# List of inline collaborators.
|
853
|
+
#
|
854
|
+
# @!attribute [rw] action_groups
|
855
|
+
# List of action groups with each action group defining tasks the
|
856
|
+
# inline collaborator agent needs to carry out.
|
857
|
+
# @return [Array<Types::AgentActionGroup>]
|
858
|
+
#
|
859
|
+
# @!attribute [rw] agent_collaboration
|
860
|
+
# Defines how the inline supervisor agent handles information across
|
861
|
+
# multiple collaborator agents to coordinate a final response.
|
862
|
+
# @return [String]
|
863
|
+
#
|
864
|
+
# @!attribute [rw] agent_name
|
865
|
+
# Name of the inline collaborator agent which must be the same name as
|
866
|
+
# specified for `collaboratorName`.
|
867
|
+
# @return [String]
|
868
|
+
#
|
869
|
+
# @!attribute [rw] collaborator_configurations
|
870
|
+
# Settings of the collaborator agent.
|
871
|
+
# @return [Array<Types::CollaboratorConfiguration>]
|
872
|
+
#
|
873
|
+
# @!attribute [rw] customer_encryption_key_arn
|
874
|
+
# The Amazon Resource Name (ARN) of the AWS KMS key that encrypts the
|
875
|
+
# inline collaborator.
|
876
|
+
# @return [String]
|
877
|
+
#
|
878
|
+
# @!attribute [rw] foundation_model
|
879
|
+
# The foundation model used by the inline collaborator agent.
|
880
|
+
# @return [String]
|
881
|
+
#
|
882
|
+
# @!attribute [rw] guardrail_configuration
|
883
|
+
# Details of the guardwrail associated with the inline collaborator.
|
884
|
+
# @return [Types::GuardrailConfigurationWithArn]
|
885
|
+
#
|
886
|
+
# @!attribute [rw] idle_session_ttl_in_seconds
|
887
|
+
# The number of seconds for which the Amazon Bedrock keeps information
|
888
|
+
# about the user's conversation with the inline collaborator agent.
|
889
|
+
#
|
890
|
+
# A user interaction remains active for the amount of time specified.
|
891
|
+
# If no conversation occurs during this time, the session expires and
|
892
|
+
# Amazon Bedrock deletes any data provided before the timeout.
|
893
|
+
# @return [Integer]
|
894
|
+
#
|
895
|
+
# @!attribute [rw] instruction
|
896
|
+
# Instruction that tell the inline collaborator agent what it should
|
897
|
+
# do and how it should interact with users.
|
898
|
+
# @return [String]
|
899
|
+
#
|
900
|
+
# @!attribute [rw] knowledge_bases
|
901
|
+
# Knowledge base associated with the inline collaborator agent.
|
902
|
+
# @return [Array<Types::KnowledgeBase>]
|
903
|
+
#
|
904
|
+
# @!attribute [rw] prompt_override_configuration
|
905
|
+
# Contains configurations to override prompt templates in different
|
906
|
+
# parts of an inline collaborator sequence. For more information, see
|
907
|
+
# [Advanced prompts][1].
|
908
|
+
#
|
909
|
+
#
|
910
|
+
#
|
911
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/advanced-prompts.html
|
912
|
+
# @return [Types::PromptOverrideConfiguration]
|
913
|
+
#
|
914
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/Collaborator AWS API Documentation
|
915
|
+
#
|
916
|
+
class Collaborator < Struct.new(
|
917
|
+
:action_groups,
|
918
|
+
:agent_collaboration,
|
919
|
+
:agent_name,
|
920
|
+
:collaborator_configurations,
|
921
|
+
:customer_encryption_key_arn,
|
922
|
+
:foundation_model,
|
923
|
+
:guardrail_configuration,
|
924
|
+
:idle_session_ttl_in_seconds,
|
925
|
+
:instruction,
|
926
|
+
:knowledge_bases,
|
927
|
+
:prompt_override_configuration)
|
928
|
+
SENSITIVE = [:agent_name, :instruction, :prompt_override_configuration]
|
929
|
+
include Aws::Structure
|
930
|
+
end
|
931
|
+
|
932
|
+
# Settings of an inline collaborator agent.
|
933
|
+
#
|
934
|
+
# @!attribute [rw] agent_alias_arn
|
935
|
+
# The Amazon Resource Name (ARN) of the inline collaborator agent.
|
936
|
+
# @return [String]
|
937
|
+
#
|
938
|
+
# @!attribute [rw] collaborator_instruction
|
939
|
+
# Instructions that tell the inline collaborator agent what it should
|
940
|
+
# do and how it should interact with users.
|
941
|
+
# @return [String]
|
942
|
+
#
|
943
|
+
# @!attribute [rw] collaborator_name
|
944
|
+
# Name of the inline collaborator agent which must be the same name as
|
945
|
+
# specified for `agentName`.
|
946
|
+
# @return [String]
|
947
|
+
#
|
948
|
+
# @!attribute [rw] relay_conversation_history
|
949
|
+
# A relay conversation history for the inline collaborator agent.
|
950
|
+
# @return [String]
|
951
|
+
#
|
952
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/CollaboratorConfiguration AWS API Documentation
|
953
|
+
#
|
954
|
+
class CollaboratorConfiguration < Struct.new(
|
955
|
+
:agent_alias_arn,
|
956
|
+
:collaborator_instruction,
|
957
|
+
:collaborator_name,
|
958
|
+
:relay_conversation_history)
|
959
|
+
SENSITIVE = [:collaborator_instruction, :collaborator_name]
|
960
|
+
include Aws::Structure
|
961
|
+
end
|
962
|
+
|
811
963
|
# There was a conflict performing an operation. Resolve the conflict and
|
812
964
|
# retry your request.
|
813
965
|
#
|
@@ -883,6 +1035,113 @@ module Aws::BedrockAgentRuntime
|
|
883
1035
|
include Aws::Structure
|
884
1036
|
end
|
885
1037
|
|
1038
|
+
# @!attribute [rw] description
|
1039
|
+
# A description for the interactions in the invocation. For example,
|
1040
|
+
# "User asking about weather in Seattle".
|
1041
|
+
# @return [String]
|
1042
|
+
#
|
1043
|
+
# @!attribute [rw] invocation_id
|
1044
|
+
# A unique identifier for the invocation in UUID format.
|
1045
|
+
# @return [String]
|
1046
|
+
#
|
1047
|
+
# @!attribute [rw] session_identifier
|
1048
|
+
# The unique identifier for the associated session for the invocation.
|
1049
|
+
# You can specify either the session's `sessionId` or its Amazon
|
1050
|
+
# Resource Name (ARN).
|
1051
|
+
# @return [String]
|
1052
|
+
#
|
1053
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/CreateInvocationRequest AWS API Documentation
|
1054
|
+
#
|
1055
|
+
class CreateInvocationRequest < Struct.new(
|
1056
|
+
:description,
|
1057
|
+
:invocation_id,
|
1058
|
+
:session_identifier)
|
1059
|
+
SENSITIVE = []
|
1060
|
+
include Aws::Structure
|
1061
|
+
end
|
1062
|
+
|
1063
|
+
# @!attribute [rw] created_at
|
1064
|
+
# The timestamp for when the invocation was created.
|
1065
|
+
# @return [Time]
|
1066
|
+
#
|
1067
|
+
# @!attribute [rw] invocation_id
|
1068
|
+
# The unique identifier for the invocation.
|
1069
|
+
# @return [String]
|
1070
|
+
#
|
1071
|
+
# @!attribute [rw] session_id
|
1072
|
+
# The unique identifier for the session associated with the
|
1073
|
+
# invocation.
|
1074
|
+
# @return [String]
|
1075
|
+
#
|
1076
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/CreateInvocationResponse AWS API Documentation
|
1077
|
+
#
|
1078
|
+
class CreateInvocationResponse < Struct.new(
|
1079
|
+
:created_at,
|
1080
|
+
:invocation_id,
|
1081
|
+
:session_id)
|
1082
|
+
SENSITIVE = []
|
1083
|
+
include Aws::Structure
|
1084
|
+
end
|
1085
|
+
|
1086
|
+
# @!attribute [rw] encryption_key_arn
|
1087
|
+
# The Amazon Resource Name (ARN) of the KMS key to use to encrypt the
|
1088
|
+
# session data. The user or role creating the session must have
|
1089
|
+
# permission to use the key. For more information, see [Amazon Bedrock
|
1090
|
+
# session encryption][1].
|
1091
|
+
#
|
1092
|
+
#
|
1093
|
+
#
|
1094
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/session-encryption.html
|
1095
|
+
# @return [String]
|
1096
|
+
#
|
1097
|
+
# @!attribute [rw] session_metadata
|
1098
|
+
# A map of key-value pairs containing attributes to be persisted
|
1099
|
+
# across the session. For example, the user's ID, their language
|
1100
|
+
# preference, and the type of device they are using.
|
1101
|
+
# @return [Hash<String,String>]
|
1102
|
+
#
|
1103
|
+
# @!attribute [rw] tags
|
1104
|
+
# Specify the key-value pairs for the tags that you want to attach to
|
1105
|
+
# the session.
|
1106
|
+
# @return [Hash<String,String>]
|
1107
|
+
#
|
1108
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/CreateSessionRequest AWS API Documentation
|
1109
|
+
#
|
1110
|
+
class CreateSessionRequest < Struct.new(
|
1111
|
+
:encryption_key_arn,
|
1112
|
+
:session_metadata,
|
1113
|
+
:tags)
|
1114
|
+
SENSITIVE = []
|
1115
|
+
include Aws::Structure
|
1116
|
+
end
|
1117
|
+
|
1118
|
+
# @!attribute [rw] created_at
|
1119
|
+
# The timestamp for when the session was created.
|
1120
|
+
# @return [Time]
|
1121
|
+
#
|
1122
|
+
# @!attribute [rw] session_arn
|
1123
|
+
# The Amazon Resource Name (ARN) of the created session.
|
1124
|
+
# @return [String]
|
1125
|
+
#
|
1126
|
+
# @!attribute [rw] session_id
|
1127
|
+
# The unique identifier for the session.
|
1128
|
+
# @return [String]
|
1129
|
+
#
|
1130
|
+
# @!attribute [rw] session_status
|
1131
|
+
# The current status of the session.
|
1132
|
+
# @return [String]
|
1133
|
+
#
|
1134
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/CreateSessionResponse AWS API Documentation
|
1135
|
+
#
|
1136
|
+
class CreateSessionResponse < Struct.new(
|
1137
|
+
:created_at,
|
1138
|
+
:session_arn,
|
1139
|
+
:session_id,
|
1140
|
+
:session_status)
|
1141
|
+
SENSITIVE = []
|
1142
|
+
include Aws::Structure
|
1143
|
+
end
|
1144
|
+
|
886
1145
|
# The trace behavior for the custom orchestration.
|
887
1146
|
#
|
888
1147
|
# @!attribute [rw] event
|
@@ -949,6 +1208,23 @@ module Aws::BedrockAgentRuntime
|
|
949
1208
|
#
|
950
1209
|
class DeleteAgentMemoryResponse < Aws::EmptyStructure; end
|
951
1210
|
|
1211
|
+
# @!attribute [rw] session_identifier
|
1212
|
+
# The unique identifier for the session to be deleted. You can specify
|
1213
|
+
# either the session's `sessionId` or its Amazon Resource Name (ARN).
|
1214
|
+
# @return [String]
|
1215
|
+
#
|
1216
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/DeleteSessionRequest AWS API Documentation
|
1217
|
+
#
|
1218
|
+
class DeleteSessionRequest < Struct.new(
|
1219
|
+
:session_identifier)
|
1220
|
+
SENSITIVE = []
|
1221
|
+
include Aws::Structure
|
1222
|
+
end
|
1223
|
+
|
1224
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/DeleteSessionResponse AWS API Documentation
|
1225
|
+
#
|
1226
|
+
class DeleteSessionResponse < Aws::EmptyStructure; end
|
1227
|
+
|
952
1228
|
# There was an issue with a dependency. Check the resource
|
953
1229
|
# configurations and retry the request.
|
954
1230
|
#
|
@@ -970,6 +1246,41 @@ module Aws::BedrockAgentRuntime
|
|
970
1246
|
include Aws::Structure
|
971
1247
|
end
|
972
1248
|
|
1249
|
+
# @!attribute [rw] session_identifier
|
1250
|
+
# The unique identifier for the session to end. You can specify either
|
1251
|
+
# the session's `sessionId` or its Amazon Resource Name (ARN).
|
1252
|
+
# @return [String]
|
1253
|
+
#
|
1254
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/EndSessionRequest AWS API Documentation
|
1255
|
+
#
|
1256
|
+
class EndSessionRequest < Struct.new(
|
1257
|
+
:session_identifier)
|
1258
|
+
SENSITIVE = []
|
1259
|
+
include Aws::Structure
|
1260
|
+
end
|
1261
|
+
|
1262
|
+
# @!attribute [rw] session_arn
|
1263
|
+
# The Amazon Resource Name (ARN) of the session you ended.
|
1264
|
+
# @return [String]
|
1265
|
+
#
|
1266
|
+
# @!attribute [rw] session_id
|
1267
|
+
# The unique identifier of the session you ended.
|
1268
|
+
# @return [String]
|
1269
|
+
#
|
1270
|
+
# @!attribute [rw] session_status
|
1271
|
+
# The current status of the session you ended.
|
1272
|
+
# @return [String]
|
1273
|
+
#
|
1274
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/EndSessionResponse AWS API Documentation
|
1275
|
+
#
|
1276
|
+
class EndSessionResponse < Struct.new(
|
1277
|
+
:session_arn,
|
1278
|
+
:session_id,
|
1279
|
+
:session_status)
|
1280
|
+
SENSITIVE = []
|
1281
|
+
include Aws::Structure
|
1282
|
+
end
|
1283
|
+
|
973
1284
|
# The unique external source of the content contained in the wrapper
|
974
1285
|
# object.
|
975
1286
|
#
|
@@ -2022,6 +2333,105 @@ module Aws::BedrockAgentRuntime
|
|
2022
2333
|
include Aws::Structure
|
2023
2334
|
end
|
2024
2335
|
|
2336
|
+
# @!attribute [rw] invocation_identifier
|
2337
|
+
# The unique identifier for the invocation in UUID format.
|
2338
|
+
# @return [String]
|
2339
|
+
#
|
2340
|
+
# @!attribute [rw] invocation_step_id
|
2341
|
+
# The unique identifier (in UUID format) for the specific invocation
|
2342
|
+
# step to retrieve.
|
2343
|
+
# @return [String]
|
2344
|
+
#
|
2345
|
+
# @!attribute [rw] session_identifier
|
2346
|
+
# The unique identifier for the invocation step's associated session.
|
2347
|
+
# You can specify either the session's `sessionId` or its Amazon
|
2348
|
+
# Resource Name (ARN).
|
2349
|
+
# @return [String]
|
2350
|
+
#
|
2351
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/GetInvocationStepRequest AWS API Documentation
|
2352
|
+
#
|
2353
|
+
class GetInvocationStepRequest < Struct.new(
|
2354
|
+
:invocation_identifier,
|
2355
|
+
:invocation_step_id,
|
2356
|
+
:session_identifier)
|
2357
|
+
SENSITIVE = []
|
2358
|
+
include Aws::Structure
|
2359
|
+
end
|
2360
|
+
|
2361
|
+
# @!attribute [rw] invocation_step
|
2362
|
+
# The complete details of the requested invocation step.
|
2363
|
+
# @return [Types::InvocationStep]
|
2364
|
+
#
|
2365
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/GetInvocationStepResponse AWS API Documentation
|
2366
|
+
#
|
2367
|
+
class GetInvocationStepResponse < Struct.new(
|
2368
|
+
:invocation_step)
|
2369
|
+
SENSITIVE = []
|
2370
|
+
include Aws::Structure
|
2371
|
+
end
|
2372
|
+
|
2373
|
+
# @!attribute [rw] session_identifier
|
2374
|
+
# A unique identifier for the session to retrieve. You can specify
|
2375
|
+
# either the session's `sessionId` or its Amazon Resource Name (ARN).
|
2376
|
+
# @return [String]
|
2377
|
+
#
|
2378
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/GetSessionRequest AWS API Documentation
|
2379
|
+
#
|
2380
|
+
class GetSessionRequest < Struct.new(
|
2381
|
+
:session_identifier)
|
2382
|
+
SENSITIVE = []
|
2383
|
+
include Aws::Structure
|
2384
|
+
end
|
2385
|
+
|
2386
|
+
# @!attribute [rw] created_at
|
2387
|
+
# The timestamp for when the session was created.
|
2388
|
+
# @return [Time]
|
2389
|
+
#
|
2390
|
+
# @!attribute [rw] encryption_key_arn
|
2391
|
+
# The Amazon Resource Name (ARN) of the Key Management Service key
|
2392
|
+
# used to encrypt the session data. For more information, see [Amazon
|
2393
|
+
# Bedrock session encryption][1].
|
2394
|
+
#
|
2395
|
+
#
|
2396
|
+
#
|
2397
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/session-encryption.html
|
2398
|
+
# @return [String]
|
2399
|
+
#
|
2400
|
+
# @!attribute [rw] last_updated_at
|
2401
|
+
# The timestamp for when the session was last modified.
|
2402
|
+
# @return [Time]
|
2403
|
+
#
|
2404
|
+
# @!attribute [rw] session_arn
|
2405
|
+
# The Amazon Resource Name (ARN) of the session.
|
2406
|
+
# @return [String]
|
2407
|
+
#
|
2408
|
+
# @!attribute [rw] session_id
|
2409
|
+
# The unique identifier for the session in UUID format.
|
2410
|
+
# @return [String]
|
2411
|
+
#
|
2412
|
+
# @!attribute [rw] session_metadata
|
2413
|
+
# A map of key-value pairs containing attributes persisted across the
|
2414
|
+
# session.
|
2415
|
+
# @return [Hash<String,String>]
|
2416
|
+
#
|
2417
|
+
# @!attribute [rw] session_status
|
2418
|
+
# The current status of the session.
|
2419
|
+
# @return [String]
|
2420
|
+
#
|
2421
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/GetSessionResponse AWS API Documentation
|
2422
|
+
#
|
2423
|
+
class GetSessionResponse < Struct.new(
|
2424
|
+
:created_at,
|
2425
|
+
:encryption_key_arn,
|
2426
|
+
:last_updated_at,
|
2427
|
+
:session_arn,
|
2428
|
+
:session_id,
|
2429
|
+
:session_metadata,
|
2430
|
+
:session_status)
|
2431
|
+
SENSITIVE = []
|
2432
|
+
include Aws::Structure
|
2433
|
+
end
|
2434
|
+
|
2025
2435
|
# Assessment details of the content analyzed by Guardrails.
|
2026
2436
|
#
|
2027
2437
|
# @!attribute [rw] content_policy
|
@@ -2349,6 +2759,55 @@ module Aws::BedrockAgentRuntime
|
|
2349
2759
|
include Aws::Structure
|
2350
2760
|
end
|
2351
2761
|
|
2762
|
+
# Image content for an invocation step.
|
2763
|
+
#
|
2764
|
+
# @!attribute [rw] format
|
2765
|
+
# The format of the image.
|
2766
|
+
# @return [String]
|
2767
|
+
#
|
2768
|
+
# @!attribute [rw] source
|
2769
|
+
# The source for the image.
|
2770
|
+
# @return [Types::ImageSource]
|
2771
|
+
#
|
2772
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/ImageBlock AWS API Documentation
|
2773
|
+
#
|
2774
|
+
class ImageBlock < Struct.new(
|
2775
|
+
:format,
|
2776
|
+
:source)
|
2777
|
+
SENSITIVE = []
|
2778
|
+
include Aws::Structure
|
2779
|
+
end
|
2780
|
+
|
2781
|
+
# The source for an image.
|
2782
|
+
#
|
2783
|
+
# @note ImageSource is a union - when making an API calls you must set exactly one of the members.
|
2784
|
+
#
|
2785
|
+
# @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.
|
2786
|
+
#
|
2787
|
+
# @!attribute [rw] bytes
|
2788
|
+
# The raw image bytes for the image. If you use an Amazon Web Services
|
2789
|
+
# SDK, you don't need to encode the image bytes in base64.
|
2790
|
+
# @return [String]
|
2791
|
+
#
|
2792
|
+
# @!attribute [rw] s3_location
|
2793
|
+
# The path to the Amazon S3 bucket where the image is stored.
|
2794
|
+
# @return [Types::S3Location]
|
2795
|
+
#
|
2796
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/ImageSource AWS API Documentation
|
2797
|
+
#
|
2798
|
+
class ImageSource < Struct.new(
|
2799
|
+
:bytes,
|
2800
|
+
:s3_location,
|
2801
|
+
:unknown)
|
2802
|
+
SENSITIVE = []
|
2803
|
+
include Aws::Structure
|
2804
|
+
include Aws::Structure::Union
|
2805
|
+
|
2806
|
+
class Bytes < ImageSource; end
|
2807
|
+
class S3Location < ImageSource; end
|
2808
|
+
class Unknown < ImageSource; end
|
2809
|
+
end
|
2810
|
+
|
2352
2811
|
# Settings for implicit filtering, where a model generates a metadata
|
2353
2812
|
# filter based on the prompt.
|
2354
2813
|
#
|
@@ -2570,6 +3029,10 @@ module Aws::BedrockAgentRuntime
|
|
2570
3029
|
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agents-lambda.html
|
2571
3030
|
# [2]: https://docs.aws.amazon.com/bedrock/latest/userguide/agents-session-state.html
|
2572
3031
|
#
|
3032
|
+
# @!attribute [rw] conversation_history
|
3033
|
+
# Contains the conversation history that persist across sessions.
|
3034
|
+
# @return [Types::ConversationHistory]
|
3035
|
+
#
|
2573
3036
|
# @!attribute [rw] files
|
2574
3037
|
# Contains information about the files used by code interpreter.
|
2575
3038
|
# @return [Array<Types::InputFile>]
|
@@ -2614,6 +3077,7 @@ module Aws::BedrockAgentRuntime
|
|
2614
3077
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/InlineSessionState AWS API Documentation
|
2615
3078
|
#
|
2616
3079
|
class InlineSessionState < Struct.new(
|
3080
|
+
:conversation_history,
|
2617
3081
|
:files,
|
2618
3082
|
:invocation_id,
|
2619
3083
|
:prompt_session_attributes,
|
@@ -2771,47 +3235,179 @@ module Aws::BedrockAgentRuntime
|
|
2771
3235
|
class Unknown < InvocationInputMember; end
|
2772
3236
|
end
|
2773
3237
|
|
2774
|
-
# A result from the invocation of an action. For more information, see
|
2775
|
-
# [Return control to the agent developer][1] and [Control session
|
2776
|
-
# context][2].
|
3238
|
+
# A result from the invocation of an action. For more information, see
|
3239
|
+
# [Return control to the agent developer][1] and [Control session
|
3240
|
+
# context][2].
|
3241
|
+
#
|
3242
|
+
# This data type is used in the following API operations:
|
3243
|
+
#
|
3244
|
+
# * [InvokeAgent request][3]
|
3245
|
+
#
|
3246
|
+
# ^
|
3247
|
+
#
|
3248
|
+
#
|
3249
|
+
#
|
3250
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agents-returncontrol.html
|
3251
|
+
# [2]: https://docs.aws.amazon.com/bedrock/latest/userguide/agents-session-state.html
|
3252
|
+
# [3]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_InvokeAgent.html#API_agent-runtime_InvokeAgent_RequestSyntax
|
3253
|
+
#
|
3254
|
+
# @note InvocationResultMember is a union - when making an API calls you must set exactly one of the members.
|
3255
|
+
#
|
3256
|
+
# @note InvocationResultMember is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of InvocationResultMember corresponding to the set member.
|
3257
|
+
#
|
3258
|
+
# @!attribute [rw] api_result
|
3259
|
+
# The result from the API response from the action group invocation.
|
3260
|
+
# @return [Types::ApiResult]
|
3261
|
+
#
|
3262
|
+
# @!attribute [rw] function_result
|
3263
|
+
# The result from the function from the action group invocation.
|
3264
|
+
# @return [Types::FunctionResult]
|
3265
|
+
#
|
3266
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/InvocationResultMember AWS API Documentation
|
3267
|
+
#
|
3268
|
+
class InvocationResultMember < Struct.new(
|
3269
|
+
:api_result,
|
3270
|
+
:function_result,
|
3271
|
+
:unknown)
|
3272
|
+
SENSITIVE = []
|
3273
|
+
include Aws::Structure
|
3274
|
+
include Aws::Structure::Union
|
3275
|
+
|
3276
|
+
class ApiResult < InvocationResultMember; end
|
3277
|
+
class FunctionResult < InvocationResultMember; end
|
3278
|
+
class Unknown < InvocationResultMember; end
|
3279
|
+
end
|
3280
|
+
|
3281
|
+
# Stores fine-grained state checkpoints, including text and images, for
|
3282
|
+
# each interaction in an invocation in a session. For more information
|
3283
|
+
# about sessions, see [Store and retrieve conversation history and
|
3284
|
+
# context with Amazon Bedrock sessions][1].
|
3285
|
+
#
|
3286
|
+
#
|
3287
|
+
#
|
3288
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/sessions.html
|
3289
|
+
#
|
3290
|
+
# @!attribute [rw] invocation_id
|
3291
|
+
# The unique identifier (in UUID format) for the invocation that
|
3292
|
+
# includes the invocation step.
|
3293
|
+
# @return [String]
|
3294
|
+
#
|
3295
|
+
# @!attribute [rw] invocation_step_id
|
3296
|
+
# The unique identifier (in UUID format) for the invocation step.
|
3297
|
+
# @return [String]
|
3298
|
+
#
|
3299
|
+
# @!attribute [rw] invocation_step_time
|
3300
|
+
# The timestamp for when the invocation step was created.
|
3301
|
+
# @return [Time]
|
3302
|
+
#
|
3303
|
+
# @!attribute [rw] payload
|
3304
|
+
# Payload content, such as text and images, for the invocation step.
|
3305
|
+
# @return [Types::InvocationStepPayload]
|
3306
|
+
#
|
3307
|
+
# @!attribute [rw] session_id
|
3308
|
+
# The unique identifier of the session containing the invocation step.
|
3309
|
+
# @return [String]
|
3310
|
+
#
|
3311
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/InvocationStep AWS API Documentation
|
3312
|
+
#
|
3313
|
+
class InvocationStep < Struct.new(
|
3314
|
+
:invocation_id,
|
3315
|
+
:invocation_step_id,
|
3316
|
+
:invocation_step_time,
|
3317
|
+
:payload,
|
3318
|
+
:session_id)
|
3319
|
+
SENSITIVE = []
|
3320
|
+
include Aws::Structure
|
3321
|
+
end
|
3322
|
+
|
3323
|
+
# Payload content, such as text and images, for the invocation step.
|
3324
|
+
#
|
3325
|
+
# @note InvocationStepPayload is a union - when making an API calls you must set exactly one of the members.
|
3326
|
+
#
|
3327
|
+
# @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.
|
3328
|
+
#
|
3329
|
+
# @!attribute [rw] content_blocks
|
3330
|
+
# The content for the invocation step.
|
3331
|
+
# @return [Array<Types::BedrockSessionContentBlock>]
|
3332
|
+
#
|
3333
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/InvocationStepPayload AWS API Documentation
|
3334
|
+
#
|
3335
|
+
class InvocationStepPayload < Struct.new(
|
3336
|
+
:content_blocks,
|
3337
|
+
:unknown)
|
3338
|
+
SENSITIVE = [:content_blocks]
|
3339
|
+
include Aws::Structure
|
3340
|
+
include Aws::Structure::Union
|
3341
|
+
|
3342
|
+
class ContentBlocks < InvocationStepPayload; end
|
3343
|
+
class Unknown < InvocationStepPayload; end
|
3344
|
+
end
|
3345
|
+
|
3346
|
+
# Contains details about an invocation step within an invocation in a
|
3347
|
+
# session. For more information about sessions, see [Store and retrieve
|
3348
|
+
# conversation history and context with Amazon Bedrock sessions][1].
|
2777
3349
|
#
|
2778
|
-
# This data type is used in the following API operations:
|
2779
3350
|
#
|
2780
|
-
# * [InvokeAgent request][3]
|
2781
3351
|
#
|
2782
|
-
#
|
3352
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/sessions.html
|
2783
3353
|
#
|
3354
|
+
# @!attribute [rw] invocation_id
|
3355
|
+
# A unique identifier for the invocation in UUID format.
|
3356
|
+
# @return [String]
|
2784
3357
|
#
|
3358
|
+
# @!attribute [rw] invocation_step_id
|
3359
|
+
# The unique identifier (in UUID format) for the invocation step.
|
3360
|
+
# @return [String]
|
2785
3361
|
#
|
2786
|
-
# [
|
2787
|
-
#
|
2788
|
-
# [
|
3362
|
+
# @!attribute [rw] invocation_step_time
|
3363
|
+
# The timestamp for when the invocation step was created.
|
3364
|
+
# @return [Time]
|
2789
3365
|
#
|
2790
|
-
#
|
3366
|
+
# @!attribute [rw] session_id
|
3367
|
+
# The unique identifier for the session associated with the invocation
|
3368
|
+
# step.
|
3369
|
+
# @return [String]
|
2791
3370
|
#
|
2792
|
-
# @
|
3371
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/InvocationStepSummary AWS API Documentation
|
2793
3372
|
#
|
2794
|
-
|
2795
|
-
|
2796
|
-
|
3373
|
+
class InvocationStepSummary < Struct.new(
|
3374
|
+
:invocation_id,
|
3375
|
+
:invocation_step_id,
|
3376
|
+
:invocation_step_time,
|
3377
|
+
:session_id)
|
3378
|
+
SENSITIVE = []
|
3379
|
+
include Aws::Structure
|
3380
|
+
end
|
3381
|
+
|
3382
|
+
# Contains details about an invocation in a session. For more
|
3383
|
+
# information about sessions, see [Store and retrieve conversation
|
3384
|
+
# history and context with Amazon Bedrock sessions][1].
|
2797
3385
|
#
|
2798
|
-
# @!attribute [rw] function_result
|
2799
|
-
# The result from the function from the action group invocation.
|
2800
|
-
# @return [Types::FunctionResult]
|
2801
3386
|
#
|
2802
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/InvocationResultMember AWS API Documentation
|
2803
3387
|
#
|
2804
|
-
|
2805
|
-
|
2806
|
-
|
2807
|
-
|
3388
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/sessions.html
|
3389
|
+
#
|
3390
|
+
# @!attribute [rw] created_at
|
3391
|
+
# The timestamp for when the invocation was created.
|
3392
|
+
# @return [Time]
|
3393
|
+
#
|
3394
|
+
# @!attribute [rw] invocation_id
|
3395
|
+
# A unique identifier for the invocation in UUID format.
|
3396
|
+
# @return [String]
|
3397
|
+
#
|
3398
|
+
# @!attribute [rw] session_id
|
3399
|
+
# The unique identifier for the session associated with the
|
3400
|
+
# invocation.
|
3401
|
+
# @return [String]
|
3402
|
+
#
|
3403
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/InvocationSummary AWS API Documentation
|
3404
|
+
#
|
3405
|
+
class InvocationSummary < Struct.new(
|
3406
|
+
:created_at,
|
3407
|
+
:invocation_id,
|
3408
|
+
:session_id)
|
2808
3409
|
SENSITIVE = []
|
2809
3410
|
include Aws::Structure
|
2810
|
-
include Aws::Structure::Union
|
2811
|
-
|
2812
|
-
class ApiResult < InvocationResultMember; end
|
2813
|
-
class FunctionResult < InvocationResultMember; end
|
2814
|
-
class Unknown < InvocationResultMember; end
|
2815
3411
|
end
|
2816
3412
|
|
2817
3413
|
# @!attribute [rw] agent_alias_id
|
@@ -2999,10 +3595,29 @@ module Aws::BedrockAgentRuntime
|
|
2999
3595
|
# the inline agent needs to carry out.
|
3000
3596
|
# @return [Array<Types::AgentActionGroup>]
|
3001
3597
|
#
|
3598
|
+
# @!attribute [rw] agent_collaboration
|
3599
|
+
# Defines how the inline collaborator agent handles information across
|
3600
|
+
# multiple collaborator agents to coordinate a final response. The
|
3601
|
+
# inline collaborator agent can also be the supervisor.
|
3602
|
+
# @return [String]
|
3603
|
+
#
|
3002
3604
|
# @!attribute [rw] bedrock_model_configurations
|
3003
3605
|
# Model settings for the request.
|
3004
3606
|
# @return [Types::InlineBedrockModelConfigurations]
|
3005
3607
|
#
|
3608
|
+
# @!attribute [rw] collaborator_configurations
|
3609
|
+
# Settings for an inline agent collaborator called with
|
3610
|
+
# [InvokeInlineAgent][1].
|
3611
|
+
#
|
3612
|
+
#
|
3613
|
+
#
|
3614
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_InvokeInlineAgent.html
|
3615
|
+
# @return [Array<Types::CollaboratorConfiguration>]
|
3616
|
+
#
|
3617
|
+
# @!attribute [rw] collaborators
|
3618
|
+
# List of collaborator inline agents.
|
3619
|
+
# @return [Array<Types::Collaborator>]
|
3620
|
+
#
|
3006
3621
|
# @!attribute [rw] customer_encryption_key_arn
|
3007
3622
|
# The Amazon Resource Name (ARN) of the Amazon Web Services KMS key to
|
3008
3623
|
# use to encrypt your inline agent.
|
@@ -3107,7 +3722,10 @@ module Aws::BedrockAgentRuntime
|
|
3107
3722
|
#
|
3108
3723
|
class InvokeInlineAgentRequest < Struct.new(
|
3109
3724
|
:action_groups,
|
3725
|
+
:agent_collaboration,
|
3110
3726
|
:bedrock_model_configurations,
|
3727
|
+
:collaborator_configurations,
|
3728
|
+
:collaborators,
|
3111
3729
|
:customer_encryption_key_arn,
|
3112
3730
|
:enable_trace,
|
3113
3731
|
:end_session,
|
@@ -3470,6 +4088,182 @@ module Aws::BedrockAgentRuntime
|
|
3470
4088
|
include Aws::Structure
|
3471
4089
|
end
|
3472
4090
|
|
4091
|
+
# @!attribute [rw] invocation_identifier
|
4092
|
+
# The unique identifier (in UUID format) for the invocation to list
|
4093
|
+
# invocation steps for.
|
4094
|
+
# @return [String]
|
4095
|
+
#
|
4096
|
+
# @!attribute [rw] max_results
|
4097
|
+
# The maximum number of results to return in the response. If the
|
4098
|
+
# total number of results is greater than this value, use the token
|
4099
|
+
# returned in the response in the `nextToken` field when making
|
4100
|
+
# another request to return the next batch of results.
|
4101
|
+
# @return [Integer]
|
4102
|
+
#
|
4103
|
+
# @!attribute [rw] next_token
|
4104
|
+
# If the total number of results is greater than the `maxResults`
|
4105
|
+
# value provided in the request, enter the token returned in the
|
4106
|
+
# `nextToken` field in the response in this field to return the next
|
4107
|
+
# batch of results.
|
4108
|
+
# @return [String]
|
4109
|
+
#
|
4110
|
+
# @!attribute [rw] session_identifier
|
4111
|
+
# The unique identifier for the session associated with the invocation
|
4112
|
+
# steps. You can specify either the session's `sessionId` or its
|
4113
|
+
# Amazon Resource Name (ARN).
|
4114
|
+
# @return [String]
|
4115
|
+
#
|
4116
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/ListInvocationStepsRequest AWS API Documentation
|
4117
|
+
#
|
4118
|
+
class ListInvocationStepsRequest < Struct.new(
|
4119
|
+
:invocation_identifier,
|
4120
|
+
:max_results,
|
4121
|
+
:next_token,
|
4122
|
+
:session_identifier)
|
4123
|
+
SENSITIVE = []
|
4124
|
+
include Aws::Structure
|
4125
|
+
end
|
4126
|
+
|
4127
|
+
# @!attribute [rw] invocation_step_summaries
|
4128
|
+
# A list of summaries for each invocation step associated with a
|
4129
|
+
# session and if you specified it, an invocation within the session.
|
4130
|
+
# @return [Array<Types::InvocationStepSummary>]
|
4131
|
+
#
|
4132
|
+
# @!attribute [rw] next_token
|
4133
|
+
# If the total number of results is greater than the `maxResults`
|
4134
|
+
# value provided in the request, use this token when making another
|
4135
|
+
# request in the `nextToken` field to return the next batch of
|
4136
|
+
# results.
|
4137
|
+
# @return [String]
|
4138
|
+
#
|
4139
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/ListInvocationStepsResponse AWS API Documentation
|
4140
|
+
#
|
4141
|
+
class ListInvocationStepsResponse < Struct.new(
|
4142
|
+
:invocation_step_summaries,
|
4143
|
+
:next_token)
|
4144
|
+
SENSITIVE = []
|
4145
|
+
include Aws::Structure
|
4146
|
+
end
|
4147
|
+
|
4148
|
+
# @!attribute [rw] max_results
|
4149
|
+
# The maximum number of results to return in the response. If the
|
4150
|
+
# total number of results is greater than this value, use the token
|
4151
|
+
# returned in the response in the `nextToken` field when making
|
4152
|
+
# another request to return the next batch of results.
|
4153
|
+
# @return [Integer]
|
4154
|
+
#
|
4155
|
+
# @!attribute [rw] next_token
|
4156
|
+
# If the total number of results is greater than the `maxResults`
|
4157
|
+
# value provided in the request, enter the token returned in the
|
4158
|
+
# `nextToken` field in the response in this field to return the next
|
4159
|
+
# batch of results.
|
4160
|
+
# @return [String]
|
4161
|
+
#
|
4162
|
+
# @!attribute [rw] session_identifier
|
4163
|
+
# The unique identifier for the session to list invocations for. You
|
4164
|
+
# can specify either the session's `sessionId` or its Amazon Resource
|
4165
|
+
# Name (ARN).
|
4166
|
+
# @return [String]
|
4167
|
+
#
|
4168
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/ListInvocationsRequest AWS API Documentation
|
4169
|
+
#
|
4170
|
+
class ListInvocationsRequest < Struct.new(
|
4171
|
+
:max_results,
|
4172
|
+
:next_token,
|
4173
|
+
:session_identifier)
|
4174
|
+
SENSITIVE = []
|
4175
|
+
include Aws::Structure
|
4176
|
+
end
|
4177
|
+
|
4178
|
+
# @!attribute [rw] invocation_summaries
|
4179
|
+
# A list of invocation summaries associated with the session.
|
4180
|
+
# @return [Array<Types::InvocationSummary>]
|
4181
|
+
#
|
4182
|
+
# @!attribute [rw] next_token
|
4183
|
+
# If the total number of results is greater than the `maxResults`
|
4184
|
+
# value provided in the request, use this token when making another
|
4185
|
+
# request in the `nextToken` field to return the next batch of
|
4186
|
+
# results.
|
4187
|
+
# @return [String]
|
4188
|
+
#
|
4189
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/ListInvocationsResponse AWS API Documentation
|
4190
|
+
#
|
4191
|
+
class ListInvocationsResponse < Struct.new(
|
4192
|
+
:invocation_summaries,
|
4193
|
+
:next_token)
|
4194
|
+
SENSITIVE = []
|
4195
|
+
include Aws::Structure
|
4196
|
+
end
|
4197
|
+
|
4198
|
+
# @!attribute [rw] max_results
|
4199
|
+
# The maximum number of results to return in the response. If the
|
4200
|
+
# total number of results is greater than this value, use the token
|
4201
|
+
# returned in the response in the `nextToken` field when making
|
4202
|
+
# another request to return the next batch of results.
|
4203
|
+
# @return [Integer]
|
4204
|
+
#
|
4205
|
+
# @!attribute [rw] next_token
|
4206
|
+
# If the total number of results is greater than the `maxResults`
|
4207
|
+
# value provided in the request, enter the token returned in the
|
4208
|
+
# `nextToken` field in the response in this field to return the next
|
4209
|
+
# batch of results.
|
4210
|
+
# @return [String]
|
4211
|
+
#
|
4212
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/ListSessionsRequest AWS API Documentation
|
4213
|
+
#
|
4214
|
+
class ListSessionsRequest < Struct.new(
|
4215
|
+
:max_results,
|
4216
|
+
:next_token)
|
4217
|
+
SENSITIVE = []
|
4218
|
+
include Aws::Structure
|
4219
|
+
end
|
4220
|
+
|
4221
|
+
# @!attribute [rw] next_token
|
4222
|
+
# If the total number of results is greater than the `maxResults`
|
4223
|
+
# value provided in the request, use this token when making another
|
4224
|
+
# request in the `nextToken` field to return the next batch of
|
4225
|
+
# results.
|
4226
|
+
# @return [String]
|
4227
|
+
#
|
4228
|
+
# @!attribute [rw] session_summaries
|
4229
|
+
# A list of summaries for each session in your Amazon Web Services
|
4230
|
+
# account.
|
4231
|
+
# @return [Array<Types::SessionSummary>]
|
4232
|
+
#
|
4233
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/ListSessionsResponse AWS API Documentation
|
4234
|
+
#
|
4235
|
+
class ListSessionsResponse < Struct.new(
|
4236
|
+
:next_token,
|
4237
|
+
:session_summaries)
|
4238
|
+
SENSITIVE = []
|
4239
|
+
include Aws::Structure
|
4240
|
+
end
|
4241
|
+
|
4242
|
+
# @!attribute [rw] resource_arn
|
4243
|
+
# The Amazon Resource Name (ARN) of the resource for which to list
|
4244
|
+
# tags.
|
4245
|
+
# @return [String]
|
4246
|
+
#
|
4247
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/ListTagsForResourceRequest AWS API Documentation
|
4248
|
+
#
|
4249
|
+
class ListTagsForResourceRequest < Struct.new(
|
4250
|
+
:resource_arn)
|
4251
|
+
SENSITIVE = []
|
4252
|
+
include Aws::Structure
|
4253
|
+
end
|
4254
|
+
|
4255
|
+
# @!attribute [rw] tags
|
4256
|
+
# The key-value pairs for the tags associated with the resource.
|
4257
|
+
# @return [Hash<String,String>]
|
4258
|
+
#
|
4259
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/ListTagsForResourceResponse AWS API Documentation
|
4260
|
+
#
|
4261
|
+
class ListTagsForResourceResponse < Struct.new(
|
4262
|
+
:tags)
|
4263
|
+
SENSITIVE = []
|
4264
|
+
include Aws::Structure
|
4265
|
+
end
|
4266
|
+
|
3473
4267
|
# Contains sessions summaries.
|
3474
4268
|
#
|
3475
4269
|
# @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.
|
@@ -4328,6 +5122,10 @@ module Aws::BedrockAgentRuntime
|
|
4328
5122
|
# [2]: https://docs.aws.amazon.com/bedrock/latest/userguide/advanced-prompts-configure.html
|
4329
5123
|
# @return [String]
|
4330
5124
|
#
|
5125
|
+
# @!attribute [rw] foundation_model
|
5126
|
+
# The foundation model to use.
|
5127
|
+
# @return [String]
|
5128
|
+
#
|
4331
5129
|
# @!attribute [rw] inference_configuration
|
4332
5130
|
# Contains inference parameters to use when the agent invokes a
|
4333
5131
|
# foundation model in the part of the agent sequence defined by the
|
@@ -4384,6 +5182,7 @@ module Aws::BedrockAgentRuntime
|
|
4384
5182
|
class PromptConfiguration < Struct.new(
|
4385
5183
|
:additional_model_request_fields,
|
4386
5184
|
:base_prompt_template,
|
5185
|
+
:foundation_model,
|
4387
5186
|
:inference_configuration,
|
4388
5187
|
:parser_mode,
|
4389
5188
|
:prompt_creation_mode,
|
@@ -4487,6 +5286,54 @@ module Aws::BedrockAgentRuntime
|
|
4487
5286
|
include Aws::Structure
|
4488
5287
|
end
|
4489
5288
|
|
5289
|
+
# @!attribute [rw] invocation_identifier
|
5290
|
+
# The unique identifier (in UUID format) of the invocation to add the
|
5291
|
+
# invocation step to.
|
5292
|
+
# @return [String]
|
5293
|
+
#
|
5294
|
+
# @!attribute [rw] invocation_step_id
|
5295
|
+
# The unique identifier of the invocation step in UUID format.
|
5296
|
+
# @return [String]
|
5297
|
+
#
|
5298
|
+
# @!attribute [rw] invocation_step_time
|
5299
|
+
# The timestamp for when the invocation step occurred.
|
5300
|
+
# @return [Time]
|
5301
|
+
#
|
5302
|
+
# @!attribute [rw] payload
|
5303
|
+
# The payload for the invocation step, including text and images for
|
5304
|
+
# the interaction.
|
5305
|
+
# @return [Types::InvocationStepPayload]
|
5306
|
+
#
|
5307
|
+
# @!attribute [rw] session_identifier
|
5308
|
+
# The unique identifier for the session to add the invocation step to.
|
5309
|
+
# You can specify either the session's `sessionId` or its Amazon
|
5310
|
+
# Resource Name (ARN).
|
5311
|
+
# @return [String]
|
5312
|
+
#
|
5313
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/PutInvocationStepRequest AWS API Documentation
|
5314
|
+
#
|
5315
|
+
class PutInvocationStepRequest < Struct.new(
|
5316
|
+
:invocation_identifier,
|
5317
|
+
:invocation_step_id,
|
5318
|
+
:invocation_step_time,
|
5319
|
+
:payload,
|
5320
|
+
:session_identifier)
|
5321
|
+
SENSITIVE = []
|
5322
|
+
include Aws::Structure
|
5323
|
+
end
|
5324
|
+
|
5325
|
+
# @!attribute [rw] invocation_step_id
|
5326
|
+
# The unique identifier of the invocation step in UUID format.
|
5327
|
+
# @return [String]
|
5328
|
+
#
|
5329
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/PutInvocationStepResponse AWS API Documentation
|
5330
|
+
#
|
5331
|
+
class PutInvocationStepResponse < Struct.new(
|
5332
|
+
:invocation_step_id)
|
5333
|
+
SENSITIVE = []
|
5334
|
+
include Aws::Structure
|
5335
|
+
end
|
5336
|
+
|
4490
5337
|
# Contains information about a natural language query to transform into
|
4491
5338
|
# SQL.
|
4492
5339
|
#
|
@@ -5363,8 +6210,8 @@ module Aws::BedrockAgentRuntime
|
|
5363
6210
|
# The type of resource that contains your data for retrieving
|
5364
6211
|
# information and generating responses.
|
5365
6212
|
#
|
5366
|
-
# If you choose
|
5367
|
-
# 3 Sonnet models for knowledge bases are supported.
|
6213
|
+
# If you choose to use `EXTERNAL_SOURCES`, then currently only
|
6214
|
+
# Anthropic Claude 3 Sonnet models for knowledge bases are supported.
|
5368
6215
|
# @return [String]
|
5369
6216
|
#
|
5370
6217
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/RetrieveAndGenerateConfiguration AWS API Documentation
|
@@ -5828,6 +6675,20 @@ module Aws::BedrockAgentRuntime
|
|
5828
6675
|
include Aws::Structure
|
5829
6676
|
end
|
5830
6677
|
|
6678
|
+
# Information about the Amazon S3 bucket where the image is stored.
|
6679
|
+
#
|
6680
|
+
# @!attribute [rw] uri
|
6681
|
+
# The path to the Amazon S3 bucket where the image is stored.
|
6682
|
+
# @return [String]
|
6683
|
+
#
|
6684
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/S3Location AWS API Documentation
|
6685
|
+
#
|
6686
|
+
class S3Location < Struct.new(
|
6687
|
+
:uri)
|
6688
|
+
SENSITIVE = []
|
6689
|
+
include Aws::Structure
|
6690
|
+
end
|
6691
|
+
|
5831
6692
|
# The unique wrapper object of the document from the S3 location.
|
5832
6693
|
#
|
5833
6694
|
# @!attribute [rw] uri
|
@@ -5958,6 +6819,46 @@ module Aws::BedrockAgentRuntime
|
|
5958
6819
|
include Aws::Structure
|
5959
6820
|
end
|
5960
6821
|
|
6822
|
+
# Contains details about a session. For more information about sessions,
|
6823
|
+
# see [Store and retrieve conversation history and context with Amazon
|
6824
|
+
# Bedrock sessions][1].
|
6825
|
+
#
|
6826
|
+
#
|
6827
|
+
#
|
6828
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/sessions.html
|
6829
|
+
#
|
6830
|
+
# @!attribute [rw] created_at
|
6831
|
+
# The timestamp for when the session was created.
|
6832
|
+
# @return [Time]
|
6833
|
+
#
|
6834
|
+
# @!attribute [rw] last_updated_at
|
6835
|
+
# The timestamp for when the session was last modified.
|
6836
|
+
# @return [Time]
|
6837
|
+
#
|
6838
|
+
# @!attribute [rw] session_arn
|
6839
|
+
# The Amazon Resource Name (ARN) of the session.
|
6840
|
+
# @return [String]
|
6841
|
+
#
|
6842
|
+
# @!attribute [rw] session_id
|
6843
|
+
# The unique identifier for the session.
|
6844
|
+
# @return [String]
|
6845
|
+
#
|
6846
|
+
# @!attribute [rw] session_status
|
6847
|
+
# The current status of the session.
|
6848
|
+
# @return [String]
|
6849
|
+
#
|
6850
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/SessionSummary AWS API Documentation
|
6851
|
+
#
|
6852
|
+
class SessionSummary < Struct.new(
|
6853
|
+
:created_at,
|
6854
|
+
:last_updated_at,
|
6855
|
+
:session_arn,
|
6856
|
+
:session_id,
|
6857
|
+
:session_status)
|
6858
|
+
SENSITIVE = []
|
6859
|
+
include Aws::Structure
|
6860
|
+
end
|
6861
|
+
|
5961
6862
|
# Contains information about where the text with a citation begins and
|
5962
6863
|
# ends in the generated output.
|
5963
6864
|
#
|
@@ -6009,6 +6910,28 @@ module Aws::BedrockAgentRuntime
|
|
6009
6910
|
include Aws::Structure
|
6010
6911
|
end
|
6011
6912
|
|
6913
|
+
# @!attribute [rw] resource_arn
|
6914
|
+
# The Amazon Resource Name (ARN) of the resource to tag.
|
6915
|
+
# @return [String]
|
6916
|
+
#
|
6917
|
+
# @!attribute [rw] tags
|
6918
|
+
# An object containing key-value pairs that define the tags to attach
|
6919
|
+
# to the resource.
|
6920
|
+
# @return [Hash<String,String>]
|
6921
|
+
#
|
6922
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/TagResourceRequest AWS API Documentation
|
6923
|
+
#
|
6924
|
+
class TagResourceRequest < Struct.new(
|
6925
|
+
:resource_arn,
|
6926
|
+
:tags)
|
6927
|
+
SENSITIVE = []
|
6928
|
+
include Aws::Structure
|
6929
|
+
end
|
6930
|
+
|
6931
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/TagResourceResponse AWS API Documentation
|
6932
|
+
#
|
6933
|
+
class TagResourceResponse < Aws::EmptyStructure; end
|
6934
|
+
|
6012
6935
|
# Configuration settings for text generation using a language model via
|
6013
6936
|
# the RetrieveAndGenerate operation. Includes parameters like
|
6014
6937
|
# temperature, top-p, maximum token count, and stop sequences.
|
@@ -6258,6 +7181,10 @@ module Aws::BedrockAgentRuntime
|
|
6258
7181
|
# The part's collaborator name.
|
6259
7182
|
# @return [String]
|
6260
7183
|
#
|
7184
|
+
# @!attribute [rw] event_time
|
7185
|
+
# The time of the trace.
|
7186
|
+
# @return [Time]
|
7187
|
+
#
|
6261
7188
|
# @!attribute [rw] session_id
|
6262
7189
|
# The unique identifier of the session with the agent.
|
6263
7190
|
# @return [String]
|
@@ -6282,6 +7209,7 @@ module Aws::BedrockAgentRuntime
|
|
6282
7209
|
:agent_version,
|
6283
7210
|
:caller_chain,
|
6284
7211
|
:collaborator_name,
|
7212
|
+
:event_time,
|
6285
7213
|
:session_id,
|
6286
7214
|
:trace,
|
6287
7215
|
:event_type)
|
@@ -6309,6 +7237,80 @@ module Aws::BedrockAgentRuntime
|
|
6309
7237
|
include Aws::Structure
|
6310
7238
|
end
|
6311
7239
|
|
7240
|
+
# @!attribute [rw] resource_arn
|
7241
|
+
# The Amazon Resource Name (ARN) of the resource from which to remove
|
7242
|
+
# tags.
|
7243
|
+
# @return [String]
|
7244
|
+
#
|
7245
|
+
# @!attribute [rw] tag_keys
|
7246
|
+
# A list of keys of the tags to remove from the resource.
|
7247
|
+
# @return [Array<String>]
|
7248
|
+
#
|
7249
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/UntagResourceRequest AWS API Documentation
|
7250
|
+
#
|
7251
|
+
class UntagResourceRequest < Struct.new(
|
7252
|
+
:resource_arn,
|
7253
|
+
:tag_keys)
|
7254
|
+
SENSITIVE = []
|
7255
|
+
include Aws::Structure
|
7256
|
+
end
|
7257
|
+
|
7258
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/UntagResourceResponse AWS API Documentation
|
7259
|
+
#
|
7260
|
+
class UntagResourceResponse < Aws::EmptyStructure; end
|
7261
|
+
|
7262
|
+
# @!attribute [rw] session_identifier
|
7263
|
+
# The unique identifier of the session to modify. You can specify
|
7264
|
+
# either the session's `sessionId` or its Amazon Resource Name (ARN).
|
7265
|
+
# @return [String]
|
7266
|
+
#
|
7267
|
+
# @!attribute [rw] session_metadata
|
7268
|
+
# A map of key-value pairs containing attributes to be persisted
|
7269
|
+
# across the session. For example the user's ID, their language
|
7270
|
+
# preference, and the type of device they are using.
|
7271
|
+
# @return [Hash<String,String>]
|
7272
|
+
#
|
7273
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/UpdateSessionRequest AWS API Documentation
|
7274
|
+
#
|
7275
|
+
class UpdateSessionRequest < Struct.new(
|
7276
|
+
:session_identifier,
|
7277
|
+
:session_metadata)
|
7278
|
+
SENSITIVE = []
|
7279
|
+
include Aws::Structure
|
7280
|
+
end
|
7281
|
+
|
7282
|
+
# @!attribute [rw] created_at
|
7283
|
+
# The timestamp for when the session was created.
|
7284
|
+
# @return [Time]
|
7285
|
+
#
|
7286
|
+
# @!attribute [rw] last_updated_at
|
7287
|
+
# The timestamp for when the session was last modified.
|
7288
|
+
# @return [Time]
|
7289
|
+
#
|
7290
|
+
# @!attribute [rw] session_arn
|
7291
|
+
# The Amazon Resource Name (ARN) of the session that was updated.
|
7292
|
+
# @return [String]
|
7293
|
+
#
|
7294
|
+
# @!attribute [rw] session_id
|
7295
|
+
# The unique identifier of the session you updated.
|
7296
|
+
# @return [String]
|
7297
|
+
#
|
7298
|
+
# @!attribute [rw] session_status
|
7299
|
+
# The status of the session you updated.
|
7300
|
+
# @return [String]
|
7301
|
+
#
|
7302
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/UpdateSessionResponse AWS API Documentation
|
7303
|
+
#
|
7304
|
+
class UpdateSessionResponse < Struct.new(
|
7305
|
+
:created_at,
|
7306
|
+
:last_updated_at,
|
7307
|
+
:session_arn,
|
7308
|
+
:session_id,
|
7309
|
+
:session_status)
|
7310
|
+
SENSITIVE = []
|
7311
|
+
include Aws::Structure
|
7312
|
+
end
|
7313
|
+
|
6312
7314
|
# Contains information of the usage of the foundation model.
|
6313
7315
|
#
|
6314
7316
|
# @!attribute [rw] input_tokens
|