aws-sdk-bedrockagentcorecontrol 1.8.0 → 1.9.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client.rb +203 -21
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +153 -2
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +451 -12
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +86 -6
- data/sig/types.rbs +151 -6
- metadata +1 -1
@@ -870,9 +870,11 @@ module Aws::BedrockAgentCoreControl
|
|
870
870
|
#
|
871
871
|
# @!attribute [rw] client_token
|
872
872
|
# A unique, case-sensitive identifier to ensure that the API request
|
873
|
-
# completes no more than one time. If this
|
874
|
-
#
|
875
|
-
#
|
873
|
+
# completes no more than one time. If you don't specify this field, a
|
874
|
+
# value is randomly generated for you. If this token matches a
|
875
|
+
# previous request, the service ignores the request, but doesn't
|
876
|
+
# return an error. For more information, see [Ensuring
|
877
|
+
# idempotency][1].
|
876
878
|
#
|
877
879
|
# **A suitable default value is auto-generated.** You should normally
|
878
880
|
# not need to pass this option.
|
@@ -898,10 +900,16 @@ module Aws::BedrockAgentCoreControl
|
|
898
900
|
#
|
899
901
|
# @!attribute [rw] authorizer_type
|
900
902
|
# The type of authorizer to use for the gateway.
|
903
|
+
#
|
904
|
+
# * `CUSTOM_JWT` - Authorize with a bearer token.
|
905
|
+
#
|
906
|
+
# * `AWS_IAM` - Authorize with your Amazon Web Services IAM
|
907
|
+
# credentials.
|
901
908
|
# @return [String]
|
902
909
|
#
|
903
910
|
# @!attribute [rw] authorizer_configuration
|
904
|
-
# The authorizer configuration for the gateway.
|
911
|
+
# The authorizer configuration for the gateway. Required if
|
912
|
+
# `authorizerType` is `CUSTOM_JWT`.
|
905
913
|
# @return [Types::AuthorizerConfiguration]
|
906
914
|
#
|
907
915
|
# @!attribute [rw] kms_key_arn
|
@@ -1059,9 +1067,11 @@ module Aws::BedrockAgentCoreControl
|
|
1059
1067
|
#
|
1060
1068
|
# @!attribute [rw] client_token
|
1061
1069
|
# A unique, case-sensitive identifier to ensure that the API request
|
1062
|
-
# completes no more than one time. If this
|
1063
|
-
#
|
1064
|
-
#
|
1070
|
+
# completes no more than one time. If you don't specify this field, a
|
1071
|
+
# value is randomly generated for you. If this token matches a
|
1072
|
+
# previous request, the service ignores the request, but doesn't
|
1073
|
+
# return an error. For more information, see [Ensuring
|
1074
|
+
# idempotency][1].
|
1065
1075
|
#
|
1066
1076
|
# **A suitable default value is auto-generated.** You should normally
|
1067
1077
|
# not need to pass this option.
|
@@ -1135,6 +1145,10 @@ module Aws::BedrockAgentCoreControl
|
|
1135
1145
|
# The credential provider configurations for the target.
|
1136
1146
|
# @return [Array<Types::CredentialProviderConfiguration>]
|
1137
1147
|
#
|
1148
|
+
# @!attribute [rw] last_synchronized_at
|
1149
|
+
# The last synchronization of the target.
|
1150
|
+
# @return [Time]
|
1151
|
+
#
|
1138
1152
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateGatewayTargetResponse AWS API Documentation
|
1139
1153
|
#
|
1140
1154
|
class CreateGatewayTargetResponse < Struct.new(
|
@@ -1147,7 +1161,8 @@ module Aws::BedrockAgentCoreControl
|
|
1147
1161
|
:name,
|
1148
1162
|
:description,
|
1149
1163
|
:target_configuration,
|
1150
|
-
:credential_provider_configurations
|
1164
|
+
:credential_provider_configurations,
|
1165
|
+
:last_synchronized_at)
|
1151
1166
|
SENSITIVE = [:name, :description]
|
1152
1167
|
include Aws::Structure
|
1153
1168
|
end
|
@@ -1386,12 +1401,17 @@ module Aws::BedrockAgentCoreControl
|
|
1386
1401
|
# strategy.
|
1387
1402
|
# @return [Types::UserPreferenceOverrideConfigurationInput]
|
1388
1403
|
#
|
1404
|
+
# @!attribute [rw] self_managed_configuration
|
1405
|
+
# The self managed configuration for a custom memory strategy.
|
1406
|
+
# @return [Types::SelfManagedConfigurationInput]
|
1407
|
+
#
|
1389
1408
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CustomConfigurationInput AWS API Documentation
|
1390
1409
|
#
|
1391
1410
|
class CustomConfigurationInput < Struct.new(
|
1392
1411
|
:semantic_override,
|
1393
1412
|
:summary_override,
|
1394
1413
|
:user_preference_override,
|
1414
|
+
:self_managed_configuration,
|
1395
1415
|
:unknown)
|
1396
1416
|
SENSITIVE = []
|
1397
1417
|
include Aws::Structure
|
@@ -1400,6 +1420,7 @@ module Aws::BedrockAgentCoreControl
|
|
1400
1420
|
class SemanticOverride < CustomConfigurationInput; end
|
1401
1421
|
class SummaryOverride < CustomConfigurationInput; end
|
1402
1422
|
class UserPreferenceOverride < CustomConfigurationInput; end
|
1423
|
+
class SelfManagedConfiguration < CustomConfigurationInput; end
|
1403
1424
|
class Unknown < CustomConfigurationInput; end
|
1404
1425
|
end
|
1405
1426
|
|
@@ -2068,6 +2089,71 @@ module Aws::BedrockAgentCoreControl
|
|
2068
2089
|
include Aws::Structure
|
2069
2090
|
end
|
2070
2091
|
|
2092
|
+
# The gateway target.
|
2093
|
+
#
|
2094
|
+
# @!attribute [rw] gateway_arn
|
2095
|
+
# The Amazon Resource Name (ARN) of the gateway target.
|
2096
|
+
# @return [String]
|
2097
|
+
#
|
2098
|
+
# @!attribute [rw] target_id
|
2099
|
+
# The target ID.
|
2100
|
+
# @return [String]
|
2101
|
+
#
|
2102
|
+
# @!attribute [rw] created_at
|
2103
|
+
# The date and time at which the target was created.
|
2104
|
+
# @return [Time]
|
2105
|
+
#
|
2106
|
+
# @!attribute [rw] updated_at
|
2107
|
+
# The date and time at which the target was updated.
|
2108
|
+
# @return [Time]
|
2109
|
+
#
|
2110
|
+
# @!attribute [rw] status
|
2111
|
+
# The status of the gateway target.
|
2112
|
+
# @return [String]
|
2113
|
+
#
|
2114
|
+
# @!attribute [rw] status_reasons
|
2115
|
+
# The status reasons for the target status.
|
2116
|
+
# @return [Array<String>]
|
2117
|
+
#
|
2118
|
+
# @!attribute [rw] name
|
2119
|
+
# The name of the gateway target.
|
2120
|
+
# @return [String]
|
2121
|
+
#
|
2122
|
+
# @!attribute [rw] description
|
2123
|
+
# The description for the gateway target.
|
2124
|
+
# @return [String]
|
2125
|
+
#
|
2126
|
+
# @!attribute [rw] target_configuration
|
2127
|
+
# The configuration for a gateway target. This structure defines how
|
2128
|
+
# the gateway connects to and interacts with the target endpoint.
|
2129
|
+
# @return [Types::TargetConfiguration]
|
2130
|
+
#
|
2131
|
+
# @!attribute [rw] credential_provider_configurations
|
2132
|
+
# The provider configurations.
|
2133
|
+
# @return [Array<Types::CredentialProviderConfiguration>]
|
2134
|
+
#
|
2135
|
+
# @!attribute [rw] last_synchronized_at
|
2136
|
+
# The last synchronization time.
|
2137
|
+
# @return [Time]
|
2138
|
+
#
|
2139
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GatewayTarget AWS API Documentation
|
2140
|
+
#
|
2141
|
+
class GatewayTarget < Struct.new(
|
2142
|
+
:gateway_arn,
|
2143
|
+
:target_id,
|
2144
|
+
:created_at,
|
2145
|
+
:updated_at,
|
2146
|
+
:status,
|
2147
|
+
:status_reasons,
|
2148
|
+
:name,
|
2149
|
+
:description,
|
2150
|
+
:target_configuration,
|
2151
|
+
:credential_provider_configurations,
|
2152
|
+
:last_synchronized_at)
|
2153
|
+
SENSITIVE = [:name, :description]
|
2154
|
+
include Aws::Structure
|
2155
|
+
end
|
2156
|
+
|
2071
2157
|
# @!attribute [rw] agent_runtime_id
|
2072
2158
|
# The unique identifier of the AgentCore Runtime associated with the
|
2073
2159
|
# endpoint.
|
@@ -2624,6 +2710,10 @@ module Aws::BedrockAgentCoreControl
|
|
2624
2710
|
# The credential provider configurations for the gateway target.
|
2625
2711
|
# @return [Array<Types::CredentialProviderConfiguration>]
|
2626
2712
|
#
|
2713
|
+
# @!attribute [rw] last_synchronized_at
|
2714
|
+
# The last synchronization of the target.
|
2715
|
+
# @return [Time]
|
2716
|
+
#
|
2627
2717
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetGatewayTargetResponse AWS API Documentation
|
2628
2718
|
#
|
2629
2719
|
class GetGatewayTargetResponse < Struct.new(
|
@@ -2636,7 +2726,8 @@ module Aws::BedrockAgentCoreControl
|
|
2636
2726
|
:name,
|
2637
2727
|
:description,
|
2638
2728
|
:target_configuration,
|
2639
|
-
:credential_provider_configurations
|
2729
|
+
:credential_provider_configurations,
|
2730
|
+
:last_synchronized_at)
|
2640
2731
|
SENSITIVE = [:name, :description]
|
2641
2732
|
include Aws::Structure
|
2642
2733
|
end
|
@@ -2879,6 +2970,46 @@ module Aws::BedrockAgentCoreControl
|
|
2879
2970
|
include Aws::Structure
|
2880
2971
|
end
|
2881
2972
|
|
2973
|
+
# The configuration to invoke a self-managed memory processing pipeline
|
2974
|
+
# with.
|
2975
|
+
#
|
2976
|
+
# @!attribute [rw] topic_arn
|
2977
|
+
# The ARN of the SNS topic for job notifications.
|
2978
|
+
# @return [String]
|
2979
|
+
#
|
2980
|
+
# @!attribute [rw] payload_delivery_bucket_name
|
2981
|
+
# The S3 bucket name for event payload delivery.
|
2982
|
+
# @return [String]
|
2983
|
+
#
|
2984
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/InvocationConfiguration AWS API Documentation
|
2985
|
+
#
|
2986
|
+
class InvocationConfiguration < Struct.new(
|
2987
|
+
:topic_arn,
|
2988
|
+
:payload_delivery_bucket_name)
|
2989
|
+
SENSITIVE = []
|
2990
|
+
include Aws::Structure
|
2991
|
+
end
|
2992
|
+
|
2993
|
+
# The configuration to invoke a self-managed memory processing pipeline
|
2994
|
+
# with.
|
2995
|
+
#
|
2996
|
+
# @!attribute [rw] topic_arn
|
2997
|
+
# The ARN of the SNS topic for job notifications.
|
2998
|
+
# @return [String]
|
2999
|
+
#
|
3000
|
+
# @!attribute [rw] payload_delivery_bucket_name
|
3001
|
+
# The S3 bucket name for event payload delivery.
|
3002
|
+
# @return [String]
|
3003
|
+
#
|
3004
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/InvocationConfigurationInput AWS API Documentation
|
3005
|
+
#
|
3006
|
+
class InvocationConfigurationInput < Struct.new(
|
3007
|
+
:topic_arn,
|
3008
|
+
:payload_delivery_bucket_name)
|
3009
|
+
SENSITIVE = []
|
3010
|
+
include Aws::Structure
|
3011
|
+
end
|
3012
|
+
|
2882
3013
|
# Contains the KMS configuration for a resource.
|
2883
3014
|
#
|
2884
3015
|
# @!attribute [rw] key_type
|
@@ -3426,6 +3557,20 @@ module Aws::BedrockAgentCoreControl
|
|
3426
3557
|
include Aws::Structure
|
3427
3558
|
end
|
3428
3559
|
|
3560
|
+
# The target configuration for the MCP server.
|
3561
|
+
#
|
3562
|
+
# @!attribute [rw] endpoint
|
3563
|
+
# The endpoint for the MCP server target configuration.
|
3564
|
+
# @return [String]
|
3565
|
+
#
|
3566
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/McpServerTargetConfiguration AWS API Documentation
|
3567
|
+
#
|
3568
|
+
class McpServerTargetConfiguration < Struct.new(
|
3569
|
+
:endpoint)
|
3570
|
+
SENSITIVE = []
|
3571
|
+
include Aws::Structure
|
3572
|
+
end
|
3573
|
+
|
3429
3574
|
# The Model Context Protocol (MCP) configuration for a target. This
|
3430
3575
|
# structure defines how the gateway uses MCP to communicate with the
|
3431
3576
|
# target.
|
@@ -3451,12 +3596,17 @@ module Aws::BedrockAgentCoreControl
|
|
3451
3596
|
# communicate with the target.
|
3452
3597
|
# @return [Types::McpLambdaTargetConfiguration]
|
3453
3598
|
#
|
3599
|
+
# @!attribute [rw] mcp_server
|
3600
|
+
# The MCP server specified as the gateway target.
|
3601
|
+
# @return [Types::McpServerTargetConfiguration]
|
3602
|
+
#
|
3454
3603
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/McpTargetConfiguration AWS API Documentation
|
3455
3604
|
#
|
3456
3605
|
class McpTargetConfiguration < Struct.new(
|
3457
3606
|
:open_api_schema,
|
3458
3607
|
:smithy_model,
|
3459
3608
|
:lambda,
|
3609
|
+
:mcp_server,
|
3460
3610
|
:unknown)
|
3461
3611
|
SENSITIVE = []
|
3462
3612
|
include Aws::Structure
|
@@ -3465,6 +3615,7 @@ module Aws::BedrockAgentCoreControl
|
|
3465
3615
|
class OpenApiSchema < McpTargetConfiguration; end
|
3466
3616
|
class SmithyModel < McpTargetConfiguration; end
|
3467
3617
|
class Lambda < McpTargetConfiguration; end
|
3618
|
+
class McpServer < McpTargetConfiguration; end
|
3468
3619
|
class Unknown < McpTargetConfiguration; end
|
3469
3620
|
end
|
3470
3621
|
|
@@ -3664,6 +3815,34 @@ module Aws::BedrockAgentCoreControl
|
|
3664
3815
|
include Aws::Structure
|
3665
3816
|
end
|
3666
3817
|
|
3818
|
+
# The trigger configuration based on a message.
|
3819
|
+
#
|
3820
|
+
# @!attribute [rw] message_count
|
3821
|
+
# The number of messages that trigger memory processing.
|
3822
|
+
# @return [Integer]
|
3823
|
+
#
|
3824
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/MessageBasedTrigger AWS API Documentation
|
3825
|
+
#
|
3826
|
+
class MessageBasedTrigger < Struct.new(
|
3827
|
+
:message_count)
|
3828
|
+
SENSITIVE = []
|
3829
|
+
include Aws::Structure
|
3830
|
+
end
|
3831
|
+
|
3832
|
+
# The trigger configuration based on a message.
|
3833
|
+
#
|
3834
|
+
# @!attribute [rw] message_count
|
3835
|
+
# The number of messages that trigger memory processing.
|
3836
|
+
# @return [Integer]
|
3837
|
+
#
|
3838
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/MessageBasedTriggerInput AWS API Documentation
|
3839
|
+
#
|
3840
|
+
class MessageBasedTriggerInput < Struct.new(
|
3841
|
+
:message_count)
|
3842
|
+
SENSITIVE = []
|
3843
|
+
include Aws::Structure
|
3844
|
+
end
|
3845
|
+
|
3667
3846
|
# Input configuration for a Microsoft OAuth2 provider.
|
3668
3847
|
#
|
3669
3848
|
# @!attribute [rw] client_id
|
@@ -3739,6 +3918,25 @@ module Aws::BedrockAgentCoreControl
|
|
3739
3918
|
class Unknown < ModifyExtractionConfiguration; end
|
3740
3919
|
end
|
3741
3920
|
|
3921
|
+
# The configuration for updating invocation settings.
|
3922
|
+
#
|
3923
|
+
# @!attribute [rw] topic_arn
|
3924
|
+
# The updated ARN of the SNS topic for job notifications.
|
3925
|
+
# @return [String]
|
3926
|
+
#
|
3927
|
+
# @!attribute [rw] payload_delivery_bucket_name
|
3928
|
+
# The updated S3 bucket name for event payload delivery.
|
3929
|
+
# @return [String]
|
3930
|
+
#
|
3931
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ModifyInvocationConfigurationInput AWS API Documentation
|
3932
|
+
#
|
3933
|
+
class ModifyInvocationConfigurationInput < Struct.new(
|
3934
|
+
:topic_arn,
|
3935
|
+
:payload_delivery_bucket_name)
|
3936
|
+
SENSITIVE = []
|
3937
|
+
include Aws::Structure
|
3938
|
+
end
|
3939
|
+
|
3742
3940
|
# Contains information for modifying memory strategies.
|
3743
3941
|
#
|
3744
3942
|
# @!attribute [rw] add_memory_strategies
|
@@ -3792,6 +3990,32 @@ module Aws::BedrockAgentCoreControl
|
|
3792
3990
|
include Aws::Structure
|
3793
3991
|
end
|
3794
3992
|
|
3993
|
+
# The configuration for updating the self-managed memory strategy.
|
3994
|
+
#
|
3995
|
+
# @!attribute [rw] trigger_conditions
|
3996
|
+
# The updated list of conditions that trigger memory processing.
|
3997
|
+
# @return [Array<Types::TriggerConditionInput>]
|
3998
|
+
#
|
3999
|
+
# @!attribute [rw] invocation_configuration
|
4000
|
+
# The updated configuration to invoke self-managed memory processing
|
4001
|
+
# pipeline.
|
4002
|
+
# @return [Types::ModifyInvocationConfigurationInput]
|
4003
|
+
#
|
4004
|
+
# @!attribute [rw] historical_context_window_size
|
4005
|
+
# The updated number of historical messages to include in processing
|
4006
|
+
# context.
|
4007
|
+
# @return [Integer]
|
4008
|
+
#
|
4009
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ModifySelfManagedConfiguration AWS API Documentation
|
4010
|
+
#
|
4011
|
+
class ModifySelfManagedConfiguration < Struct.new(
|
4012
|
+
:trigger_conditions,
|
4013
|
+
:invocation_configuration,
|
4014
|
+
:historical_context_window_size)
|
4015
|
+
SENSITIVE = []
|
4016
|
+
include Aws::Structure
|
4017
|
+
end
|
4018
|
+
|
3795
4019
|
# Contains information for modifying a strategy configuration.
|
3796
4020
|
#
|
3797
4021
|
# @!attribute [rw] extraction
|
@@ -3802,11 +4026,16 @@ module Aws::BedrockAgentCoreControl
|
|
3802
4026
|
# The updated consolidation configuration.
|
3803
4027
|
# @return [Types::ModifyConsolidationConfiguration]
|
3804
4028
|
#
|
4029
|
+
# @!attribute [rw] self_managed_configuration
|
4030
|
+
# The updated self-managed configuration.
|
4031
|
+
# @return [Types::ModifySelfManagedConfiguration]
|
4032
|
+
#
|
3805
4033
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ModifyStrategyConfiguration AWS API Documentation
|
3806
4034
|
#
|
3807
4035
|
class ModifyStrategyConfiguration < Struct.new(
|
3808
4036
|
:extraction,
|
3809
|
-
:consolidation
|
4037
|
+
:consolidation,
|
4038
|
+
:self_managed_configuration)
|
3810
4039
|
SENSITIVE = []
|
3811
4040
|
include Aws::Structure
|
3812
4041
|
end
|
@@ -4275,6 +4504,55 @@ module Aws::BedrockAgentCoreControl
|
|
4275
4504
|
include Aws::Structure
|
4276
4505
|
end
|
4277
4506
|
|
4507
|
+
# A configuration for a self-managed memory strategy.
|
4508
|
+
#
|
4509
|
+
# @!attribute [rw] trigger_conditions
|
4510
|
+
# A list of conditions that trigger memory processing.
|
4511
|
+
# @return [Array<Types::TriggerCondition>]
|
4512
|
+
#
|
4513
|
+
# @!attribute [rw] invocation_configuration
|
4514
|
+
# The configuration to use when invoking memory processing.
|
4515
|
+
# @return [Types::InvocationConfiguration]
|
4516
|
+
#
|
4517
|
+
# @!attribute [rw] historical_context_window_size
|
4518
|
+
# The number of historical messages to include in processing context.
|
4519
|
+
# @return [Integer]
|
4520
|
+
#
|
4521
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SelfManagedConfiguration AWS API Documentation
|
4522
|
+
#
|
4523
|
+
class SelfManagedConfiguration < Struct.new(
|
4524
|
+
:trigger_conditions,
|
4525
|
+
:invocation_configuration,
|
4526
|
+
:historical_context_window_size)
|
4527
|
+
SENSITIVE = []
|
4528
|
+
include Aws::Structure
|
4529
|
+
end
|
4530
|
+
|
4531
|
+
# Input configuration for a self-managed memory strategy.
|
4532
|
+
#
|
4533
|
+
# @!attribute [rw] trigger_conditions
|
4534
|
+
# A list of conditions that trigger memory processing.
|
4535
|
+
# @return [Array<Types::TriggerConditionInput>]
|
4536
|
+
#
|
4537
|
+
# @!attribute [rw] invocation_configuration
|
4538
|
+
# Configuration to invoke a self-managed memory processing pipeline
|
4539
|
+
# with.
|
4540
|
+
# @return [Types::InvocationConfigurationInput]
|
4541
|
+
#
|
4542
|
+
# @!attribute [rw] historical_context_window_size
|
4543
|
+
# Number of historical messages to include in processing context.
|
4544
|
+
# @return [Integer]
|
4545
|
+
#
|
4546
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SelfManagedConfigurationInput AWS API Documentation
|
4547
|
+
#
|
4548
|
+
class SelfManagedConfigurationInput < Struct.new(
|
4549
|
+
:trigger_conditions,
|
4550
|
+
:invocation_configuration,
|
4551
|
+
:historical_context_window_size)
|
4552
|
+
SENSITIVE = []
|
4553
|
+
include Aws::Structure
|
4554
|
+
end
|
4555
|
+
|
4278
4556
|
# Contains semantic consolidation override configuration.
|
4279
4557
|
#
|
4280
4558
|
# @!attribute [rw] append_to_prompt
|
@@ -4510,12 +4788,17 @@ module Aws::BedrockAgentCoreControl
|
|
4510
4788
|
# The consolidation configuration for the memory strategy.
|
4511
4789
|
# @return [Types::ConsolidationConfiguration]
|
4512
4790
|
#
|
4791
|
+
# @!attribute [rw] self_managed_configuration
|
4792
|
+
# Self-managed configuration settings.
|
4793
|
+
# @return [Types::SelfManagedConfiguration]
|
4794
|
+
#
|
4513
4795
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/StrategyConfiguration AWS API Documentation
|
4514
4796
|
#
|
4515
4797
|
class StrategyConfiguration < Struct.new(
|
4516
4798
|
:type,
|
4517
4799
|
:extraction,
|
4518
|
-
:consolidation
|
4800
|
+
:consolidation,
|
4801
|
+
:self_managed_configuration)
|
4519
4802
|
SENSITIVE = []
|
4520
4803
|
include Aws::Structure
|
4521
4804
|
end
|
@@ -4597,6 +4880,35 @@ module Aws::BedrockAgentCoreControl
|
|
4597
4880
|
include Aws::Structure
|
4598
4881
|
end
|
4599
4882
|
|
4883
|
+
# @!attribute [rw] gateway_identifier
|
4884
|
+
# The gateway Identifier.
|
4885
|
+
# @return [String]
|
4886
|
+
#
|
4887
|
+
# @!attribute [rw] target_id_list
|
4888
|
+
# The target ID list.
|
4889
|
+
# @return [Array<String>]
|
4890
|
+
#
|
4891
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SynchronizeGatewayTargetsRequest AWS API Documentation
|
4892
|
+
#
|
4893
|
+
class SynchronizeGatewayTargetsRequest < Struct.new(
|
4894
|
+
:gateway_identifier,
|
4895
|
+
:target_id_list)
|
4896
|
+
SENSITIVE = []
|
4897
|
+
include Aws::Structure
|
4898
|
+
end
|
4899
|
+
|
4900
|
+
# @!attribute [rw] targets
|
4901
|
+
# The gateway targets for synchronization.
|
4902
|
+
# @return [Array<Types::GatewayTarget>]
|
4903
|
+
#
|
4904
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SynchronizeGatewayTargetsResponse AWS API Documentation
|
4905
|
+
#
|
4906
|
+
class SynchronizeGatewayTargetsResponse < Struct.new(
|
4907
|
+
:targets)
|
4908
|
+
SENSITIVE = []
|
4909
|
+
include Aws::Structure
|
4910
|
+
end
|
4911
|
+
|
4600
4912
|
# @!attribute [rw] resource_arn
|
4601
4913
|
# The Amazon Resource Name (ARN) of the resource that you want to tag.
|
4602
4914
|
# @return [String]
|
@@ -4710,6 +5022,62 @@ module Aws::BedrockAgentCoreControl
|
|
4710
5022
|
include Aws::Structure
|
4711
5023
|
end
|
4712
5024
|
|
5025
|
+
# Trigger configuration based on time.
|
5026
|
+
#
|
5027
|
+
# @!attribute [rw] idle_session_timeout
|
5028
|
+
# Idle session timeout (seconds) that triggers memory processing.
|
5029
|
+
# @return [Integer]
|
5030
|
+
#
|
5031
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/TimeBasedTrigger AWS API Documentation
|
5032
|
+
#
|
5033
|
+
class TimeBasedTrigger < Struct.new(
|
5034
|
+
:idle_session_timeout)
|
5035
|
+
SENSITIVE = []
|
5036
|
+
include Aws::Structure
|
5037
|
+
end
|
5038
|
+
|
5039
|
+
# Trigger configuration based on time.
|
5040
|
+
#
|
5041
|
+
# @!attribute [rw] idle_session_timeout
|
5042
|
+
# Idle session timeout (seconds) that triggers memory processing.
|
5043
|
+
# @return [Integer]
|
5044
|
+
#
|
5045
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/TimeBasedTriggerInput AWS API Documentation
|
5046
|
+
#
|
5047
|
+
class TimeBasedTriggerInput < Struct.new(
|
5048
|
+
:idle_session_timeout)
|
5049
|
+
SENSITIVE = []
|
5050
|
+
include Aws::Structure
|
5051
|
+
end
|
5052
|
+
|
5053
|
+
# Trigger configuration based on tokens.
|
5054
|
+
#
|
5055
|
+
# @!attribute [rw] token_count
|
5056
|
+
# Number of tokens that trigger memory processing.
|
5057
|
+
# @return [Integer]
|
5058
|
+
#
|
5059
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/TokenBasedTrigger AWS API Documentation
|
5060
|
+
#
|
5061
|
+
class TokenBasedTrigger < Struct.new(
|
5062
|
+
:token_count)
|
5063
|
+
SENSITIVE = []
|
5064
|
+
include Aws::Structure
|
5065
|
+
end
|
5066
|
+
|
5067
|
+
# Trigger configuration based on tokens.
|
5068
|
+
#
|
5069
|
+
# @!attribute [rw] token_count
|
5070
|
+
# Number of tokens that trigger memory processing.
|
5071
|
+
# @return [Integer]
|
5072
|
+
#
|
5073
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/TokenBasedTriggerInput AWS API Documentation
|
5074
|
+
#
|
5075
|
+
class TokenBasedTriggerInput < Struct.new(
|
5076
|
+
:token_count)
|
5077
|
+
SENSITIVE = []
|
5078
|
+
include Aws::Structure
|
5079
|
+
end
|
5080
|
+
|
4713
5081
|
# A tool definition for a gateway target. This structure defines a tool
|
4714
5082
|
# that the target exposes through the Model Context Protocol.
|
4715
5083
|
#
|
@@ -4776,6 +5144,72 @@ module Aws::BedrockAgentCoreControl
|
|
4776
5144
|
class Unknown < ToolSchema; end
|
4777
5145
|
end
|
4778
5146
|
|
5147
|
+
# Condition that triggers memory processing.
|
5148
|
+
#
|
5149
|
+
# @note TriggerCondition is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of TriggerCondition corresponding to the set member.
|
5150
|
+
#
|
5151
|
+
# @!attribute [rw] message_based_trigger
|
5152
|
+
# Message based trigger configuration.
|
5153
|
+
# @return [Types::MessageBasedTrigger]
|
5154
|
+
#
|
5155
|
+
# @!attribute [rw] token_based_trigger
|
5156
|
+
# Token based trigger configuration.
|
5157
|
+
# @return [Types::TokenBasedTrigger]
|
5158
|
+
#
|
5159
|
+
# @!attribute [rw] time_based_trigger
|
5160
|
+
# Time based trigger configuration.
|
5161
|
+
# @return [Types::TimeBasedTrigger]
|
5162
|
+
#
|
5163
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/TriggerCondition AWS API Documentation
|
5164
|
+
#
|
5165
|
+
class TriggerCondition < Struct.new(
|
5166
|
+
:message_based_trigger,
|
5167
|
+
:token_based_trigger,
|
5168
|
+
:time_based_trigger,
|
5169
|
+
:unknown)
|
5170
|
+
SENSITIVE = []
|
5171
|
+
include Aws::Structure
|
5172
|
+
include Aws::Structure::Union
|
5173
|
+
|
5174
|
+
class MessageBasedTrigger < TriggerCondition; end
|
5175
|
+
class TokenBasedTrigger < TriggerCondition; end
|
5176
|
+
class TimeBasedTrigger < TriggerCondition; end
|
5177
|
+
class Unknown < TriggerCondition; end
|
5178
|
+
end
|
5179
|
+
|
5180
|
+
# Condition that triggers memory processing.
|
5181
|
+
#
|
5182
|
+
# @note TriggerConditionInput is a union - when making an API calls you must set exactly one of the members.
|
5183
|
+
#
|
5184
|
+
# @!attribute [rw] message_based_trigger
|
5185
|
+
# Message based trigger configuration.
|
5186
|
+
# @return [Types::MessageBasedTriggerInput]
|
5187
|
+
#
|
5188
|
+
# @!attribute [rw] token_based_trigger
|
5189
|
+
# Token based trigger configuration.
|
5190
|
+
# @return [Types::TokenBasedTriggerInput]
|
5191
|
+
#
|
5192
|
+
# @!attribute [rw] time_based_trigger
|
5193
|
+
# Time based trigger configuration.
|
5194
|
+
# @return [Types::TimeBasedTriggerInput]
|
5195
|
+
#
|
5196
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/TriggerConditionInput AWS API Documentation
|
5197
|
+
#
|
5198
|
+
class TriggerConditionInput < Struct.new(
|
5199
|
+
:message_based_trigger,
|
5200
|
+
:token_based_trigger,
|
5201
|
+
:time_based_trigger,
|
5202
|
+
:unknown)
|
5203
|
+
SENSITIVE = []
|
5204
|
+
include Aws::Structure
|
5205
|
+
include Aws::Structure::Union
|
5206
|
+
|
5207
|
+
class MessageBasedTrigger < TriggerConditionInput; end
|
5208
|
+
class TokenBasedTrigger < TriggerConditionInput; end
|
5209
|
+
class TimeBasedTrigger < TriggerConditionInput; end
|
5210
|
+
class Unknown < TriggerConditionInput; end
|
5211
|
+
end
|
5212
|
+
|
4779
5213
|
# This exception is thrown when the JWT bearer token is invalid or not
|
4780
5214
|
# found for OAuth bearer token based access
|
4781
5215
|
#
|
@@ -5302,6 +5736,10 @@ module Aws::BedrockAgentCoreControl
|
|
5302
5736
|
# target.
|
5303
5737
|
# @return [Array<Types::CredentialProviderConfiguration>]
|
5304
5738
|
#
|
5739
|
+
# @!attribute [rw] last_synchronized_at
|
5740
|
+
# The date and time at which the targets were last synchronized.
|
5741
|
+
# @return [Time]
|
5742
|
+
#
|
5305
5743
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateGatewayTargetResponse AWS API Documentation
|
5306
5744
|
#
|
5307
5745
|
class UpdateGatewayTargetResponse < Struct.new(
|
@@ -5314,7 +5752,8 @@ module Aws::BedrockAgentCoreControl
|
|
5314
5752
|
:name,
|
5315
5753
|
:description,
|
5316
5754
|
:target_configuration,
|
5317
|
-
:credential_provider_configurations
|
5755
|
+
:credential_provider_configurations,
|
5756
|
+
:last_synchronized_at)
|
5318
5757
|
SENSITIVE = [:name, :description]
|
5319
5758
|
include Aws::Structure
|
5320
5759
|
end
|