aws-sdk-bedrockagentcorecontrol 1.8.0 → 1.10.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-bedrockagentcorecontrol/client.rb +454 -26
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +223 -2
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +775 -28
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +141 -15
- data/sig/types.rbs +235 -13
- metadata +1 -1
|
@@ -249,6 +249,50 @@ module Aws::BedrockAgentCoreControl
|
|
|
249
249
|
class Unknown < ApiSchemaConfiguration; end
|
|
250
250
|
end
|
|
251
251
|
|
|
252
|
+
# Configuration settings for connecting to Atlassian services using
|
|
253
|
+
# OAuth2 authentication. This includes the client credentials required
|
|
254
|
+
# to authenticate with Atlassian's OAuth2 authorization server.
|
|
255
|
+
#
|
|
256
|
+
# @!attribute [rw] client_id
|
|
257
|
+
# The client ID for the Atlassian OAuth2 provider. This identifier is
|
|
258
|
+
# assigned by Atlassian when you register your application.
|
|
259
|
+
# @return [String]
|
|
260
|
+
#
|
|
261
|
+
# @!attribute [rw] client_secret
|
|
262
|
+
# The client secret for the Atlassian OAuth2 provider. This secret is
|
|
263
|
+
# assigned by Atlassian and used along with the client ID to
|
|
264
|
+
# authenticate your application.
|
|
265
|
+
# @return [String]
|
|
266
|
+
#
|
|
267
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/AtlassianOauth2ProviderConfigInput AWS API Documentation
|
|
268
|
+
#
|
|
269
|
+
class AtlassianOauth2ProviderConfigInput < Struct.new(
|
|
270
|
+
:client_id,
|
|
271
|
+
:client_secret)
|
|
272
|
+
SENSITIVE = [:client_secret]
|
|
273
|
+
include Aws::Structure
|
|
274
|
+
end
|
|
275
|
+
|
|
276
|
+
# The configuration details returned for an Atlassian OAuth2 provider,
|
|
277
|
+
# including the client ID and OAuth2 discovery information.
|
|
278
|
+
#
|
|
279
|
+
# @!attribute [rw] oauth_discovery
|
|
280
|
+
# Contains the discovery information for an OAuth2 provider.
|
|
281
|
+
# @return [Types::Oauth2Discovery]
|
|
282
|
+
#
|
|
283
|
+
# @!attribute [rw] client_id
|
|
284
|
+
# The client ID for the Atlassian OAuth2 provider.
|
|
285
|
+
# @return [String]
|
|
286
|
+
#
|
|
287
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/AtlassianOauth2ProviderConfigOutput AWS API Documentation
|
|
288
|
+
#
|
|
289
|
+
class AtlassianOauth2ProviderConfigOutput < Struct.new(
|
|
290
|
+
:oauth_discovery,
|
|
291
|
+
:client_id)
|
|
292
|
+
SENSITIVE = []
|
|
293
|
+
include Aws::Structure
|
|
294
|
+
end
|
|
295
|
+
|
|
252
296
|
# Represents inbound authorization configuration options used to
|
|
253
297
|
# authenticate incoming requests.
|
|
254
298
|
#
|
|
@@ -526,6 +570,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
526
570
|
# The Amazon Resource Name (ARN) of the AgentCore Runtime.
|
|
527
571
|
# @return [String]
|
|
528
572
|
#
|
|
573
|
+
# @!attribute [rw] agent_runtime_id
|
|
574
|
+
# The unique identifier of the AgentCore Runtime.
|
|
575
|
+
# @return [String]
|
|
576
|
+
#
|
|
577
|
+
# @!attribute [rw] endpoint_name
|
|
578
|
+
# The name of the AgentCore Runtime endpoint.
|
|
579
|
+
# @return [String]
|
|
580
|
+
#
|
|
529
581
|
# @!attribute [rw] status
|
|
530
582
|
# The current status of the AgentCore Runtime endpoint.
|
|
531
583
|
# @return [String]
|
|
@@ -540,9 +592,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
540
592
|
:target_version,
|
|
541
593
|
:agent_runtime_endpoint_arn,
|
|
542
594
|
:agent_runtime_arn,
|
|
595
|
+
:agent_runtime_id,
|
|
596
|
+
:endpoint_name,
|
|
543
597
|
:status,
|
|
544
598
|
:created_at)
|
|
545
|
-
SENSITIVE = []
|
|
599
|
+
SENSITIVE = [:endpoint_name]
|
|
546
600
|
include Aws::Structure
|
|
547
601
|
end
|
|
548
602
|
|
|
@@ -669,11 +723,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
669
723
|
# stored securely.
|
|
670
724
|
# @return [String]
|
|
671
725
|
#
|
|
726
|
+
# @!attribute [rw] tags
|
|
727
|
+
# A map of tag keys and values to assign to the API key credential
|
|
728
|
+
# provider. Tags enable you to categorize your resources in different
|
|
729
|
+
# ways, for example, by purpose, owner, or environment.
|
|
730
|
+
# @return [Hash<String,String>]
|
|
731
|
+
#
|
|
672
732
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateApiKeyCredentialProviderRequest AWS API Documentation
|
|
673
733
|
#
|
|
674
734
|
class CreateApiKeyCredentialProviderRequest < Struct.new(
|
|
675
735
|
:name,
|
|
676
|
-
:api_key
|
|
736
|
+
:api_key,
|
|
737
|
+
:tags)
|
|
677
738
|
SENSITIVE = [:api_key]
|
|
678
739
|
include Aws::Structure
|
|
679
740
|
end
|
|
@@ -870,9 +931,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
870
931
|
#
|
|
871
932
|
# @!attribute [rw] client_token
|
|
872
933
|
# A unique, case-sensitive identifier to ensure that the API request
|
|
873
|
-
# completes no more than one time. If this
|
|
874
|
-
#
|
|
875
|
-
#
|
|
934
|
+
# completes no more than one time. If you don't specify this field, a
|
|
935
|
+
# value is randomly generated for you. If this token matches a
|
|
936
|
+
# previous request, the service ignores the request, but doesn't
|
|
937
|
+
# return an error. For more information, see [Ensuring
|
|
938
|
+
# idempotency][1].
|
|
876
939
|
#
|
|
877
940
|
# **A suitable default value is auto-generated.** You should normally
|
|
878
941
|
# not need to pass this option.
|
|
@@ -898,10 +961,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
898
961
|
#
|
|
899
962
|
# @!attribute [rw] authorizer_type
|
|
900
963
|
# The type of authorizer to use for the gateway.
|
|
964
|
+
#
|
|
965
|
+
# * `CUSTOM_JWT` - Authorize with a bearer token.
|
|
966
|
+
#
|
|
967
|
+
# * `AWS_IAM` - Authorize with your Amazon Web Services IAM
|
|
968
|
+
# credentials.
|
|
901
969
|
# @return [String]
|
|
902
970
|
#
|
|
903
971
|
# @!attribute [rw] authorizer_configuration
|
|
904
|
-
# The authorizer configuration for the gateway.
|
|
972
|
+
# The authorizer configuration for the gateway. Required if
|
|
973
|
+
# `authorizerType` is `CUSTOM_JWT`.
|
|
905
974
|
# @return [Types::AuthorizerConfiguration]
|
|
906
975
|
#
|
|
907
976
|
# @!attribute [rw] kms_key_arn
|
|
@@ -1059,9 +1128,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
1059
1128
|
#
|
|
1060
1129
|
# @!attribute [rw] client_token
|
|
1061
1130
|
# A unique, case-sensitive identifier to ensure that the API request
|
|
1062
|
-
# completes no more than one time. If this
|
|
1063
|
-
#
|
|
1064
|
-
#
|
|
1131
|
+
# completes no more than one time. If you don't specify this field, a
|
|
1132
|
+
# value is randomly generated for you. If this token matches a
|
|
1133
|
+
# previous request, the service ignores the request, but doesn't
|
|
1134
|
+
# return an error. For more information, see [Ensuring
|
|
1135
|
+
# idempotency][1].
|
|
1065
1136
|
#
|
|
1066
1137
|
# **A suitable default value is auto-generated.** You should normally
|
|
1067
1138
|
# not need to pass this option.
|
|
@@ -1135,6 +1206,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
1135
1206
|
# The credential provider configurations for the target.
|
|
1136
1207
|
# @return [Array<Types::CredentialProviderConfiguration>]
|
|
1137
1208
|
#
|
|
1209
|
+
# @!attribute [rw] last_synchronized_at
|
|
1210
|
+
# The last synchronization of the target.
|
|
1211
|
+
# @return [Time]
|
|
1212
|
+
#
|
|
1138
1213
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateGatewayTargetResponse AWS API Documentation
|
|
1139
1214
|
#
|
|
1140
1215
|
class CreateGatewayTargetResponse < Struct.new(
|
|
@@ -1147,7 +1222,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
1147
1222
|
:name,
|
|
1148
1223
|
:description,
|
|
1149
1224
|
:target_configuration,
|
|
1150
|
-
:credential_provider_configurations
|
|
1225
|
+
:credential_provider_configurations,
|
|
1226
|
+
:last_synchronized_at)
|
|
1151
1227
|
SENSITIVE = [:name, :description]
|
|
1152
1228
|
include Aws::Structure
|
|
1153
1229
|
end
|
|
@@ -1239,12 +1315,19 @@ module Aws::BedrockAgentCoreControl
|
|
|
1239
1315
|
# ID, client secret, and other vendor-specific settings.
|
|
1240
1316
|
# @return [Types::Oauth2ProviderConfigInput]
|
|
1241
1317
|
#
|
|
1318
|
+
# @!attribute [rw] tags
|
|
1319
|
+
# A map of tag keys and values to assign to the OAuth2 credential
|
|
1320
|
+
# provider. Tags enable you to categorize your resources in different
|
|
1321
|
+
# ways, for example, by purpose, owner, or environment.
|
|
1322
|
+
# @return [Hash<String,String>]
|
|
1323
|
+
#
|
|
1242
1324
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateOauth2CredentialProviderRequest AWS API Documentation
|
|
1243
1325
|
#
|
|
1244
1326
|
class CreateOauth2CredentialProviderRequest < Struct.new(
|
|
1245
1327
|
:name,
|
|
1246
1328
|
:credential_provider_vendor,
|
|
1247
|
-
:oauth2_provider_config_input
|
|
1329
|
+
:oauth2_provider_config_input,
|
|
1330
|
+
:tags)
|
|
1248
1331
|
SENSITIVE = []
|
|
1249
1332
|
include Aws::Structure
|
|
1250
1333
|
end
|
|
@@ -1262,12 +1345,24 @@ module Aws::BedrockAgentCoreControl
|
|
|
1262
1345
|
# The Amazon Resource Name (ARN) of the OAuth2 credential provider.
|
|
1263
1346
|
# @return [String]
|
|
1264
1347
|
#
|
|
1348
|
+
# @!attribute [rw] callback_url
|
|
1349
|
+
# Callback URL to register on the OAuth2 credential provider as an
|
|
1350
|
+
# allowed callback URL. This URL is where the OAuth2 authorization
|
|
1351
|
+
# server redirects users after they complete the authorization flow.
|
|
1352
|
+
# @return [String]
|
|
1353
|
+
#
|
|
1354
|
+
# @!attribute [rw] oauth2_provider_config_output
|
|
1355
|
+
# Contains the output configuration for an OAuth2 provider.
|
|
1356
|
+
# @return [Types::Oauth2ProviderConfigOutput]
|
|
1357
|
+
#
|
|
1265
1358
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateOauth2CredentialProviderResponse AWS API Documentation
|
|
1266
1359
|
#
|
|
1267
1360
|
class CreateOauth2CredentialProviderResponse < Struct.new(
|
|
1268
1361
|
:client_secret_arn,
|
|
1269
1362
|
:name,
|
|
1270
|
-
:credential_provider_arn
|
|
1363
|
+
:credential_provider_arn,
|
|
1364
|
+
:callback_url,
|
|
1365
|
+
:oauth2_provider_config_output)
|
|
1271
1366
|
SENSITIVE = []
|
|
1272
1367
|
include Aws::Structure
|
|
1273
1368
|
end
|
|
@@ -1282,11 +1377,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
1282
1377
|
# this workload identity.
|
|
1283
1378
|
# @return [Array<String>]
|
|
1284
1379
|
#
|
|
1380
|
+
# @!attribute [rw] tags
|
|
1381
|
+
# A map of tag keys and values to assign to the workload identity.
|
|
1382
|
+
# Tags enable you to categorize your resources in different ways, for
|
|
1383
|
+
# example, by purpose, owner, or environment.
|
|
1384
|
+
# @return [Hash<String,String>]
|
|
1385
|
+
#
|
|
1285
1386
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateWorkloadIdentityRequest AWS API Documentation
|
|
1286
1387
|
#
|
|
1287
1388
|
class CreateWorkloadIdentityRequest < Struct.new(
|
|
1288
1389
|
:name,
|
|
1289
|
-
:allowed_resource_oauth_2_return_urls
|
|
1390
|
+
:allowed_resource_oauth_2_return_urls,
|
|
1391
|
+
:tags)
|
|
1290
1392
|
SENSITIVE = []
|
|
1291
1393
|
include Aws::Structure
|
|
1292
1394
|
end
|
|
@@ -1386,12 +1488,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
1386
1488
|
# strategy.
|
|
1387
1489
|
# @return [Types::UserPreferenceOverrideConfigurationInput]
|
|
1388
1490
|
#
|
|
1491
|
+
# @!attribute [rw] self_managed_configuration
|
|
1492
|
+
# The self managed configuration for a custom memory strategy.
|
|
1493
|
+
# @return [Types::SelfManagedConfigurationInput]
|
|
1494
|
+
#
|
|
1389
1495
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CustomConfigurationInput AWS API Documentation
|
|
1390
1496
|
#
|
|
1391
1497
|
class CustomConfigurationInput < Struct.new(
|
|
1392
1498
|
:semantic_override,
|
|
1393
1499
|
:summary_override,
|
|
1394
1500
|
:user_preference_override,
|
|
1501
|
+
:self_managed_configuration,
|
|
1395
1502
|
:unknown)
|
|
1396
1503
|
SENSITIVE = []
|
|
1397
1504
|
include Aws::Structure
|
|
@@ -1400,6 +1507,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1400
1507
|
class SemanticOverride < CustomConfigurationInput; end
|
|
1401
1508
|
class SummaryOverride < CustomConfigurationInput; end
|
|
1402
1509
|
class UserPreferenceOverride < CustomConfigurationInput; end
|
|
1510
|
+
class SelfManagedConfiguration < CustomConfigurationInput; end
|
|
1403
1511
|
class Unknown < CustomConfigurationInput; end
|
|
1404
1512
|
end
|
|
1405
1513
|
|
|
@@ -1610,10 +1718,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
1610
1718
|
# The OAuth2 discovery information for the custom provider.
|
|
1611
1719
|
# @return [Types::Oauth2Discovery]
|
|
1612
1720
|
#
|
|
1721
|
+
# @!attribute [rw] client_id
|
|
1722
|
+
# The client ID for the custom OAuth2 provider.
|
|
1723
|
+
# @return [String]
|
|
1724
|
+
#
|
|
1613
1725
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CustomOauth2ProviderConfigOutput AWS API Documentation
|
|
1614
1726
|
#
|
|
1615
1727
|
class CustomOauth2ProviderConfigOutput < Struct.new(
|
|
1616
|
-
:oauth_discovery
|
|
1728
|
+
:oauth_discovery,
|
|
1729
|
+
:client_id)
|
|
1617
1730
|
SENSITIVE = []
|
|
1618
1731
|
include Aws::Structure
|
|
1619
1732
|
end
|
|
@@ -1662,11 +1775,21 @@ module Aws::BedrockAgentCoreControl
|
|
|
1662
1775
|
# The current status of the AgentCore Runtime endpoint deletion.
|
|
1663
1776
|
# @return [String]
|
|
1664
1777
|
#
|
|
1778
|
+
# @!attribute [rw] agent_runtime_id
|
|
1779
|
+
# The unique identifier of the AgentCore Runtime.
|
|
1780
|
+
# @return [String]
|
|
1781
|
+
#
|
|
1782
|
+
# @!attribute [rw] endpoint_name
|
|
1783
|
+
# The name of the AgentCore Runtime endpoint.
|
|
1784
|
+
# @return [String]
|
|
1785
|
+
#
|
|
1665
1786
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteAgentRuntimeEndpointResponse AWS API Documentation
|
|
1666
1787
|
#
|
|
1667
1788
|
class DeleteAgentRuntimeEndpointResponse < Struct.new(
|
|
1668
|
-
:status
|
|
1669
|
-
|
|
1789
|
+
:status,
|
|
1790
|
+
:agent_runtime_id,
|
|
1791
|
+
:endpoint_name)
|
|
1792
|
+
SENSITIVE = [:endpoint_name]
|
|
1670
1793
|
include Aws::Structure
|
|
1671
1794
|
end
|
|
1672
1795
|
|
|
@@ -1686,10 +1809,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
1686
1809
|
# The current status of the AgentCore Runtime deletion.
|
|
1687
1810
|
# @return [String]
|
|
1688
1811
|
#
|
|
1812
|
+
# @!attribute [rw] agent_runtime_id
|
|
1813
|
+
# The unique identifier of the AgentCore Runtime.
|
|
1814
|
+
# @return [String]
|
|
1815
|
+
#
|
|
1689
1816
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteAgentRuntimeResponse AWS API Documentation
|
|
1690
1817
|
#
|
|
1691
1818
|
class DeleteAgentRuntimeResponse < Struct.new(
|
|
1692
|
-
:status
|
|
1819
|
+
:status,
|
|
1820
|
+
:agent_runtime_id)
|
|
1693
1821
|
SENSITIVE = []
|
|
1694
1822
|
include Aws::Structure
|
|
1695
1823
|
end
|
|
@@ -2068,6 +2196,71 @@ module Aws::BedrockAgentCoreControl
|
|
|
2068
2196
|
include Aws::Structure
|
|
2069
2197
|
end
|
|
2070
2198
|
|
|
2199
|
+
# The gateway target.
|
|
2200
|
+
#
|
|
2201
|
+
# @!attribute [rw] gateway_arn
|
|
2202
|
+
# The Amazon Resource Name (ARN) of the gateway target.
|
|
2203
|
+
# @return [String]
|
|
2204
|
+
#
|
|
2205
|
+
# @!attribute [rw] target_id
|
|
2206
|
+
# The target ID.
|
|
2207
|
+
# @return [String]
|
|
2208
|
+
#
|
|
2209
|
+
# @!attribute [rw] created_at
|
|
2210
|
+
# The date and time at which the target was created.
|
|
2211
|
+
# @return [Time]
|
|
2212
|
+
#
|
|
2213
|
+
# @!attribute [rw] updated_at
|
|
2214
|
+
# The date and time at which the target was updated.
|
|
2215
|
+
# @return [Time]
|
|
2216
|
+
#
|
|
2217
|
+
# @!attribute [rw] status
|
|
2218
|
+
# The status of the gateway target.
|
|
2219
|
+
# @return [String]
|
|
2220
|
+
#
|
|
2221
|
+
# @!attribute [rw] status_reasons
|
|
2222
|
+
# The status reasons for the target status.
|
|
2223
|
+
# @return [Array<String>]
|
|
2224
|
+
#
|
|
2225
|
+
# @!attribute [rw] name
|
|
2226
|
+
# The name of the gateway target.
|
|
2227
|
+
# @return [String]
|
|
2228
|
+
#
|
|
2229
|
+
# @!attribute [rw] description
|
|
2230
|
+
# The description for the gateway target.
|
|
2231
|
+
# @return [String]
|
|
2232
|
+
#
|
|
2233
|
+
# @!attribute [rw] target_configuration
|
|
2234
|
+
# The configuration for a gateway target. This structure defines how
|
|
2235
|
+
# the gateway connects to and interacts with the target endpoint.
|
|
2236
|
+
# @return [Types::TargetConfiguration]
|
|
2237
|
+
#
|
|
2238
|
+
# @!attribute [rw] credential_provider_configurations
|
|
2239
|
+
# The provider configurations.
|
|
2240
|
+
# @return [Array<Types::CredentialProviderConfiguration>]
|
|
2241
|
+
#
|
|
2242
|
+
# @!attribute [rw] last_synchronized_at
|
|
2243
|
+
# The last synchronization time.
|
|
2244
|
+
# @return [Time]
|
|
2245
|
+
#
|
|
2246
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GatewayTarget AWS API Documentation
|
|
2247
|
+
#
|
|
2248
|
+
class GatewayTarget < Struct.new(
|
|
2249
|
+
:gateway_arn,
|
|
2250
|
+
:target_id,
|
|
2251
|
+
:created_at,
|
|
2252
|
+
:updated_at,
|
|
2253
|
+
:status,
|
|
2254
|
+
:status_reasons,
|
|
2255
|
+
:name,
|
|
2256
|
+
:description,
|
|
2257
|
+
:target_configuration,
|
|
2258
|
+
:credential_provider_configurations,
|
|
2259
|
+
:last_synchronized_at)
|
|
2260
|
+
SENSITIVE = [:name, :description]
|
|
2261
|
+
include Aws::Structure
|
|
2262
|
+
end
|
|
2263
|
+
|
|
2071
2264
|
# @!attribute [rw] agent_runtime_id
|
|
2072
2265
|
# The unique identifier of the AgentCore Runtime associated with the
|
|
2073
2266
|
# endpoint.
|
|
@@ -2624,6 +2817,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
2624
2817
|
# The credential provider configurations for the gateway target.
|
|
2625
2818
|
# @return [Array<Types::CredentialProviderConfiguration>]
|
|
2626
2819
|
#
|
|
2820
|
+
# @!attribute [rw] last_synchronized_at
|
|
2821
|
+
# The last synchronization of the target.
|
|
2822
|
+
# @return [Time]
|
|
2823
|
+
#
|
|
2627
2824
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetGatewayTargetResponse AWS API Documentation
|
|
2628
2825
|
#
|
|
2629
2826
|
class GetGatewayTargetResponse < Struct.new(
|
|
@@ -2636,7 +2833,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
2636
2833
|
:name,
|
|
2637
2834
|
:description,
|
|
2638
2835
|
:target_configuration,
|
|
2639
|
-
:credential_provider_configurations
|
|
2836
|
+
:credential_provider_configurations,
|
|
2837
|
+
:last_synchronized_at)
|
|
2640
2838
|
SENSITIVE = [:name, :description]
|
|
2641
2839
|
include Aws::Structure
|
|
2642
2840
|
end
|
|
@@ -2694,6 +2892,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
2694
2892
|
# The vendor of the OAuth2 credential provider.
|
|
2695
2893
|
# @return [String]
|
|
2696
2894
|
#
|
|
2895
|
+
# @!attribute [rw] callback_url
|
|
2896
|
+
# Callback URL to register on the OAuth2 credential provider as an
|
|
2897
|
+
# allowed callback URL. This URL is where the OAuth2 authorization
|
|
2898
|
+
# server redirects users after they complete the authorization flow.
|
|
2899
|
+
# @return [String]
|
|
2900
|
+
#
|
|
2697
2901
|
# @!attribute [rw] oauth2_provider_config_output
|
|
2698
2902
|
# The configuration output for the OAuth2 provider.
|
|
2699
2903
|
# @return [Types::Oauth2ProviderConfigOutput]
|
|
@@ -2713,6 +2917,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2713
2917
|
:name,
|
|
2714
2918
|
:credential_provider_arn,
|
|
2715
2919
|
:credential_provider_vendor,
|
|
2920
|
+
:callback_url,
|
|
2716
2921
|
:oauth2_provider_config_output,
|
|
2717
2922
|
:created_time,
|
|
2718
2923
|
:last_updated_time)
|
|
@@ -2824,10 +3029,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
2824
3029
|
# The OAuth2 discovery information for the GitHub provider.
|
|
2825
3030
|
# @return [Types::Oauth2Discovery]
|
|
2826
3031
|
#
|
|
3032
|
+
# @!attribute [rw] client_id
|
|
3033
|
+
# The client ID for the GitHub OAuth2 provider.
|
|
3034
|
+
# @return [String]
|
|
3035
|
+
#
|
|
2827
3036
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GithubOauth2ProviderConfigOutput AWS API Documentation
|
|
2828
3037
|
#
|
|
2829
3038
|
class GithubOauth2ProviderConfigOutput < Struct.new(
|
|
2830
|
-
:oauth_discovery
|
|
3039
|
+
:oauth_discovery,
|
|
3040
|
+
:client_id)
|
|
2831
3041
|
SENSITIVE = []
|
|
2832
3042
|
include Aws::Structure
|
|
2833
3043
|
end
|
|
@@ -2857,10 +3067,79 @@ module Aws::BedrockAgentCoreControl
|
|
|
2857
3067
|
# The OAuth2 discovery information for the Google provider.
|
|
2858
3068
|
# @return [Types::Oauth2Discovery]
|
|
2859
3069
|
#
|
|
3070
|
+
# @!attribute [rw] client_id
|
|
3071
|
+
# The client ID for the Google OAuth2 provider.
|
|
3072
|
+
# @return [String]
|
|
3073
|
+
#
|
|
2860
3074
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GoogleOauth2ProviderConfigOutput AWS API Documentation
|
|
2861
3075
|
#
|
|
2862
3076
|
class GoogleOauth2ProviderConfigOutput < Struct.new(
|
|
2863
|
-
:oauth_discovery
|
|
3077
|
+
:oauth_discovery,
|
|
3078
|
+
:client_id)
|
|
3079
|
+
SENSITIVE = []
|
|
3080
|
+
include Aws::Structure
|
|
3081
|
+
end
|
|
3082
|
+
|
|
3083
|
+
# Configuration settings for connecting to a supported OAuth2 provider.
|
|
3084
|
+
# This includes client credentials and OAuth2 discovery information for
|
|
3085
|
+
# providers that have built-in support.
|
|
3086
|
+
#
|
|
3087
|
+
# @!attribute [rw] client_id
|
|
3088
|
+
# The client ID for the supported OAuth2 provider. This identifier is
|
|
3089
|
+
# assigned by the OAuth2 provider when you register your application.
|
|
3090
|
+
# @return [String]
|
|
3091
|
+
#
|
|
3092
|
+
# @!attribute [rw] client_secret
|
|
3093
|
+
# The client secret for the supported OAuth2 provider. This secret is
|
|
3094
|
+
# assigned by the OAuth2 provider and used along with the client ID to
|
|
3095
|
+
# authenticate your application.
|
|
3096
|
+
# @return [String]
|
|
3097
|
+
#
|
|
3098
|
+
# @!attribute [rw] issuer
|
|
3099
|
+
# Token issuer of your isolated OAuth2 application tenant. This URL
|
|
3100
|
+
# identifies the authorization server that issues tokens for this
|
|
3101
|
+
# provider.
|
|
3102
|
+
# @return [String]
|
|
3103
|
+
#
|
|
3104
|
+
# @!attribute [rw] authorization_endpoint
|
|
3105
|
+
# OAuth2 authorization endpoint for your isolated OAuth2 application
|
|
3106
|
+
# tenant. This is where users are redirected to authenticate and
|
|
3107
|
+
# authorize access to their resources.
|
|
3108
|
+
# @return [String]
|
|
3109
|
+
#
|
|
3110
|
+
# @!attribute [rw] token_endpoint
|
|
3111
|
+
# OAuth2 token endpoint for your isolated OAuth2 application tenant.
|
|
3112
|
+
# This is where authorization codes are exchanged for access tokens.
|
|
3113
|
+
# @return [String]
|
|
3114
|
+
#
|
|
3115
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/IncludedOauth2ProviderConfigInput AWS API Documentation
|
|
3116
|
+
#
|
|
3117
|
+
class IncludedOauth2ProviderConfigInput < Struct.new(
|
|
3118
|
+
:client_id,
|
|
3119
|
+
:client_secret,
|
|
3120
|
+
:issuer,
|
|
3121
|
+
:authorization_endpoint,
|
|
3122
|
+
:token_endpoint)
|
|
3123
|
+
SENSITIVE = [:client_secret]
|
|
3124
|
+
include Aws::Structure
|
|
3125
|
+
end
|
|
3126
|
+
|
|
3127
|
+
# The configuration details returned for a supported OAuth2 provider,
|
|
3128
|
+
# including client credentials and OAuth2 discovery information.
|
|
3129
|
+
#
|
|
3130
|
+
# @!attribute [rw] oauth_discovery
|
|
3131
|
+
# Contains the discovery information for an OAuth2 provider.
|
|
3132
|
+
# @return [Types::Oauth2Discovery]
|
|
3133
|
+
#
|
|
3134
|
+
# @!attribute [rw] client_id
|
|
3135
|
+
# The client ID for the supported OAuth2 provider.
|
|
3136
|
+
# @return [String]
|
|
3137
|
+
#
|
|
3138
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/IncludedOauth2ProviderConfigOutput AWS API Documentation
|
|
3139
|
+
#
|
|
3140
|
+
class IncludedOauth2ProviderConfigOutput < Struct.new(
|
|
3141
|
+
:oauth_discovery,
|
|
3142
|
+
:client_id)
|
|
2864
3143
|
SENSITIVE = []
|
|
2865
3144
|
include Aws::Structure
|
|
2866
3145
|
end
|
|
@@ -2879,6 +3158,46 @@ module Aws::BedrockAgentCoreControl
|
|
|
2879
3158
|
include Aws::Structure
|
|
2880
3159
|
end
|
|
2881
3160
|
|
|
3161
|
+
# The configuration to invoke a self-managed memory processing pipeline
|
|
3162
|
+
# with.
|
|
3163
|
+
#
|
|
3164
|
+
# @!attribute [rw] topic_arn
|
|
3165
|
+
# The ARN of the SNS topic for job notifications.
|
|
3166
|
+
# @return [String]
|
|
3167
|
+
#
|
|
3168
|
+
# @!attribute [rw] payload_delivery_bucket_name
|
|
3169
|
+
# The S3 bucket name for event payload delivery.
|
|
3170
|
+
# @return [String]
|
|
3171
|
+
#
|
|
3172
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/InvocationConfiguration AWS API Documentation
|
|
3173
|
+
#
|
|
3174
|
+
class InvocationConfiguration < Struct.new(
|
|
3175
|
+
:topic_arn,
|
|
3176
|
+
:payload_delivery_bucket_name)
|
|
3177
|
+
SENSITIVE = []
|
|
3178
|
+
include Aws::Structure
|
|
3179
|
+
end
|
|
3180
|
+
|
|
3181
|
+
# The configuration to invoke a self-managed memory processing pipeline
|
|
3182
|
+
# with.
|
|
3183
|
+
#
|
|
3184
|
+
# @!attribute [rw] topic_arn
|
|
3185
|
+
# The ARN of the SNS topic for job notifications.
|
|
3186
|
+
# @return [String]
|
|
3187
|
+
#
|
|
3188
|
+
# @!attribute [rw] payload_delivery_bucket_name
|
|
3189
|
+
# The S3 bucket name for event payload delivery.
|
|
3190
|
+
# @return [String]
|
|
3191
|
+
#
|
|
3192
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/InvocationConfigurationInput AWS API Documentation
|
|
3193
|
+
#
|
|
3194
|
+
class InvocationConfigurationInput < Struct.new(
|
|
3195
|
+
:topic_arn,
|
|
3196
|
+
:payload_delivery_bucket_name)
|
|
3197
|
+
SENSITIVE = []
|
|
3198
|
+
include Aws::Structure
|
|
3199
|
+
end
|
|
3200
|
+
|
|
2882
3201
|
# Contains the KMS configuration for a resource.
|
|
2883
3202
|
#
|
|
2884
3203
|
# @!attribute [rw] key_type
|
|
@@ -2925,6 +3244,50 @@ module Aws::BedrockAgentCoreControl
|
|
|
2925
3244
|
include Aws::Structure
|
|
2926
3245
|
end
|
|
2927
3246
|
|
|
3247
|
+
# Configuration settings for connecting to LinkedIn services using
|
|
3248
|
+
# OAuth2 authentication. This includes the client credentials required
|
|
3249
|
+
# to authenticate with LinkedIn's OAuth2 authorization server.
|
|
3250
|
+
#
|
|
3251
|
+
# @!attribute [rw] client_id
|
|
3252
|
+
# The client ID for the LinkedIn OAuth2 provider. This identifier is
|
|
3253
|
+
# assigned by LinkedIn when you register your application.
|
|
3254
|
+
# @return [String]
|
|
3255
|
+
#
|
|
3256
|
+
# @!attribute [rw] client_secret
|
|
3257
|
+
# The client secret for the LinkedIn OAuth2 provider. This secret is
|
|
3258
|
+
# assigned by LinkedIn and used along with the client ID to
|
|
3259
|
+
# authenticate your application.
|
|
3260
|
+
# @return [String]
|
|
3261
|
+
#
|
|
3262
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/LinkedinOauth2ProviderConfigInput AWS API Documentation
|
|
3263
|
+
#
|
|
3264
|
+
class LinkedinOauth2ProviderConfigInput < Struct.new(
|
|
3265
|
+
:client_id,
|
|
3266
|
+
:client_secret)
|
|
3267
|
+
SENSITIVE = [:client_secret]
|
|
3268
|
+
include Aws::Structure
|
|
3269
|
+
end
|
|
3270
|
+
|
|
3271
|
+
# The configuration details returned for a LinkedIn OAuth2 provider,
|
|
3272
|
+
# including the client ID and OAuth2 discovery information.
|
|
3273
|
+
#
|
|
3274
|
+
# @!attribute [rw] oauth_discovery
|
|
3275
|
+
# Contains the discovery information for an OAuth2 provider.
|
|
3276
|
+
# @return [Types::Oauth2Discovery]
|
|
3277
|
+
#
|
|
3278
|
+
# @!attribute [rw] client_id
|
|
3279
|
+
# The client ID for the LinkedIn OAuth2 provider.
|
|
3280
|
+
# @return [String]
|
|
3281
|
+
#
|
|
3282
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/LinkedinOauth2ProviderConfigOutput AWS API Documentation
|
|
3283
|
+
#
|
|
3284
|
+
class LinkedinOauth2ProviderConfigOutput < Struct.new(
|
|
3285
|
+
:oauth_discovery,
|
|
3286
|
+
:client_id)
|
|
3287
|
+
SENSITIVE = []
|
|
3288
|
+
include Aws::Structure
|
|
3289
|
+
end
|
|
3290
|
+
|
|
2928
3291
|
# @!attribute [rw] agent_runtime_id
|
|
2929
3292
|
# The unique identifier of the AgentCore Runtime to list endpoints
|
|
2930
3293
|
# for.
|
|
@@ -3426,6 +3789,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
3426
3789
|
include Aws::Structure
|
|
3427
3790
|
end
|
|
3428
3791
|
|
|
3792
|
+
# The target configuration for the MCP server.
|
|
3793
|
+
#
|
|
3794
|
+
# @!attribute [rw] endpoint
|
|
3795
|
+
# The endpoint for the MCP server target configuration.
|
|
3796
|
+
# @return [String]
|
|
3797
|
+
#
|
|
3798
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/McpServerTargetConfiguration AWS API Documentation
|
|
3799
|
+
#
|
|
3800
|
+
class McpServerTargetConfiguration < Struct.new(
|
|
3801
|
+
:endpoint)
|
|
3802
|
+
SENSITIVE = []
|
|
3803
|
+
include Aws::Structure
|
|
3804
|
+
end
|
|
3805
|
+
|
|
3429
3806
|
# The Model Context Protocol (MCP) configuration for a target. This
|
|
3430
3807
|
# structure defines how the gateway uses MCP to communicate with the
|
|
3431
3808
|
# target.
|
|
@@ -3451,12 +3828,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
3451
3828
|
# communicate with the target.
|
|
3452
3829
|
# @return [Types::McpLambdaTargetConfiguration]
|
|
3453
3830
|
#
|
|
3831
|
+
# @!attribute [rw] mcp_server
|
|
3832
|
+
# The MCP server specified as the gateway target.
|
|
3833
|
+
# @return [Types::McpServerTargetConfiguration]
|
|
3834
|
+
#
|
|
3454
3835
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/McpTargetConfiguration AWS API Documentation
|
|
3455
3836
|
#
|
|
3456
3837
|
class McpTargetConfiguration < Struct.new(
|
|
3457
3838
|
:open_api_schema,
|
|
3458
3839
|
:smithy_model,
|
|
3459
3840
|
:lambda,
|
|
3841
|
+
:mcp_server,
|
|
3460
3842
|
:unknown)
|
|
3461
3843
|
SENSITIVE = []
|
|
3462
3844
|
include Aws::Structure
|
|
@@ -3465,6 +3847,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3465
3847
|
class OpenApiSchema < McpTargetConfiguration; end
|
|
3466
3848
|
class SmithyModel < McpTargetConfiguration; end
|
|
3467
3849
|
class Lambda < McpTargetConfiguration; end
|
|
3850
|
+
class McpServer < McpTargetConfiguration; end
|
|
3468
3851
|
class Unknown < McpTargetConfiguration; end
|
|
3469
3852
|
end
|
|
3470
3853
|
|
|
@@ -3664,6 +4047,34 @@ module Aws::BedrockAgentCoreControl
|
|
|
3664
4047
|
include Aws::Structure
|
|
3665
4048
|
end
|
|
3666
4049
|
|
|
4050
|
+
# The trigger configuration based on a message.
|
|
4051
|
+
#
|
|
4052
|
+
# @!attribute [rw] message_count
|
|
4053
|
+
# The number of messages that trigger memory processing.
|
|
4054
|
+
# @return [Integer]
|
|
4055
|
+
#
|
|
4056
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/MessageBasedTrigger AWS API Documentation
|
|
4057
|
+
#
|
|
4058
|
+
class MessageBasedTrigger < Struct.new(
|
|
4059
|
+
:message_count)
|
|
4060
|
+
SENSITIVE = []
|
|
4061
|
+
include Aws::Structure
|
|
4062
|
+
end
|
|
4063
|
+
|
|
4064
|
+
# The trigger configuration based on a message.
|
|
4065
|
+
#
|
|
4066
|
+
# @!attribute [rw] message_count
|
|
4067
|
+
# The number of messages that trigger memory processing.
|
|
4068
|
+
# @return [Integer]
|
|
4069
|
+
#
|
|
4070
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/MessageBasedTriggerInput AWS API Documentation
|
|
4071
|
+
#
|
|
4072
|
+
class MessageBasedTriggerInput < Struct.new(
|
|
4073
|
+
:message_count)
|
|
4074
|
+
SENSITIVE = []
|
|
4075
|
+
include Aws::Structure
|
|
4076
|
+
end
|
|
4077
|
+
|
|
3667
4078
|
# Input configuration for a Microsoft OAuth2 provider.
|
|
3668
4079
|
#
|
|
3669
4080
|
# @!attribute [rw] client_id
|
|
@@ -3674,11 +4085,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
3674
4085
|
# The client secret for the Microsoft OAuth2 provider.
|
|
3675
4086
|
# @return [String]
|
|
3676
4087
|
#
|
|
4088
|
+
# @!attribute [rw] tenant_id
|
|
4089
|
+
# The Microsoft Entra ID (formerly Azure AD) tenant ID for your
|
|
4090
|
+
# organization. This identifies the specific tenant within
|
|
4091
|
+
# Microsoft's identity platform where your application is registered.
|
|
4092
|
+
# @return [String]
|
|
4093
|
+
#
|
|
3677
4094
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/MicrosoftOauth2ProviderConfigInput AWS API Documentation
|
|
3678
4095
|
#
|
|
3679
4096
|
class MicrosoftOauth2ProviderConfigInput < Struct.new(
|
|
3680
4097
|
:client_id,
|
|
3681
|
-
:client_secret
|
|
4098
|
+
:client_secret,
|
|
4099
|
+
:tenant_id)
|
|
3682
4100
|
SENSITIVE = [:client_secret]
|
|
3683
4101
|
include Aws::Structure
|
|
3684
4102
|
end
|
|
@@ -3689,10 +4107,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
3689
4107
|
# The OAuth2 discovery information for the Microsoft provider.
|
|
3690
4108
|
# @return [Types::Oauth2Discovery]
|
|
3691
4109
|
#
|
|
4110
|
+
# @!attribute [rw] client_id
|
|
4111
|
+
# The client ID for the Microsoft OAuth2 provider.
|
|
4112
|
+
# @return [String]
|
|
4113
|
+
#
|
|
3692
4114
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/MicrosoftOauth2ProviderConfigOutput AWS API Documentation
|
|
3693
4115
|
#
|
|
3694
4116
|
class MicrosoftOauth2ProviderConfigOutput < Struct.new(
|
|
3695
|
-
:oauth_discovery
|
|
4117
|
+
:oauth_discovery,
|
|
4118
|
+
:client_id)
|
|
3696
4119
|
SENSITIVE = []
|
|
3697
4120
|
include Aws::Structure
|
|
3698
4121
|
end
|
|
@@ -3739,6 +4162,25 @@ module Aws::BedrockAgentCoreControl
|
|
|
3739
4162
|
class Unknown < ModifyExtractionConfiguration; end
|
|
3740
4163
|
end
|
|
3741
4164
|
|
|
4165
|
+
# The configuration for updating invocation settings.
|
|
4166
|
+
#
|
|
4167
|
+
# @!attribute [rw] topic_arn
|
|
4168
|
+
# The updated ARN of the SNS topic for job notifications.
|
|
4169
|
+
# @return [String]
|
|
4170
|
+
#
|
|
4171
|
+
# @!attribute [rw] payload_delivery_bucket_name
|
|
4172
|
+
# The updated S3 bucket name for event payload delivery.
|
|
4173
|
+
# @return [String]
|
|
4174
|
+
#
|
|
4175
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ModifyInvocationConfigurationInput AWS API Documentation
|
|
4176
|
+
#
|
|
4177
|
+
class ModifyInvocationConfigurationInput < Struct.new(
|
|
4178
|
+
:topic_arn,
|
|
4179
|
+
:payload_delivery_bucket_name)
|
|
4180
|
+
SENSITIVE = []
|
|
4181
|
+
include Aws::Structure
|
|
4182
|
+
end
|
|
4183
|
+
|
|
3742
4184
|
# Contains information for modifying memory strategies.
|
|
3743
4185
|
#
|
|
3744
4186
|
# @!attribute [rw] add_memory_strategies
|
|
@@ -3792,6 +4234,32 @@ module Aws::BedrockAgentCoreControl
|
|
|
3792
4234
|
include Aws::Structure
|
|
3793
4235
|
end
|
|
3794
4236
|
|
|
4237
|
+
# The configuration for updating the self-managed memory strategy.
|
|
4238
|
+
#
|
|
4239
|
+
# @!attribute [rw] trigger_conditions
|
|
4240
|
+
# The updated list of conditions that trigger memory processing.
|
|
4241
|
+
# @return [Array<Types::TriggerConditionInput>]
|
|
4242
|
+
#
|
|
4243
|
+
# @!attribute [rw] invocation_configuration
|
|
4244
|
+
# The updated configuration to invoke self-managed memory processing
|
|
4245
|
+
# pipeline.
|
|
4246
|
+
# @return [Types::ModifyInvocationConfigurationInput]
|
|
4247
|
+
#
|
|
4248
|
+
# @!attribute [rw] historical_context_window_size
|
|
4249
|
+
# The updated number of historical messages to include in processing
|
|
4250
|
+
# context.
|
|
4251
|
+
# @return [Integer]
|
|
4252
|
+
#
|
|
4253
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ModifySelfManagedConfiguration AWS API Documentation
|
|
4254
|
+
#
|
|
4255
|
+
class ModifySelfManagedConfiguration < Struct.new(
|
|
4256
|
+
:trigger_conditions,
|
|
4257
|
+
:invocation_configuration,
|
|
4258
|
+
:historical_context_window_size)
|
|
4259
|
+
SENSITIVE = []
|
|
4260
|
+
include Aws::Structure
|
|
4261
|
+
end
|
|
4262
|
+
|
|
3795
4263
|
# Contains information for modifying a strategy configuration.
|
|
3796
4264
|
#
|
|
3797
4265
|
# @!attribute [rw] extraction
|
|
@@ -3802,11 +4270,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
3802
4270
|
# The updated consolidation configuration.
|
|
3803
4271
|
# @return [Types::ModifyConsolidationConfiguration]
|
|
3804
4272
|
#
|
|
4273
|
+
# @!attribute [rw] self_managed_configuration
|
|
4274
|
+
# The updated self-managed configuration.
|
|
4275
|
+
# @return [Types::ModifySelfManagedConfiguration]
|
|
4276
|
+
#
|
|
3805
4277
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ModifyStrategyConfiguration AWS API Documentation
|
|
3806
4278
|
#
|
|
3807
4279
|
class ModifyStrategyConfiguration < Struct.new(
|
|
3808
4280
|
:extraction,
|
|
3809
|
-
:consolidation
|
|
4281
|
+
:consolidation,
|
|
4282
|
+
:self_managed_configuration)
|
|
3810
4283
|
SENSITIVE = []
|
|
3811
4284
|
include Aws::Structure
|
|
3812
4285
|
end
|
|
@@ -3878,13 +4351,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
3878
4351
|
# The supported response types for the OAuth2 authorization server.
|
|
3879
4352
|
# @return [Array<String>]
|
|
3880
4353
|
#
|
|
4354
|
+
# @!attribute [rw] token_endpoint_auth_methods
|
|
4355
|
+
# The authentication methods supported by the token endpoint. This
|
|
4356
|
+
# specifies how clients can authenticate when requesting tokens from
|
|
4357
|
+
# the authorization server.
|
|
4358
|
+
# @return [Array<String>]
|
|
4359
|
+
#
|
|
3881
4360
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/Oauth2AuthorizationServerMetadata AWS API Documentation
|
|
3882
4361
|
#
|
|
3883
4362
|
class Oauth2AuthorizationServerMetadata < Struct.new(
|
|
3884
4363
|
:issuer,
|
|
3885
4364
|
:authorization_endpoint,
|
|
3886
4365
|
:token_endpoint,
|
|
3887
|
-
:response_types
|
|
4366
|
+
:response_types,
|
|
4367
|
+
:token_endpoint_auth_methods)
|
|
3888
4368
|
SENSITIVE = []
|
|
3889
4369
|
include Aws::Structure
|
|
3890
4370
|
end
|
|
@@ -3980,6 +4460,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
3980
4460
|
# The configuration for a Microsoft OAuth2 provider.
|
|
3981
4461
|
# @return [Types::MicrosoftOauth2ProviderConfigInput]
|
|
3982
4462
|
#
|
|
4463
|
+
# @!attribute [rw] atlassian_oauth_2_provider_config
|
|
4464
|
+
# Configuration settings for Atlassian OAuth2 provider integration.
|
|
4465
|
+
# @return [Types::AtlassianOauth2ProviderConfigInput]
|
|
4466
|
+
#
|
|
4467
|
+
# @!attribute [rw] linkedin_oauth_2_provider_config
|
|
4468
|
+
# Configuration settings for LinkedIn OAuth2 provider integration.
|
|
4469
|
+
# @return [Types::LinkedinOauth2ProviderConfigInput]
|
|
4470
|
+
#
|
|
4471
|
+
# @!attribute [rw] included_oauth_2_provider_config
|
|
4472
|
+
# The configuration for a non-custom OAuth2 provider. This includes
|
|
4473
|
+
# settings for supported OAuth2 providers that have built-in
|
|
4474
|
+
# integration support.
|
|
4475
|
+
# @return [Types::IncludedOauth2ProviderConfigInput]
|
|
4476
|
+
#
|
|
3983
4477
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/Oauth2ProviderConfigInput AWS API Documentation
|
|
3984
4478
|
#
|
|
3985
4479
|
class Oauth2ProviderConfigInput < Struct.new(
|
|
@@ -3989,6 +4483,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
3989
4483
|
:slack_oauth_2_provider_config,
|
|
3990
4484
|
:salesforce_oauth_2_provider_config,
|
|
3991
4485
|
:microsoft_oauth_2_provider_config,
|
|
4486
|
+
:atlassian_oauth_2_provider_config,
|
|
4487
|
+
:linkedin_oauth_2_provider_config,
|
|
4488
|
+
:included_oauth_2_provider_config,
|
|
3992
4489
|
:unknown)
|
|
3993
4490
|
SENSITIVE = []
|
|
3994
4491
|
include Aws::Structure
|
|
@@ -4000,6 +4497,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
4000
4497
|
class SlackOauth2ProviderConfig < Oauth2ProviderConfigInput; end
|
|
4001
4498
|
class SalesforceOauth2ProviderConfig < Oauth2ProviderConfigInput; end
|
|
4002
4499
|
class MicrosoftOauth2ProviderConfig < Oauth2ProviderConfigInput; end
|
|
4500
|
+
class AtlassianOauth2ProviderConfig < Oauth2ProviderConfigInput; end
|
|
4501
|
+
class LinkedinOauth2ProviderConfig < Oauth2ProviderConfigInput; end
|
|
4502
|
+
class IncludedOauth2ProviderConfig < Oauth2ProviderConfigInput; end
|
|
4003
4503
|
class Unknown < Oauth2ProviderConfigInput; end
|
|
4004
4504
|
end
|
|
4005
4505
|
|
|
@@ -4031,6 +4531,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
4031
4531
|
# The output configuration for a Microsoft OAuth2 provider.
|
|
4032
4532
|
# @return [Types::MicrosoftOauth2ProviderConfigOutput]
|
|
4033
4533
|
#
|
|
4534
|
+
# @!attribute [rw] atlassian_oauth_2_provider_config
|
|
4535
|
+
# The configuration details for the Atlassian OAuth2 provider.
|
|
4536
|
+
# @return [Types::AtlassianOauth2ProviderConfigOutput]
|
|
4537
|
+
#
|
|
4538
|
+
# @!attribute [rw] linkedin_oauth_2_provider_config
|
|
4539
|
+
# The configuration details for the LinkedIn OAuth2 provider.
|
|
4540
|
+
# @return [Types::LinkedinOauth2ProviderConfigOutput]
|
|
4541
|
+
#
|
|
4542
|
+
# @!attribute [rw] included_oauth_2_provider_config
|
|
4543
|
+
# The configuration for a non-custom OAuth2 provider. This includes
|
|
4544
|
+
# the configuration details for supported OAuth2 providers that have
|
|
4545
|
+
# built-in integration support.
|
|
4546
|
+
# @return [Types::IncludedOauth2ProviderConfigOutput]
|
|
4547
|
+
#
|
|
4034
4548
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/Oauth2ProviderConfigOutput AWS API Documentation
|
|
4035
4549
|
#
|
|
4036
4550
|
class Oauth2ProviderConfigOutput < Struct.new(
|
|
@@ -4040,6 +4554,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
4040
4554
|
:slack_oauth_2_provider_config,
|
|
4041
4555
|
:salesforce_oauth_2_provider_config,
|
|
4042
4556
|
:microsoft_oauth_2_provider_config,
|
|
4557
|
+
:atlassian_oauth_2_provider_config,
|
|
4558
|
+
:linkedin_oauth_2_provider_config,
|
|
4559
|
+
:included_oauth_2_provider_config,
|
|
4043
4560
|
:unknown)
|
|
4044
4561
|
SENSITIVE = []
|
|
4045
4562
|
include Aws::Structure
|
|
@@ -4051,6 +4568,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
4051
4568
|
class SlackOauth2ProviderConfig < Oauth2ProviderConfigOutput; end
|
|
4052
4569
|
class SalesforceOauth2ProviderConfig < Oauth2ProviderConfigOutput; end
|
|
4053
4570
|
class MicrosoftOauth2ProviderConfig < Oauth2ProviderConfigOutput; end
|
|
4571
|
+
class AtlassianOauth2ProviderConfig < Oauth2ProviderConfigOutput; end
|
|
4572
|
+
class LinkedinOauth2ProviderConfig < Oauth2ProviderConfigOutput; end
|
|
4573
|
+
class IncludedOauth2ProviderConfig < Oauth2ProviderConfigOutput; end
|
|
4054
4574
|
class Unknown < Oauth2ProviderConfigOutput; end
|
|
4055
4575
|
end
|
|
4056
4576
|
|
|
@@ -4213,10 +4733,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
4213
4733
|
# The OAuth2 discovery information for the Salesforce provider.
|
|
4214
4734
|
# @return [Types::Oauth2Discovery]
|
|
4215
4735
|
#
|
|
4736
|
+
# @!attribute [rw] client_id
|
|
4737
|
+
# The client ID for the Salesforce OAuth2 provider.
|
|
4738
|
+
# @return [String]
|
|
4739
|
+
#
|
|
4216
4740
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SalesforceOauth2ProviderConfigOutput AWS API Documentation
|
|
4217
4741
|
#
|
|
4218
4742
|
class SalesforceOauth2ProviderConfigOutput < Struct.new(
|
|
4219
|
-
:oauth_discovery
|
|
4743
|
+
:oauth_discovery,
|
|
4744
|
+
:client_id)
|
|
4220
4745
|
SENSITIVE = []
|
|
4221
4746
|
include Aws::Structure
|
|
4222
4747
|
end
|
|
@@ -4275,6 +4800,55 @@ module Aws::BedrockAgentCoreControl
|
|
|
4275
4800
|
include Aws::Structure
|
|
4276
4801
|
end
|
|
4277
4802
|
|
|
4803
|
+
# A configuration for a self-managed memory strategy.
|
|
4804
|
+
#
|
|
4805
|
+
# @!attribute [rw] trigger_conditions
|
|
4806
|
+
# A list of conditions that trigger memory processing.
|
|
4807
|
+
# @return [Array<Types::TriggerCondition>]
|
|
4808
|
+
#
|
|
4809
|
+
# @!attribute [rw] invocation_configuration
|
|
4810
|
+
# The configuration to use when invoking memory processing.
|
|
4811
|
+
# @return [Types::InvocationConfiguration]
|
|
4812
|
+
#
|
|
4813
|
+
# @!attribute [rw] historical_context_window_size
|
|
4814
|
+
# The number of historical messages to include in processing context.
|
|
4815
|
+
# @return [Integer]
|
|
4816
|
+
#
|
|
4817
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SelfManagedConfiguration AWS API Documentation
|
|
4818
|
+
#
|
|
4819
|
+
class SelfManagedConfiguration < Struct.new(
|
|
4820
|
+
:trigger_conditions,
|
|
4821
|
+
:invocation_configuration,
|
|
4822
|
+
:historical_context_window_size)
|
|
4823
|
+
SENSITIVE = []
|
|
4824
|
+
include Aws::Structure
|
|
4825
|
+
end
|
|
4826
|
+
|
|
4827
|
+
# Input configuration for a self-managed memory strategy.
|
|
4828
|
+
#
|
|
4829
|
+
# @!attribute [rw] trigger_conditions
|
|
4830
|
+
# A list of conditions that trigger memory processing.
|
|
4831
|
+
# @return [Array<Types::TriggerConditionInput>]
|
|
4832
|
+
#
|
|
4833
|
+
# @!attribute [rw] invocation_configuration
|
|
4834
|
+
# Configuration to invoke a self-managed memory processing pipeline
|
|
4835
|
+
# with.
|
|
4836
|
+
# @return [Types::InvocationConfigurationInput]
|
|
4837
|
+
#
|
|
4838
|
+
# @!attribute [rw] historical_context_window_size
|
|
4839
|
+
# Number of historical messages to include in processing context.
|
|
4840
|
+
# @return [Integer]
|
|
4841
|
+
#
|
|
4842
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SelfManagedConfigurationInput AWS API Documentation
|
|
4843
|
+
#
|
|
4844
|
+
class SelfManagedConfigurationInput < Struct.new(
|
|
4845
|
+
:trigger_conditions,
|
|
4846
|
+
:invocation_configuration,
|
|
4847
|
+
:historical_context_window_size)
|
|
4848
|
+
SENSITIVE = []
|
|
4849
|
+
include Aws::Structure
|
|
4850
|
+
end
|
|
4851
|
+
|
|
4278
4852
|
# Contains semantic consolidation override configuration.
|
|
4279
4853
|
#
|
|
4280
4854
|
# @!attribute [rw] append_to_prompt
|
|
@@ -4488,10 +5062,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
4488
5062
|
# The OAuth2 discovery information for the Slack provider.
|
|
4489
5063
|
# @return [Types::Oauth2Discovery]
|
|
4490
5064
|
#
|
|
5065
|
+
# @!attribute [rw] client_id
|
|
5066
|
+
# The client ID for the Slack OAuth2 provider.
|
|
5067
|
+
# @return [String]
|
|
5068
|
+
#
|
|
4491
5069
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SlackOauth2ProviderConfigOutput AWS API Documentation
|
|
4492
5070
|
#
|
|
4493
5071
|
class SlackOauth2ProviderConfigOutput < Struct.new(
|
|
4494
|
-
:oauth_discovery
|
|
5072
|
+
:oauth_discovery,
|
|
5073
|
+
:client_id)
|
|
4495
5074
|
SENSITIVE = []
|
|
4496
5075
|
include Aws::Structure
|
|
4497
5076
|
end
|
|
@@ -4510,12 +5089,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
4510
5089
|
# The consolidation configuration for the memory strategy.
|
|
4511
5090
|
# @return [Types::ConsolidationConfiguration]
|
|
4512
5091
|
#
|
|
5092
|
+
# @!attribute [rw] self_managed_configuration
|
|
5093
|
+
# Self-managed configuration settings.
|
|
5094
|
+
# @return [Types::SelfManagedConfiguration]
|
|
5095
|
+
#
|
|
4513
5096
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/StrategyConfiguration AWS API Documentation
|
|
4514
5097
|
#
|
|
4515
5098
|
class StrategyConfiguration < Struct.new(
|
|
4516
5099
|
:type,
|
|
4517
5100
|
:extraction,
|
|
4518
|
-
:consolidation
|
|
5101
|
+
:consolidation,
|
|
5102
|
+
:self_managed_configuration)
|
|
4519
5103
|
SENSITIVE = []
|
|
4520
5104
|
include Aws::Structure
|
|
4521
5105
|
end
|
|
@@ -4597,6 +5181,35 @@ module Aws::BedrockAgentCoreControl
|
|
|
4597
5181
|
include Aws::Structure
|
|
4598
5182
|
end
|
|
4599
5183
|
|
|
5184
|
+
# @!attribute [rw] gateway_identifier
|
|
5185
|
+
# The gateway Identifier.
|
|
5186
|
+
# @return [String]
|
|
5187
|
+
#
|
|
5188
|
+
# @!attribute [rw] target_id_list
|
|
5189
|
+
# The target ID list.
|
|
5190
|
+
# @return [Array<String>]
|
|
5191
|
+
#
|
|
5192
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SynchronizeGatewayTargetsRequest AWS API Documentation
|
|
5193
|
+
#
|
|
5194
|
+
class SynchronizeGatewayTargetsRequest < Struct.new(
|
|
5195
|
+
:gateway_identifier,
|
|
5196
|
+
:target_id_list)
|
|
5197
|
+
SENSITIVE = []
|
|
5198
|
+
include Aws::Structure
|
|
5199
|
+
end
|
|
5200
|
+
|
|
5201
|
+
# @!attribute [rw] targets
|
|
5202
|
+
# The gateway targets for synchronization.
|
|
5203
|
+
# @return [Array<Types::GatewayTarget>]
|
|
5204
|
+
#
|
|
5205
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SynchronizeGatewayTargetsResponse AWS API Documentation
|
|
5206
|
+
#
|
|
5207
|
+
class SynchronizeGatewayTargetsResponse < Struct.new(
|
|
5208
|
+
:targets)
|
|
5209
|
+
SENSITIVE = []
|
|
5210
|
+
include Aws::Structure
|
|
5211
|
+
end
|
|
5212
|
+
|
|
4600
5213
|
# @!attribute [rw] resource_arn
|
|
4601
5214
|
# The Amazon Resource Name (ARN) of the resource that you want to tag.
|
|
4602
5215
|
# @return [String]
|
|
@@ -4710,6 +5323,62 @@ module Aws::BedrockAgentCoreControl
|
|
|
4710
5323
|
include Aws::Structure
|
|
4711
5324
|
end
|
|
4712
5325
|
|
|
5326
|
+
# Trigger configuration based on time.
|
|
5327
|
+
#
|
|
5328
|
+
# @!attribute [rw] idle_session_timeout
|
|
5329
|
+
# Idle session timeout (seconds) that triggers memory processing.
|
|
5330
|
+
# @return [Integer]
|
|
5331
|
+
#
|
|
5332
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/TimeBasedTrigger AWS API Documentation
|
|
5333
|
+
#
|
|
5334
|
+
class TimeBasedTrigger < Struct.new(
|
|
5335
|
+
:idle_session_timeout)
|
|
5336
|
+
SENSITIVE = []
|
|
5337
|
+
include Aws::Structure
|
|
5338
|
+
end
|
|
5339
|
+
|
|
5340
|
+
# Trigger configuration based on time.
|
|
5341
|
+
#
|
|
5342
|
+
# @!attribute [rw] idle_session_timeout
|
|
5343
|
+
# Idle session timeout (seconds) that triggers memory processing.
|
|
5344
|
+
# @return [Integer]
|
|
5345
|
+
#
|
|
5346
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/TimeBasedTriggerInput AWS API Documentation
|
|
5347
|
+
#
|
|
5348
|
+
class TimeBasedTriggerInput < Struct.new(
|
|
5349
|
+
:idle_session_timeout)
|
|
5350
|
+
SENSITIVE = []
|
|
5351
|
+
include Aws::Structure
|
|
5352
|
+
end
|
|
5353
|
+
|
|
5354
|
+
# Trigger configuration based on tokens.
|
|
5355
|
+
#
|
|
5356
|
+
# @!attribute [rw] token_count
|
|
5357
|
+
# Number of tokens that trigger memory processing.
|
|
5358
|
+
# @return [Integer]
|
|
5359
|
+
#
|
|
5360
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/TokenBasedTrigger AWS API Documentation
|
|
5361
|
+
#
|
|
5362
|
+
class TokenBasedTrigger < Struct.new(
|
|
5363
|
+
:token_count)
|
|
5364
|
+
SENSITIVE = []
|
|
5365
|
+
include Aws::Structure
|
|
5366
|
+
end
|
|
5367
|
+
|
|
5368
|
+
# Trigger configuration based on tokens.
|
|
5369
|
+
#
|
|
5370
|
+
# @!attribute [rw] token_count
|
|
5371
|
+
# Number of tokens that trigger memory processing.
|
|
5372
|
+
# @return [Integer]
|
|
5373
|
+
#
|
|
5374
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/TokenBasedTriggerInput AWS API Documentation
|
|
5375
|
+
#
|
|
5376
|
+
class TokenBasedTriggerInput < Struct.new(
|
|
5377
|
+
:token_count)
|
|
5378
|
+
SENSITIVE = []
|
|
5379
|
+
include Aws::Structure
|
|
5380
|
+
end
|
|
5381
|
+
|
|
4713
5382
|
# A tool definition for a gateway target. This structure defines a tool
|
|
4714
5383
|
# that the target exposes through the Model Context Protocol.
|
|
4715
5384
|
#
|
|
@@ -4776,6 +5445,72 @@ module Aws::BedrockAgentCoreControl
|
|
|
4776
5445
|
class Unknown < ToolSchema; end
|
|
4777
5446
|
end
|
|
4778
5447
|
|
|
5448
|
+
# Condition that triggers memory processing.
|
|
5449
|
+
#
|
|
5450
|
+
# @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.
|
|
5451
|
+
#
|
|
5452
|
+
# @!attribute [rw] message_based_trigger
|
|
5453
|
+
# Message based trigger configuration.
|
|
5454
|
+
# @return [Types::MessageBasedTrigger]
|
|
5455
|
+
#
|
|
5456
|
+
# @!attribute [rw] token_based_trigger
|
|
5457
|
+
# Token based trigger configuration.
|
|
5458
|
+
# @return [Types::TokenBasedTrigger]
|
|
5459
|
+
#
|
|
5460
|
+
# @!attribute [rw] time_based_trigger
|
|
5461
|
+
# Time based trigger configuration.
|
|
5462
|
+
# @return [Types::TimeBasedTrigger]
|
|
5463
|
+
#
|
|
5464
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/TriggerCondition AWS API Documentation
|
|
5465
|
+
#
|
|
5466
|
+
class TriggerCondition < Struct.new(
|
|
5467
|
+
:message_based_trigger,
|
|
5468
|
+
:token_based_trigger,
|
|
5469
|
+
:time_based_trigger,
|
|
5470
|
+
:unknown)
|
|
5471
|
+
SENSITIVE = []
|
|
5472
|
+
include Aws::Structure
|
|
5473
|
+
include Aws::Structure::Union
|
|
5474
|
+
|
|
5475
|
+
class MessageBasedTrigger < TriggerCondition; end
|
|
5476
|
+
class TokenBasedTrigger < TriggerCondition; end
|
|
5477
|
+
class TimeBasedTrigger < TriggerCondition; end
|
|
5478
|
+
class Unknown < TriggerCondition; end
|
|
5479
|
+
end
|
|
5480
|
+
|
|
5481
|
+
# Condition that triggers memory processing.
|
|
5482
|
+
#
|
|
5483
|
+
# @note TriggerConditionInput is a union - when making an API calls you must set exactly one of the members.
|
|
5484
|
+
#
|
|
5485
|
+
# @!attribute [rw] message_based_trigger
|
|
5486
|
+
# Message based trigger configuration.
|
|
5487
|
+
# @return [Types::MessageBasedTriggerInput]
|
|
5488
|
+
#
|
|
5489
|
+
# @!attribute [rw] token_based_trigger
|
|
5490
|
+
# Token based trigger configuration.
|
|
5491
|
+
# @return [Types::TokenBasedTriggerInput]
|
|
5492
|
+
#
|
|
5493
|
+
# @!attribute [rw] time_based_trigger
|
|
5494
|
+
# Time based trigger configuration.
|
|
5495
|
+
# @return [Types::TimeBasedTriggerInput]
|
|
5496
|
+
#
|
|
5497
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/TriggerConditionInput AWS API Documentation
|
|
5498
|
+
#
|
|
5499
|
+
class TriggerConditionInput < Struct.new(
|
|
5500
|
+
:message_based_trigger,
|
|
5501
|
+
:token_based_trigger,
|
|
5502
|
+
:time_based_trigger,
|
|
5503
|
+
:unknown)
|
|
5504
|
+
SENSITIVE = []
|
|
5505
|
+
include Aws::Structure
|
|
5506
|
+
include Aws::Structure::Union
|
|
5507
|
+
|
|
5508
|
+
class MessageBasedTrigger < TriggerConditionInput; end
|
|
5509
|
+
class TokenBasedTrigger < TriggerConditionInput; end
|
|
5510
|
+
class TimeBasedTrigger < TriggerConditionInput; end
|
|
5511
|
+
class Unknown < TriggerConditionInput; end
|
|
5512
|
+
end
|
|
5513
|
+
|
|
4779
5514
|
# This exception is thrown when the JWT bearer token is invalid or not
|
|
4780
5515
|
# found for OAuth bearer token based access
|
|
4781
5516
|
#
|
|
@@ -5302,6 +6037,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
5302
6037
|
# target.
|
|
5303
6038
|
# @return [Array<Types::CredentialProviderConfiguration>]
|
|
5304
6039
|
#
|
|
6040
|
+
# @!attribute [rw] last_synchronized_at
|
|
6041
|
+
# The date and time at which the targets were last synchronized.
|
|
6042
|
+
# @return [Time]
|
|
6043
|
+
#
|
|
5305
6044
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateGatewayTargetResponse AWS API Documentation
|
|
5306
6045
|
#
|
|
5307
6046
|
class UpdateGatewayTargetResponse < Struct.new(
|
|
@@ -5314,7 +6053,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
5314
6053
|
:name,
|
|
5315
6054
|
:description,
|
|
5316
6055
|
:target_configuration,
|
|
5317
|
-
:credential_provider_configurations
|
|
6056
|
+
:credential_provider_configurations,
|
|
6057
|
+
:last_synchronized_at)
|
|
5318
6058
|
SENSITIVE = [:name, :description]
|
|
5319
6059
|
include Aws::Structure
|
|
5320
6060
|
end
|
|
@@ -5414,6 +6154,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
5414
6154
|
# The Amazon Resource Name (ARN) of the OAuth2 credential provider.
|
|
5415
6155
|
# @return [String]
|
|
5416
6156
|
#
|
|
6157
|
+
# @!attribute [rw] callback_url
|
|
6158
|
+
# Callback URL to register on the OAuth2 credential provider as an
|
|
6159
|
+
# allowed callback URL. This URL is where the OAuth2 authorization
|
|
6160
|
+
# server redirects users after they complete the authorization flow.
|
|
6161
|
+
# @return [String]
|
|
6162
|
+
#
|
|
5417
6163
|
# @!attribute [rw] oauth2_provider_config_output
|
|
5418
6164
|
# The configuration output for the OAuth2 provider.
|
|
5419
6165
|
# @return [Types::Oauth2ProviderConfigOutput]
|
|
@@ -5433,6 +6179,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5433
6179
|
:name,
|
|
5434
6180
|
:credential_provider_vendor,
|
|
5435
6181
|
:credential_provider_arn,
|
|
6182
|
+
:callback_url,
|
|
5436
6183
|
:oauth2_provider_config_output,
|
|
5437
6184
|
:created_time,
|
|
5438
6185
|
:last_updated_time)
|