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
@@ -481,6 +481,162 @@ module Aws::BedrockAgentRuntime
|
|
481
481
|
|
482
482
|
# @!group API Operations
|
483
483
|
|
484
|
+
# Creates a new invocation within a session. An invocation groups the
|
485
|
+
# related invocation steps that store the content from a conversation.
|
486
|
+
# For more information about sessions, see [Store and retrieve
|
487
|
+
# conversation history and context with Amazon Bedrock sessions][1].
|
488
|
+
#
|
489
|
+
# Related APIs
|
490
|
+
#
|
491
|
+
# * [ListInvocations][2]
|
492
|
+
#
|
493
|
+
# * [ListSessions][3]
|
494
|
+
#
|
495
|
+
# * [GetSession][4]
|
496
|
+
#
|
497
|
+
#
|
498
|
+
#
|
499
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/sessions.html
|
500
|
+
# [2]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_ListInvocations.html
|
501
|
+
# [3]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_ListSessions.html
|
502
|
+
# [4]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_GetSession.html
|
503
|
+
#
|
504
|
+
# @option params [String] :description
|
505
|
+
# A description for the interactions in the invocation. For example,
|
506
|
+
# "User asking about weather in Seattle".
|
507
|
+
#
|
508
|
+
# @option params [String] :invocation_id
|
509
|
+
# A unique identifier for the invocation in UUID format.
|
510
|
+
#
|
511
|
+
# @option params [required, String] :session_identifier
|
512
|
+
# The unique identifier for the associated session for the invocation.
|
513
|
+
# You can specify either the session's `sessionId` or its Amazon
|
514
|
+
# Resource Name (ARN).
|
515
|
+
#
|
516
|
+
# @return [Types::CreateInvocationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
517
|
+
#
|
518
|
+
# * {Types::CreateInvocationResponse#created_at #created_at} => Time
|
519
|
+
# * {Types::CreateInvocationResponse#invocation_id #invocation_id} => String
|
520
|
+
# * {Types::CreateInvocationResponse#session_id #session_id} => String
|
521
|
+
#
|
522
|
+
# @example Request syntax with placeholder values
|
523
|
+
#
|
524
|
+
# resp = client.create_invocation({
|
525
|
+
# description: "InvocationDescription",
|
526
|
+
# invocation_id: "Uuid",
|
527
|
+
# session_identifier: "SessionIdentifier", # required
|
528
|
+
# })
|
529
|
+
#
|
530
|
+
# @example Response structure
|
531
|
+
#
|
532
|
+
# resp.created_at #=> Time
|
533
|
+
# resp.invocation_id #=> String
|
534
|
+
# resp.session_id #=> String
|
535
|
+
#
|
536
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/CreateInvocation AWS API Documentation
|
537
|
+
#
|
538
|
+
# @overload create_invocation(params = {})
|
539
|
+
# @param [Hash] params ({})
|
540
|
+
def create_invocation(params = {}, options = {})
|
541
|
+
req = build_request(:create_invocation, params)
|
542
|
+
req.send_request(options)
|
543
|
+
end
|
544
|
+
|
545
|
+
# Creates a session to temporarily store conversations for generative AI
|
546
|
+
# (GenAI) applications built with open-source frameworks such as
|
547
|
+
# LangGraph and LlamaIndex. Sessions enable you to save the state of
|
548
|
+
# conversations at checkpoints, with the added security and
|
549
|
+
# infrastructure of Amazon Web Services. For more information, see
|
550
|
+
# [Store and retrieve conversation history and context with Amazon
|
551
|
+
# Bedrock sessions][1].
|
552
|
+
#
|
553
|
+
# By default, Amazon Bedrock uses Amazon Web Services-managed keys for
|
554
|
+
# session encryption, including session metadata, or you can use your
|
555
|
+
# own KMS key. For more information, see [Amazon Bedrock session
|
556
|
+
# encryption][2].
|
557
|
+
#
|
558
|
+
# <note markdown="1"> You use a session to store state and conversation history for
|
559
|
+
# generative AI applications built with open-source frameworks. For
|
560
|
+
# Amazon Bedrock Agents, the service automatically manages conversation
|
561
|
+
# context and associates them with the agent-specific sessionId you
|
562
|
+
# specify in the [InvokeAgent][3] API operation.
|
563
|
+
#
|
564
|
+
# </note>
|
565
|
+
#
|
566
|
+
# Related APIs:
|
567
|
+
#
|
568
|
+
# * [ListSessions][4]
|
569
|
+
#
|
570
|
+
# * [GetSession][5]
|
571
|
+
#
|
572
|
+
# * [EndSession][6]
|
573
|
+
#
|
574
|
+
# * [DeleteSession][7]
|
575
|
+
#
|
576
|
+
#
|
577
|
+
#
|
578
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/sessions.html
|
579
|
+
# [2]: https://docs.aws.amazon.com/bedrock/latest/userguide/session-encryption.html
|
580
|
+
# [3]: https://docs.aws.amazon.com/bedrock/latest/API_agent-runtime_InvokeAgent.html
|
581
|
+
# [4]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_ListSessions.html
|
582
|
+
# [5]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_GetSession.html
|
583
|
+
# [6]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_EndSession.html
|
584
|
+
# [7]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_DeleteSession.html
|
585
|
+
#
|
586
|
+
# @option params [String] :encryption_key_arn
|
587
|
+
# The Amazon Resource Name (ARN) of the KMS key to use to encrypt the
|
588
|
+
# session data. The user or role creating the session must have
|
589
|
+
# permission to use the key. For more information, see [Amazon Bedrock
|
590
|
+
# session encryption][1].
|
591
|
+
#
|
592
|
+
#
|
593
|
+
#
|
594
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/session-encryption.html
|
595
|
+
#
|
596
|
+
# @option params [Hash<String,String>] :session_metadata
|
597
|
+
# A map of key-value pairs containing attributes to be persisted across
|
598
|
+
# the session. For example, the user's ID, their language preference,
|
599
|
+
# and the type of device they are using.
|
600
|
+
#
|
601
|
+
# @option params [Hash<String,String>] :tags
|
602
|
+
# Specify the key-value pairs for the tags that you want to attach to
|
603
|
+
# the session.
|
604
|
+
#
|
605
|
+
# @return [Types::CreateSessionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
606
|
+
#
|
607
|
+
# * {Types::CreateSessionResponse#created_at #created_at} => Time
|
608
|
+
# * {Types::CreateSessionResponse#session_arn #session_arn} => String
|
609
|
+
# * {Types::CreateSessionResponse#session_id #session_id} => String
|
610
|
+
# * {Types::CreateSessionResponse#session_status #session_status} => String
|
611
|
+
#
|
612
|
+
# @example Request syntax with placeholder values
|
613
|
+
#
|
614
|
+
# resp = client.create_session({
|
615
|
+
# encryption_key_arn: "KmsKeyArn",
|
616
|
+
# session_metadata: {
|
617
|
+
# "SessionMetadataKey" => "SessionMetadataValue",
|
618
|
+
# },
|
619
|
+
# tags: {
|
620
|
+
# "TagKey" => "TagValue",
|
621
|
+
# },
|
622
|
+
# })
|
623
|
+
#
|
624
|
+
# @example Response structure
|
625
|
+
#
|
626
|
+
# resp.created_at #=> Time
|
627
|
+
# resp.session_arn #=> String
|
628
|
+
# resp.session_id #=> String
|
629
|
+
# resp.session_status #=> String, one of "ACTIVE", "EXPIRED", "ENDED"
|
630
|
+
#
|
631
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/CreateSession AWS API Documentation
|
632
|
+
#
|
633
|
+
# @overload create_session(params = {})
|
634
|
+
# @param [Hash] params ({})
|
635
|
+
def create_session(params = {}, options = {})
|
636
|
+
req = build_request(:create_session, params)
|
637
|
+
req.send_request(options)
|
638
|
+
end
|
639
|
+
|
484
640
|
# Deletes memory from the specified memory identifier.
|
485
641
|
#
|
486
642
|
# @option params [required, String] :agent_alias_id
|
@@ -515,6 +671,79 @@ module Aws::BedrockAgentRuntime
|
|
515
671
|
req.send_request(options)
|
516
672
|
end
|
517
673
|
|
674
|
+
# Deletes a session that you ended. You can't delete a session with an
|
675
|
+
# `ACTIVE` status. To delete an active session, you must first end it
|
676
|
+
# with the [EndSession][1] API operation. For more information about
|
677
|
+
# sessions, see [Store and retrieve conversation history and context
|
678
|
+
# with Amazon Bedrock sessions][2].
|
679
|
+
#
|
680
|
+
#
|
681
|
+
#
|
682
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_EndSession.html
|
683
|
+
# [2]: https://docs.aws.amazon.com/bedrock/latest/userguide/sessions.html
|
684
|
+
#
|
685
|
+
# @option params [required, String] :session_identifier
|
686
|
+
# The unique identifier for the session to be deleted. You can specify
|
687
|
+
# either the session's `sessionId` or its Amazon Resource Name (ARN).
|
688
|
+
#
|
689
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
690
|
+
#
|
691
|
+
# @example Request syntax with placeholder values
|
692
|
+
#
|
693
|
+
# resp = client.delete_session({
|
694
|
+
# session_identifier: "SessionIdentifier", # required
|
695
|
+
# })
|
696
|
+
#
|
697
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/DeleteSession AWS API Documentation
|
698
|
+
#
|
699
|
+
# @overload delete_session(params = {})
|
700
|
+
# @param [Hash] params ({})
|
701
|
+
def delete_session(params = {}, options = {})
|
702
|
+
req = build_request(:delete_session, params)
|
703
|
+
req.send_request(options)
|
704
|
+
end
|
705
|
+
|
706
|
+
# Ends the session. After you end a session, you can still access its
|
707
|
+
# content but you can’t add to it. To delete the session and it's
|
708
|
+
# content, you use the DeleteSession API operation. For more information
|
709
|
+
# about sessions, see [Store and retrieve conversation history and
|
710
|
+
# context with Amazon Bedrock sessions][1].
|
711
|
+
#
|
712
|
+
#
|
713
|
+
#
|
714
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/sessions.html
|
715
|
+
#
|
716
|
+
# @option params [required, String] :session_identifier
|
717
|
+
# The unique identifier for the session to end. You can specify either
|
718
|
+
# the session's `sessionId` or its Amazon Resource Name (ARN).
|
719
|
+
#
|
720
|
+
# @return [Types::EndSessionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
721
|
+
#
|
722
|
+
# * {Types::EndSessionResponse#session_arn #session_arn} => String
|
723
|
+
# * {Types::EndSessionResponse#session_id #session_id} => String
|
724
|
+
# * {Types::EndSessionResponse#session_status #session_status} => String
|
725
|
+
#
|
726
|
+
# @example Request syntax with placeholder values
|
727
|
+
#
|
728
|
+
# resp = client.end_session({
|
729
|
+
# session_identifier: "SessionIdentifier", # required
|
730
|
+
# })
|
731
|
+
#
|
732
|
+
# @example Response structure
|
733
|
+
#
|
734
|
+
# resp.session_arn #=> String
|
735
|
+
# resp.session_id #=> String
|
736
|
+
# resp.session_status #=> String, one of "ACTIVE", "EXPIRED", "ENDED"
|
737
|
+
#
|
738
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/EndSession AWS API Documentation
|
739
|
+
#
|
740
|
+
# @overload end_session(params = {})
|
741
|
+
# @param [Hash] params ({})
|
742
|
+
def end_session(params = {}, options = {})
|
743
|
+
req = build_request(:end_session, params)
|
744
|
+
req.send_request(options)
|
745
|
+
end
|
746
|
+
|
518
747
|
# Generates an SQL query from a natural language query. For more
|
519
748
|
# information, see [Generate a query for structured data][1] in the
|
520
749
|
# Amazon Bedrock User Guide.
|
@@ -631,6 +860,108 @@ module Aws::BedrockAgentRuntime
|
|
631
860
|
req.send_request(options)
|
632
861
|
end
|
633
862
|
|
863
|
+
# Retrieves the details of a specific invocation step within an
|
864
|
+
# invocation in a session. For more information about sessions, see
|
865
|
+
# [Store and retrieve conversation history and context with Amazon
|
866
|
+
# Bedrock sessions][1].
|
867
|
+
#
|
868
|
+
#
|
869
|
+
#
|
870
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/sessions.html
|
871
|
+
#
|
872
|
+
# @option params [required, String] :invocation_identifier
|
873
|
+
# The unique identifier for the invocation in UUID format.
|
874
|
+
#
|
875
|
+
# @option params [required, String] :invocation_step_id
|
876
|
+
# The unique identifier (in UUID format) for the specific invocation
|
877
|
+
# step to retrieve.
|
878
|
+
#
|
879
|
+
# @option params [required, String] :session_identifier
|
880
|
+
# The unique identifier for the invocation step's associated session.
|
881
|
+
# You can specify either the session's `sessionId` or its Amazon
|
882
|
+
# Resource Name (ARN).
|
883
|
+
#
|
884
|
+
# @return [Types::GetInvocationStepResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
885
|
+
#
|
886
|
+
# * {Types::GetInvocationStepResponse#invocation_step #invocation_step} => Types::InvocationStep
|
887
|
+
#
|
888
|
+
# @example Request syntax with placeholder values
|
889
|
+
#
|
890
|
+
# resp = client.get_invocation_step({
|
891
|
+
# invocation_identifier: "InvocationIdentifier", # required
|
892
|
+
# invocation_step_id: "Uuid", # required
|
893
|
+
# session_identifier: "SessionIdentifier", # required
|
894
|
+
# })
|
895
|
+
#
|
896
|
+
# @example Response structure
|
897
|
+
#
|
898
|
+
# resp.invocation_step.invocation_id #=> String
|
899
|
+
# resp.invocation_step.invocation_step_id #=> String
|
900
|
+
# resp.invocation_step.invocation_step_time #=> Time
|
901
|
+
# resp.invocation_step.payload.content_blocks #=> Array
|
902
|
+
# resp.invocation_step.payload.content_blocks[0].image.format #=> String, one of "png", "jpeg", "gif", "webp"
|
903
|
+
# resp.invocation_step.payload.content_blocks[0].image.source.bytes #=> String
|
904
|
+
# resp.invocation_step.payload.content_blocks[0].image.source.s3_location.uri #=> String
|
905
|
+
# resp.invocation_step.payload.content_blocks[0].text #=> String
|
906
|
+
# resp.invocation_step.session_id #=> String
|
907
|
+
#
|
908
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/GetInvocationStep AWS API Documentation
|
909
|
+
#
|
910
|
+
# @overload get_invocation_step(params = {})
|
911
|
+
# @param [Hash] params ({})
|
912
|
+
def get_invocation_step(params = {}, options = {})
|
913
|
+
req = build_request(:get_invocation_step, params)
|
914
|
+
req.send_request(options)
|
915
|
+
end
|
916
|
+
|
917
|
+
# Retrieves details about a specific session. For more information about
|
918
|
+
# sessions, see [Store and retrieve conversation history and context
|
919
|
+
# with Amazon Bedrock sessions][1].
|
920
|
+
#
|
921
|
+
#
|
922
|
+
#
|
923
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/sessions.html
|
924
|
+
#
|
925
|
+
# @option params [required, String] :session_identifier
|
926
|
+
# A unique identifier for the session to retrieve. You can specify
|
927
|
+
# either the session's `sessionId` or its Amazon Resource Name (ARN).
|
928
|
+
#
|
929
|
+
# @return [Types::GetSessionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
930
|
+
#
|
931
|
+
# * {Types::GetSessionResponse#created_at #created_at} => Time
|
932
|
+
# * {Types::GetSessionResponse#encryption_key_arn #encryption_key_arn} => String
|
933
|
+
# * {Types::GetSessionResponse#last_updated_at #last_updated_at} => Time
|
934
|
+
# * {Types::GetSessionResponse#session_arn #session_arn} => String
|
935
|
+
# * {Types::GetSessionResponse#session_id #session_id} => String
|
936
|
+
# * {Types::GetSessionResponse#session_metadata #session_metadata} => Hash<String,String>
|
937
|
+
# * {Types::GetSessionResponse#session_status #session_status} => String
|
938
|
+
#
|
939
|
+
# @example Request syntax with placeholder values
|
940
|
+
#
|
941
|
+
# resp = client.get_session({
|
942
|
+
# session_identifier: "SessionIdentifier", # required
|
943
|
+
# })
|
944
|
+
#
|
945
|
+
# @example Response structure
|
946
|
+
#
|
947
|
+
# resp.created_at #=> Time
|
948
|
+
# resp.encryption_key_arn #=> String
|
949
|
+
# resp.last_updated_at #=> Time
|
950
|
+
# resp.session_arn #=> String
|
951
|
+
# resp.session_id #=> String
|
952
|
+
# resp.session_metadata #=> Hash
|
953
|
+
# resp.session_metadata["SessionMetadataKey"] #=> String
|
954
|
+
# resp.session_status #=> String, one of "ACTIVE", "EXPIRED", "ENDED"
|
955
|
+
#
|
956
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/GetSession AWS API Documentation
|
957
|
+
#
|
958
|
+
# @overload get_session(params = {})
|
959
|
+
# @param [Hash] params ({})
|
960
|
+
def get_session(params = {}, options = {})
|
961
|
+
req = build_request(:get_session, params)
|
962
|
+
req.send_request(options)
|
963
|
+
end
|
964
|
+
|
634
965
|
# <note> </note>
|
635
966
|
#
|
636
967
|
# Sends a prompt for the agent to process and respond to. Note the
|
@@ -1255,6 +1586,7 @@ module Aws::BedrockAgentRuntime
|
|
1255
1586
|
# event.caller_chain #=> Array
|
1256
1587
|
# event.caller_chain[0].agent_alias_arn #=> String
|
1257
1588
|
# event.collaborator_name #=> String
|
1589
|
+
# event.event_time #=> Time
|
1258
1590
|
# event.session_id #=> String
|
1259
1591
|
# event.trace.custom_orchestration_trace.event.text #=> String
|
1260
1592
|
# event.trace.custom_orchestration_trace.trace_id #=> String
|
@@ -2017,9 +2349,25 @@ module Aws::BedrockAgentRuntime
|
|
2017
2349
|
# A list of action groups with each action group defining the action the
|
2018
2350
|
# inline agent needs to carry out.
|
2019
2351
|
#
|
2352
|
+
# @option params [String] :agent_collaboration
|
2353
|
+
# Defines how the inline collaborator agent handles information across
|
2354
|
+
# multiple collaborator agents to coordinate a final response. The
|
2355
|
+
# inline collaborator agent can also be the supervisor.
|
2356
|
+
#
|
2020
2357
|
# @option params [Types::InlineBedrockModelConfigurations] :bedrock_model_configurations
|
2021
2358
|
# Model settings for the request.
|
2022
2359
|
#
|
2360
|
+
# @option params [Array<Types::CollaboratorConfiguration>] :collaborator_configurations
|
2361
|
+
# Settings for an inline agent collaborator called with
|
2362
|
+
# [InvokeInlineAgent][1].
|
2363
|
+
#
|
2364
|
+
#
|
2365
|
+
#
|
2366
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_InvokeInlineAgent.html
|
2367
|
+
#
|
2368
|
+
# @option params [Array<Types::Collaborator>] :collaborators
|
2369
|
+
# List of collaborator inline agents.
|
2370
|
+
#
|
2023
2371
|
# @option params [String] :customer_encryption_key_arn
|
2024
2372
|
# The Amazon Resource Name (ARN) of the Amazon Web Services KMS key to
|
2025
2373
|
# use to encrypt your inline agent.
|
@@ -2340,11 +2688,215 @@ module Aws::BedrockAgentRuntime
|
|
2340
2688
|
# parent_action_group_signature: "AMAZON.UserInput", # accepts AMAZON.UserInput, AMAZON.CodeInterpreter
|
2341
2689
|
# },
|
2342
2690
|
# ],
|
2691
|
+
# agent_collaboration: "SUPERVISOR", # accepts SUPERVISOR, SUPERVISOR_ROUTER, DISABLED
|
2343
2692
|
# bedrock_model_configurations: {
|
2344
2693
|
# performance_config: {
|
2345
2694
|
# latency: "standard", # accepts standard, optimized
|
2346
2695
|
# },
|
2347
2696
|
# },
|
2697
|
+
# collaborator_configurations: [
|
2698
|
+
# {
|
2699
|
+
# agent_alias_arn: "AgentAliasArn",
|
2700
|
+
# collaborator_instruction: "CollaborationInstruction", # required
|
2701
|
+
# collaborator_name: "Name", # required
|
2702
|
+
# relay_conversation_history: "TO_COLLABORATOR", # accepts TO_COLLABORATOR, DISABLED
|
2703
|
+
# },
|
2704
|
+
# ],
|
2705
|
+
# collaborators: [
|
2706
|
+
# {
|
2707
|
+
# action_groups: [
|
2708
|
+
# {
|
2709
|
+
# action_group_executor: {
|
2710
|
+
# custom_control: "RETURN_CONTROL", # accepts RETURN_CONTROL
|
2711
|
+
# lambda: "LambdaResourceArn",
|
2712
|
+
# },
|
2713
|
+
# action_group_name: "ResourceName", # required
|
2714
|
+
# api_schema: {
|
2715
|
+
# payload: "Payload",
|
2716
|
+
# s3: {
|
2717
|
+
# s3_bucket_name: "S3BucketName",
|
2718
|
+
# s3_object_key: "S3ObjectKey",
|
2719
|
+
# },
|
2720
|
+
# },
|
2721
|
+
# description: "ResourceDescription",
|
2722
|
+
# function_schema: {
|
2723
|
+
# functions: [
|
2724
|
+
# {
|
2725
|
+
# description: "FunctionDescription",
|
2726
|
+
# name: "ResourceName", # required
|
2727
|
+
# parameters: {
|
2728
|
+
# "ParameterName" => {
|
2729
|
+
# description: "ParameterDescription",
|
2730
|
+
# required: false,
|
2731
|
+
# type: "string", # required, accepts string, number, integer, boolean, array
|
2732
|
+
# },
|
2733
|
+
# },
|
2734
|
+
# require_confirmation: "ENABLED", # accepts ENABLED, DISABLED
|
2735
|
+
# },
|
2736
|
+
# ],
|
2737
|
+
# },
|
2738
|
+
# parent_action_group_signature: "AMAZON.UserInput", # accepts AMAZON.UserInput, AMAZON.CodeInterpreter
|
2739
|
+
# },
|
2740
|
+
# ],
|
2741
|
+
# agent_collaboration: "SUPERVISOR", # accepts SUPERVISOR, SUPERVISOR_ROUTER, DISABLED
|
2742
|
+
# agent_name: "Name",
|
2743
|
+
# collaborator_configurations: [
|
2744
|
+
# {
|
2745
|
+
# agent_alias_arn: "AgentAliasArn",
|
2746
|
+
# collaborator_instruction: "CollaborationInstruction", # required
|
2747
|
+
# collaborator_name: "Name", # required
|
2748
|
+
# relay_conversation_history: "TO_COLLABORATOR", # accepts TO_COLLABORATOR, DISABLED
|
2749
|
+
# },
|
2750
|
+
# ],
|
2751
|
+
# customer_encryption_key_arn: "KmsKeyArn",
|
2752
|
+
# foundation_model: "ModelIdentifier", # required
|
2753
|
+
# guardrail_configuration: {
|
2754
|
+
# guardrail_identifier: "GuardrailIdentifierWithArn", # required
|
2755
|
+
# guardrail_version: "GuardrailVersion", # required
|
2756
|
+
# },
|
2757
|
+
# idle_session_ttl_in_seconds: 1,
|
2758
|
+
# instruction: "Instruction", # required
|
2759
|
+
# knowledge_bases: [
|
2760
|
+
# {
|
2761
|
+
# description: "ResourceDescription", # required
|
2762
|
+
# knowledge_base_id: "KnowledgeBaseId", # required
|
2763
|
+
# retrieval_configuration: {
|
2764
|
+
# vector_search_configuration: { # required
|
2765
|
+
# filter: {
|
2766
|
+
# and_all: [
|
2767
|
+
# {
|
2768
|
+
# # recursive RetrievalFilter
|
2769
|
+
# },
|
2770
|
+
# ],
|
2771
|
+
# equals: {
|
2772
|
+
# key: "FilterKey", # required
|
2773
|
+
# value: { # required
|
2774
|
+
# },
|
2775
|
+
# },
|
2776
|
+
# greater_than: {
|
2777
|
+
# key: "FilterKey", # required
|
2778
|
+
# value: { # required
|
2779
|
+
# },
|
2780
|
+
# },
|
2781
|
+
# greater_than_or_equals: {
|
2782
|
+
# key: "FilterKey", # required
|
2783
|
+
# value: { # required
|
2784
|
+
# },
|
2785
|
+
# },
|
2786
|
+
# in: {
|
2787
|
+
# key: "FilterKey", # required
|
2788
|
+
# value: { # required
|
2789
|
+
# },
|
2790
|
+
# },
|
2791
|
+
# less_than: {
|
2792
|
+
# key: "FilterKey", # required
|
2793
|
+
# value: { # required
|
2794
|
+
# },
|
2795
|
+
# },
|
2796
|
+
# less_than_or_equals: {
|
2797
|
+
# key: "FilterKey", # required
|
2798
|
+
# value: { # required
|
2799
|
+
# },
|
2800
|
+
# },
|
2801
|
+
# list_contains: {
|
2802
|
+
# key: "FilterKey", # required
|
2803
|
+
# value: { # required
|
2804
|
+
# },
|
2805
|
+
# },
|
2806
|
+
# not_equals: {
|
2807
|
+
# key: "FilterKey", # required
|
2808
|
+
# value: { # required
|
2809
|
+
# },
|
2810
|
+
# },
|
2811
|
+
# not_in: {
|
2812
|
+
# key: "FilterKey", # required
|
2813
|
+
# value: { # required
|
2814
|
+
# },
|
2815
|
+
# },
|
2816
|
+
# or_all: [
|
2817
|
+
# {
|
2818
|
+
# # recursive RetrievalFilter
|
2819
|
+
# },
|
2820
|
+
# ],
|
2821
|
+
# starts_with: {
|
2822
|
+
# key: "FilterKey", # required
|
2823
|
+
# value: { # required
|
2824
|
+
# },
|
2825
|
+
# },
|
2826
|
+
# string_contains: {
|
2827
|
+
# key: "FilterKey", # required
|
2828
|
+
# value: { # required
|
2829
|
+
# },
|
2830
|
+
# },
|
2831
|
+
# },
|
2832
|
+
# implicit_filter_configuration: {
|
2833
|
+
# metadata_attributes: [ # required
|
2834
|
+
# {
|
2835
|
+
# description: "MetadataAttributeSchemaDescriptionString", # required
|
2836
|
+
# key: "MetadataAttributeSchemaKeyString", # required
|
2837
|
+
# type: "STRING", # required, accepts STRING, NUMBER, BOOLEAN, STRING_LIST
|
2838
|
+
# },
|
2839
|
+
# ],
|
2840
|
+
# model_arn: "BedrockModelArn", # required
|
2841
|
+
# },
|
2842
|
+
# number_of_results: 1,
|
2843
|
+
# override_search_type: "HYBRID", # accepts HYBRID, SEMANTIC
|
2844
|
+
# reranking_configuration: {
|
2845
|
+
# bedrock_reranking_configuration: {
|
2846
|
+
# metadata_configuration: {
|
2847
|
+
# selection_mode: "SELECTIVE", # required, accepts SELECTIVE, ALL
|
2848
|
+
# selective_mode_configuration: {
|
2849
|
+
# fields_to_exclude: [
|
2850
|
+
# {
|
2851
|
+
# field_name: "FieldForRerankingFieldNameString", # required
|
2852
|
+
# },
|
2853
|
+
# ],
|
2854
|
+
# fields_to_include: [
|
2855
|
+
# {
|
2856
|
+
# field_name: "FieldForRerankingFieldNameString", # required
|
2857
|
+
# },
|
2858
|
+
# ],
|
2859
|
+
# },
|
2860
|
+
# },
|
2861
|
+
# model_configuration: { # required
|
2862
|
+
# additional_model_request_fields: {
|
2863
|
+
# "AdditionalModelRequestFieldsKey" => {
|
2864
|
+
# },
|
2865
|
+
# },
|
2866
|
+
# model_arn: "BedrockRerankingModelArn", # required
|
2867
|
+
# },
|
2868
|
+
# number_of_reranked_results: 1,
|
2869
|
+
# },
|
2870
|
+
# type: "BEDROCK_RERANKING_MODEL", # required, accepts BEDROCK_RERANKING_MODEL
|
2871
|
+
# },
|
2872
|
+
# },
|
2873
|
+
# },
|
2874
|
+
# },
|
2875
|
+
# ],
|
2876
|
+
# prompt_override_configuration: {
|
2877
|
+
# override_lambda: "LambdaResourceArn",
|
2878
|
+
# prompt_configurations: [ # required
|
2879
|
+
# {
|
2880
|
+
# additional_model_request_fields: {
|
2881
|
+
# },
|
2882
|
+
# base_prompt_template: "BasePromptTemplate",
|
2883
|
+
# foundation_model: "ModelIdentifier",
|
2884
|
+
# inference_configuration: {
|
2885
|
+
# maximum_length: 1,
|
2886
|
+
# stop_sequences: ["String"],
|
2887
|
+
# temperature: 1.0,
|
2888
|
+
# top_k: 1,
|
2889
|
+
# top_p: 1.0,
|
2890
|
+
# },
|
2891
|
+
# parser_mode: "DEFAULT", # accepts DEFAULT, OVERRIDDEN
|
2892
|
+
# prompt_creation_mode: "DEFAULT", # accepts DEFAULT, OVERRIDDEN
|
2893
|
+
# prompt_state: "ENABLED", # accepts ENABLED, DISABLED
|
2894
|
+
# prompt_type: "PRE_PROCESSING", # accepts PRE_PROCESSING, ORCHESTRATION, KNOWLEDGE_BASE_RESPONSE_GENERATION, POST_PROCESSING, ROUTING_CLASSIFIER
|
2895
|
+
# },
|
2896
|
+
# ],
|
2897
|
+
# },
|
2898
|
+
# },
|
2899
|
+
# ],
|
2348
2900
|
# customer_encryption_key_arn: "KmsKeyArn",
|
2349
2901
|
# enable_trace: false,
|
2350
2902
|
# end_session: false,
|
@@ -2355,6 +2907,18 @@ module Aws::BedrockAgentRuntime
|
|
2355
2907
|
# },
|
2356
2908
|
# idle_session_ttl_in_seconds: 1,
|
2357
2909
|
# inline_session_state: {
|
2910
|
+
# conversation_history: {
|
2911
|
+
# messages: [
|
2912
|
+
# {
|
2913
|
+
# content: [ # required
|
2914
|
+
# {
|
2915
|
+
# text: "String",
|
2916
|
+
# },
|
2917
|
+
# ],
|
2918
|
+
# role: "user", # required, accepts user, assistant
|
2919
|
+
# },
|
2920
|
+
# ],
|
2921
|
+
# },
|
2358
2922
|
# files: [
|
2359
2923
|
# {
|
2360
2924
|
# name: "String", # required
|
@@ -2535,6 +3099,7 @@ module Aws::BedrockAgentRuntime
|
|
2535
3099
|
# additional_model_request_fields: {
|
2536
3100
|
# },
|
2537
3101
|
# base_prompt_template: "BasePromptTemplate",
|
3102
|
+
# foundation_model: "ModelIdentifier",
|
2538
3103
|
# inference_configuration: {
|
2539
3104
|
# maximum_length: 1,
|
2540
3105
|
# stop_sequences: ["String"],
|
@@ -3028,6 +3593,209 @@ module Aws::BedrockAgentRuntime
|
|
3028
3593
|
req.send_request(options, &block)
|
3029
3594
|
end
|
3030
3595
|
|
3596
|
+
# Lists all invocation steps associated with a session and optionally,
|
3597
|
+
# an invocation within the session. For more information about sessions,
|
3598
|
+
# see [Store and retrieve conversation history and context with Amazon
|
3599
|
+
# Bedrock sessions][1].
|
3600
|
+
#
|
3601
|
+
#
|
3602
|
+
#
|
3603
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/sessions.html
|
3604
|
+
#
|
3605
|
+
# @option params [String] :invocation_identifier
|
3606
|
+
# The unique identifier (in UUID format) for the invocation to list
|
3607
|
+
# invocation steps for.
|
3608
|
+
#
|
3609
|
+
# @option params [Integer] :max_results
|
3610
|
+
# The maximum number of results to return in the response. If the total
|
3611
|
+
# number of results is greater than this value, use the token returned
|
3612
|
+
# in the response in the `nextToken` field when making another request
|
3613
|
+
# to return the next batch of results.
|
3614
|
+
#
|
3615
|
+
# @option params [String] :next_token
|
3616
|
+
# If the total number of results is greater than the `maxResults` value
|
3617
|
+
# provided in the request, enter the token returned in the `nextToken`
|
3618
|
+
# field in the response in this field to return the next batch of
|
3619
|
+
# results.
|
3620
|
+
#
|
3621
|
+
# @option params [required, String] :session_identifier
|
3622
|
+
# The unique identifier for the session associated with the invocation
|
3623
|
+
# steps. You can specify either the session's `sessionId` or its Amazon
|
3624
|
+
# Resource Name (ARN).
|
3625
|
+
#
|
3626
|
+
# @return [Types::ListInvocationStepsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3627
|
+
#
|
3628
|
+
# * {Types::ListInvocationStepsResponse#invocation_step_summaries #invocation_step_summaries} => Array<Types::InvocationStepSummary>
|
3629
|
+
# * {Types::ListInvocationStepsResponse#next_token #next_token} => String
|
3630
|
+
#
|
3631
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3632
|
+
#
|
3633
|
+
# @example Request syntax with placeholder values
|
3634
|
+
#
|
3635
|
+
# resp = client.list_invocation_steps({
|
3636
|
+
# invocation_identifier: "InvocationIdentifier",
|
3637
|
+
# max_results: 1,
|
3638
|
+
# next_token: "NextToken",
|
3639
|
+
# session_identifier: "SessionIdentifier", # required
|
3640
|
+
# })
|
3641
|
+
#
|
3642
|
+
# @example Response structure
|
3643
|
+
#
|
3644
|
+
# resp.invocation_step_summaries #=> Array
|
3645
|
+
# resp.invocation_step_summaries[0].invocation_id #=> String
|
3646
|
+
# resp.invocation_step_summaries[0].invocation_step_id #=> String
|
3647
|
+
# resp.invocation_step_summaries[0].invocation_step_time #=> Time
|
3648
|
+
# resp.invocation_step_summaries[0].session_id #=> String
|
3649
|
+
# resp.next_token #=> String
|
3650
|
+
#
|
3651
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/ListInvocationSteps AWS API Documentation
|
3652
|
+
#
|
3653
|
+
# @overload list_invocation_steps(params = {})
|
3654
|
+
# @param [Hash] params ({})
|
3655
|
+
def list_invocation_steps(params = {}, options = {})
|
3656
|
+
req = build_request(:list_invocation_steps, params)
|
3657
|
+
req.send_request(options)
|
3658
|
+
end
|
3659
|
+
|
3660
|
+
# Lists all invocations associated with a specific session. For more
|
3661
|
+
# information about sessions, see [Store and retrieve conversation
|
3662
|
+
# history and context with Amazon Bedrock sessions][1].
|
3663
|
+
#
|
3664
|
+
#
|
3665
|
+
#
|
3666
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/sessions.html
|
3667
|
+
#
|
3668
|
+
# @option params [Integer] :max_results
|
3669
|
+
# The maximum number of results to return in the response. If the total
|
3670
|
+
# number of results is greater than this value, use the token returned
|
3671
|
+
# in the response in the `nextToken` field when making another request
|
3672
|
+
# to return the next batch of results.
|
3673
|
+
#
|
3674
|
+
# @option params [String] :next_token
|
3675
|
+
# If the total number of results is greater than the `maxResults` value
|
3676
|
+
# provided in the request, enter the token returned in the `nextToken`
|
3677
|
+
# field in the response in this field to return the next batch of
|
3678
|
+
# results.
|
3679
|
+
#
|
3680
|
+
# @option params [required, String] :session_identifier
|
3681
|
+
# The unique identifier for the session to list invocations for. You can
|
3682
|
+
# specify either the session's `sessionId` or its Amazon Resource Name
|
3683
|
+
# (ARN).
|
3684
|
+
#
|
3685
|
+
# @return [Types::ListInvocationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3686
|
+
#
|
3687
|
+
# * {Types::ListInvocationsResponse#invocation_summaries #invocation_summaries} => Array<Types::InvocationSummary>
|
3688
|
+
# * {Types::ListInvocationsResponse#next_token #next_token} => String
|
3689
|
+
#
|
3690
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3691
|
+
#
|
3692
|
+
# @example Request syntax with placeholder values
|
3693
|
+
#
|
3694
|
+
# resp = client.list_invocations({
|
3695
|
+
# max_results: 1,
|
3696
|
+
# next_token: "NextToken",
|
3697
|
+
# session_identifier: "SessionIdentifier", # required
|
3698
|
+
# })
|
3699
|
+
#
|
3700
|
+
# @example Response structure
|
3701
|
+
#
|
3702
|
+
# resp.invocation_summaries #=> Array
|
3703
|
+
# resp.invocation_summaries[0].created_at #=> Time
|
3704
|
+
# resp.invocation_summaries[0].invocation_id #=> String
|
3705
|
+
# resp.invocation_summaries[0].session_id #=> String
|
3706
|
+
# resp.next_token #=> String
|
3707
|
+
#
|
3708
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/ListInvocations AWS API Documentation
|
3709
|
+
#
|
3710
|
+
# @overload list_invocations(params = {})
|
3711
|
+
# @param [Hash] params ({})
|
3712
|
+
def list_invocations(params = {}, options = {})
|
3713
|
+
req = build_request(:list_invocations, params)
|
3714
|
+
req.send_request(options)
|
3715
|
+
end
|
3716
|
+
|
3717
|
+
# Lists all sessions in your Amazon Web Services account. For more
|
3718
|
+
# information about sessions, see [Store and retrieve conversation
|
3719
|
+
# history and context with Amazon Bedrock sessions][1].
|
3720
|
+
#
|
3721
|
+
#
|
3722
|
+
#
|
3723
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/sessions.html
|
3724
|
+
#
|
3725
|
+
# @option params [Integer] :max_results
|
3726
|
+
# The maximum number of results to return in the response. If the total
|
3727
|
+
# number of results is greater than this value, use the token returned
|
3728
|
+
# in the response in the `nextToken` field when making another request
|
3729
|
+
# to return the next batch of results.
|
3730
|
+
#
|
3731
|
+
# @option params [String] :next_token
|
3732
|
+
# If the total number of results is greater than the `maxResults` value
|
3733
|
+
# provided in the request, enter the token returned in the `nextToken`
|
3734
|
+
# field in the response in this field to return the next batch of
|
3735
|
+
# results.
|
3736
|
+
#
|
3737
|
+
# @return [Types::ListSessionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3738
|
+
#
|
3739
|
+
# * {Types::ListSessionsResponse#next_token #next_token} => String
|
3740
|
+
# * {Types::ListSessionsResponse#session_summaries #session_summaries} => Array<Types::SessionSummary>
|
3741
|
+
#
|
3742
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3743
|
+
#
|
3744
|
+
# @example Request syntax with placeholder values
|
3745
|
+
#
|
3746
|
+
# resp = client.list_sessions({
|
3747
|
+
# max_results: 1,
|
3748
|
+
# next_token: "NextToken",
|
3749
|
+
# })
|
3750
|
+
#
|
3751
|
+
# @example Response structure
|
3752
|
+
#
|
3753
|
+
# resp.next_token #=> String
|
3754
|
+
# resp.session_summaries #=> Array
|
3755
|
+
# resp.session_summaries[0].created_at #=> Time
|
3756
|
+
# resp.session_summaries[0].last_updated_at #=> Time
|
3757
|
+
# resp.session_summaries[0].session_arn #=> String
|
3758
|
+
# resp.session_summaries[0].session_id #=> String
|
3759
|
+
# resp.session_summaries[0].session_status #=> String, one of "ACTIVE", "EXPIRED", "ENDED"
|
3760
|
+
#
|
3761
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/ListSessions AWS API Documentation
|
3762
|
+
#
|
3763
|
+
# @overload list_sessions(params = {})
|
3764
|
+
# @param [Hash] params ({})
|
3765
|
+
def list_sessions(params = {}, options = {})
|
3766
|
+
req = build_request(:list_sessions, params)
|
3767
|
+
req.send_request(options)
|
3768
|
+
end
|
3769
|
+
|
3770
|
+
# List all the tags for the resource you specify.
|
3771
|
+
#
|
3772
|
+
# @option params [required, String] :resource_arn
|
3773
|
+
# The Amazon Resource Name (ARN) of the resource for which to list tags.
|
3774
|
+
#
|
3775
|
+
# @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3776
|
+
#
|
3777
|
+
# * {Types::ListTagsForResourceResponse#tags #tags} => Hash<String,String>
|
3778
|
+
#
|
3779
|
+
# @example Request syntax with placeholder values
|
3780
|
+
#
|
3781
|
+
# resp = client.list_tags_for_resource({
|
3782
|
+
# resource_arn: "TaggableResourcesArn", # required
|
3783
|
+
# })
|
3784
|
+
#
|
3785
|
+
# @example Response structure
|
3786
|
+
#
|
3787
|
+
# resp.tags #=> Hash
|
3788
|
+
# resp.tags["TagKey"] #=> String
|
3789
|
+
#
|
3790
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/ListTagsForResource AWS API Documentation
|
3791
|
+
#
|
3792
|
+
# @overload list_tags_for_resource(params = {})
|
3793
|
+
# @param [Hash] params ({})
|
3794
|
+
def list_tags_for_resource(params = {}, options = {})
|
3795
|
+
req = build_request(:list_tags_for_resource, params)
|
3796
|
+
req.send_request(options)
|
3797
|
+
end
|
3798
|
+
|
3031
3799
|
# Optimizes a prompt for the task that you specify. For more
|
3032
3800
|
# information, see [Optimize a prompt][1] in the [Amazon Bedrock User
|
3033
3801
|
# Guide][2].
|
@@ -3265,6 +4033,90 @@ module Aws::BedrockAgentRuntime
|
|
3265
4033
|
req.send_request(options, &block)
|
3266
4034
|
end
|
3267
4035
|
|
4036
|
+
# Add an invocation step to an invocation in a session. An invocation
|
4037
|
+
# step stores fine-grained state checkpoints, including text and images,
|
4038
|
+
# for each interaction. For more information about sessions, see [Store
|
4039
|
+
# and retrieve conversation history and context with Amazon Bedrock
|
4040
|
+
# sessions][1].
|
4041
|
+
#
|
4042
|
+
# Related APIs:
|
4043
|
+
#
|
4044
|
+
# * [GetInvocationStep][2]
|
4045
|
+
#
|
4046
|
+
# * [ListInvocationSteps][3]
|
4047
|
+
#
|
4048
|
+
# * [ListInvocations][4]
|
4049
|
+
#
|
4050
|
+
# * [ListSessions][4]
|
4051
|
+
#
|
4052
|
+
#
|
4053
|
+
#
|
4054
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/sessions.html
|
4055
|
+
# [2]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_GetInvocationStep.html
|
4056
|
+
# [3]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_ListInvocationSteps.html
|
4057
|
+
# [4]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_ListInvocations.html
|
4058
|
+
#
|
4059
|
+
# @option params [required, String] :invocation_identifier
|
4060
|
+
# The unique identifier (in UUID format) of the invocation to add the
|
4061
|
+
# invocation step to.
|
4062
|
+
#
|
4063
|
+
# @option params [String] :invocation_step_id
|
4064
|
+
# The unique identifier of the invocation step in UUID format.
|
4065
|
+
#
|
4066
|
+
# @option params [required, Time,DateTime,Date,Integer,String] :invocation_step_time
|
4067
|
+
# The timestamp for when the invocation step occurred.
|
4068
|
+
#
|
4069
|
+
# @option params [required, Types::InvocationStepPayload] :payload
|
4070
|
+
# The payload for the invocation step, including text and images for the
|
4071
|
+
# interaction.
|
4072
|
+
#
|
4073
|
+
# @option params [required, String] :session_identifier
|
4074
|
+
# The unique identifier for the session to add the invocation step to.
|
4075
|
+
# You can specify either the session's `sessionId` or its Amazon
|
4076
|
+
# Resource Name (ARN).
|
4077
|
+
#
|
4078
|
+
# @return [Types::PutInvocationStepResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4079
|
+
#
|
4080
|
+
# * {Types::PutInvocationStepResponse#invocation_step_id #invocation_step_id} => String
|
4081
|
+
#
|
4082
|
+
# @example Request syntax with placeholder values
|
4083
|
+
#
|
4084
|
+
# resp = client.put_invocation_step({
|
4085
|
+
# invocation_identifier: "InvocationIdentifier", # required
|
4086
|
+
# invocation_step_id: "Uuid",
|
4087
|
+
# invocation_step_time: Time.now, # required
|
4088
|
+
# payload: { # required
|
4089
|
+
# content_blocks: [
|
4090
|
+
# {
|
4091
|
+
# image: {
|
4092
|
+
# format: "png", # required, accepts png, jpeg, gif, webp
|
4093
|
+
# source: { # required
|
4094
|
+
# bytes: "data",
|
4095
|
+
# s3_location: {
|
4096
|
+
# uri: "S3Uri", # required
|
4097
|
+
# },
|
4098
|
+
# },
|
4099
|
+
# },
|
4100
|
+
# text: "BedrockSessionContentBlockTextString",
|
4101
|
+
# },
|
4102
|
+
# ],
|
4103
|
+
# },
|
4104
|
+
# session_identifier: "SessionIdentifier", # required
|
4105
|
+
# })
|
4106
|
+
#
|
4107
|
+
# @example Response structure
|
4108
|
+
#
|
4109
|
+
# resp.invocation_step_id #=> String
|
4110
|
+
#
|
4111
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/PutInvocationStep AWS API Documentation
|
4112
|
+
#
|
4113
|
+
# @overload put_invocation_step(params = {})
|
4114
|
+
# @param [Hash] params ({})
|
4115
|
+
def put_invocation_step(params = {}, options = {})
|
4116
|
+
req = build_request(:put_invocation_step, params)
|
4117
|
+
req.send_request(options)
|
4118
|
+
end
|
4119
|
+
|
3268
4120
|
# Reranks the relevance of sources based on queries. For more
|
3269
4121
|
# information, see [Improve the relevance of query responses with a
|
3270
4122
|
# reranker model][1].
|
@@ -4387,6 +5239,118 @@ module Aws::BedrockAgentRuntime
|
|
4387
5239
|
req.send_request(options, &block)
|
4388
5240
|
end
|
4389
5241
|
|
5242
|
+
# Associate tags with a resource. For more information, see [Tagging
|
5243
|
+
# resources][1] in the Amazon Bedrock User Guide.
|
5244
|
+
#
|
5245
|
+
#
|
5246
|
+
#
|
5247
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/what-is-service.html
|
5248
|
+
#
|
5249
|
+
# @option params [required, String] :resource_arn
|
5250
|
+
# The Amazon Resource Name (ARN) of the resource to tag.
|
5251
|
+
#
|
5252
|
+
# @option params [required, Hash<String,String>] :tags
|
5253
|
+
# An object containing key-value pairs that define the tags to attach to
|
5254
|
+
# the resource.
|
5255
|
+
#
|
5256
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
5257
|
+
#
|
5258
|
+
# @example Request syntax with placeholder values
|
5259
|
+
#
|
5260
|
+
# resp = client.tag_resource({
|
5261
|
+
# resource_arn: "TaggableResourcesArn", # required
|
5262
|
+
# tags: { # required
|
5263
|
+
# "TagKey" => "TagValue",
|
5264
|
+
# },
|
5265
|
+
# })
|
5266
|
+
#
|
5267
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/TagResource AWS API Documentation
|
5268
|
+
#
|
5269
|
+
# @overload tag_resource(params = {})
|
5270
|
+
# @param [Hash] params ({})
|
5271
|
+
def tag_resource(params = {}, options = {})
|
5272
|
+
req = build_request(:tag_resource, params)
|
5273
|
+
req.send_request(options)
|
5274
|
+
end
|
5275
|
+
|
5276
|
+
# Remove tags from a resource.
|
5277
|
+
#
|
5278
|
+
# @option params [required, String] :resource_arn
|
5279
|
+
# The Amazon Resource Name (ARN) of the resource from which to remove
|
5280
|
+
# tags.
|
5281
|
+
#
|
5282
|
+
# @option params [required, Array<String>] :tag_keys
|
5283
|
+
# A list of keys of the tags to remove from the resource.
|
5284
|
+
#
|
5285
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
5286
|
+
#
|
5287
|
+
# @example Request syntax with placeholder values
|
5288
|
+
#
|
5289
|
+
# resp = client.untag_resource({
|
5290
|
+
# resource_arn: "TaggableResourcesArn", # required
|
5291
|
+
# tag_keys: ["TagKey"], # required
|
5292
|
+
# })
|
5293
|
+
#
|
5294
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/UntagResource AWS API Documentation
|
5295
|
+
#
|
5296
|
+
# @overload untag_resource(params = {})
|
5297
|
+
# @param [Hash] params ({})
|
5298
|
+
def untag_resource(params = {}, options = {})
|
5299
|
+
req = build_request(:untag_resource, params)
|
5300
|
+
req.send_request(options)
|
5301
|
+
end
|
5302
|
+
|
5303
|
+
# Updates the metadata or encryption settings of a session. For more
|
5304
|
+
# information about sessions, see [Store and retrieve conversation
|
5305
|
+
# history and context with Amazon Bedrock sessions][1].
|
5306
|
+
#
|
5307
|
+
#
|
5308
|
+
#
|
5309
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/sessions.html
|
5310
|
+
#
|
5311
|
+
# @option params [required, String] :session_identifier
|
5312
|
+
# The unique identifier of the session to modify. You can specify either
|
5313
|
+
# the session's `sessionId` or its Amazon Resource Name (ARN).
|
5314
|
+
#
|
5315
|
+
# @option params [Hash<String,String>] :session_metadata
|
5316
|
+
# A map of key-value pairs containing attributes to be persisted across
|
5317
|
+
# the session. For example the user's ID, their language preference,
|
5318
|
+
# and the type of device they are using.
|
5319
|
+
#
|
5320
|
+
# @return [Types::UpdateSessionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5321
|
+
#
|
5322
|
+
# * {Types::UpdateSessionResponse#created_at #created_at} => Time
|
5323
|
+
# * {Types::UpdateSessionResponse#last_updated_at #last_updated_at} => Time
|
5324
|
+
# * {Types::UpdateSessionResponse#session_arn #session_arn} => String
|
5325
|
+
# * {Types::UpdateSessionResponse#session_id #session_id} => String
|
5326
|
+
# * {Types::UpdateSessionResponse#session_status #session_status} => String
|
5327
|
+
#
|
5328
|
+
# @example Request syntax with placeholder values
|
5329
|
+
#
|
5330
|
+
# resp = client.update_session({
|
5331
|
+
# session_identifier: "SessionIdentifier", # required
|
5332
|
+
# session_metadata: {
|
5333
|
+
# "SessionMetadataKey" => "SessionMetadataValue",
|
5334
|
+
# },
|
5335
|
+
# })
|
5336
|
+
#
|
5337
|
+
# @example Response structure
|
5338
|
+
#
|
5339
|
+
# resp.created_at #=> Time
|
5340
|
+
# resp.last_updated_at #=> Time
|
5341
|
+
# resp.session_arn #=> String
|
5342
|
+
# resp.session_id #=> String
|
5343
|
+
# resp.session_status #=> String, one of "ACTIVE", "EXPIRED", "ENDED"
|
5344
|
+
#
|
5345
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/UpdateSession AWS API Documentation
|
5346
|
+
#
|
5347
|
+
# @overload update_session(params = {})
|
5348
|
+
# @param [Hash] params ({})
|
5349
|
+
def update_session(params = {}, options = {})
|
5350
|
+
req = build_request(:update_session, params)
|
5351
|
+
req.send_request(options)
|
5352
|
+
end
|
5353
|
+
|
4390
5354
|
# @!endgroup
|
4391
5355
|
|
4392
5356
|
# @param params ({})
|
@@ -4405,7 +5369,7 @@ module Aws::BedrockAgentRuntime
|
|
4405
5369
|
tracer: tracer
|
4406
5370
|
)
|
4407
5371
|
context[:gem_name] = 'aws-sdk-bedrockagentruntime'
|
4408
|
-
context[:gem_version] = '1.
|
5372
|
+
context[:gem_version] = '1.48.0'
|
4409
5373
|
Seahorse::Client::Request.new(handlers, context)
|
4410
5374
|
end
|
4411
5375
|
|