aws-sdk-bedrockagentcorecontrol 1.0.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 +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-bedrockagentcorecontrol/client.rb +3844 -0
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +2405 -0
- data/lib/aws-sdk-bedrockagentcorecontrol/customizations.rb +0 -0
- data/lib/aws-sdk-bedrockagentcorecontrol/endpoint_parameters.rb +69 -0
- data/lib/aws-sdk-bedrockagentcorecontrol/endpoint_provider.rb +50 -0
- data/lib/aws-sdk-bedrockagentcorecontrol/endpoints.rb +20 -0
- data/lib/aws-sdk-bedrockagentcorecontrol/errors.rb +280 -0
- data/lib/aws-sdk-bedrockagentcorecontrol/plugins/endpoints.rb +77 -0
- data/lib/aws-sdk-bedrockagentcorecontrol/resource.rb +26 -0
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +5431 -0
- data/lib/aws-sdk-bedrockagentcorecontrol/waiters.rb +126 -0
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +62 -0
- data/sig/client.rbs +1308 -0
- data/sig/errors.rbs +60 -0
- data/sig/resource.rbs +84 -0
- data/sig/types.rbs +1674 -0
- data/sig/waiters.rbs +23 -0
- metadata +97 -0
data/sig/types.rbs
ADDED
@@ -0,0 +1,1674 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::BedrockAgentCoreControl
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class Agent
|
17
|
+
attr_accessor agent_runtime_arn: ::String
|
18
|
+
attr_accessor agent_runtime_id: ::String
|
19
|
+
attr_accessor agent_runtime_version: ::String
|
20
|
+
attr_accessor agent_runtime_name: ::String
|
21
|
+
attr_accessor description: ::String
|
22
|
+
attr_accessor last_updated_at: ::Time
|
23
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
24
|
+
SENSITIVE: [:description]
|
25
|
+
end
|
26
|
+
|
27
|
+
class AgentArtifact
|
28
|
+
attr_accessor container_configuration: Types::ContainerConfiguration
|
29
|
+
attr_accessor unknown: untyped
|
30
|
+
SENSITIVE: []
|
31
|
+
|
32
|
+
class ContainerConfiguration < AgentArtifact
|
33
|
+
end
|
34
|
+
class Unknown < AgentArtifact
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
class AgentEndpoint
|
39
|
+
attr_accessor name: ::String
|
40
|
+
attr_accessor live_version: ::String
|
41
|
+
attr_accessor target_version: ::String
|
42
|
+
attr_accessor agent_runtime_endpoint_arn: ::String
|
43
|
+
attr_accessor agent_runtime_arn: ::String
|
44
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
45
|
+
attr_accessor id: ::String
|
46
|
+
attr_accessor description: ::String
|
47
|
+
attr_accessor created_at: ::Time
|
48
|
+
attr_accessor last_updated_at: ::Time
|
49
|
+
SENSITIVE: [:name]
|
50
|
+
end
|
51
|
+
|
52
|
+
class ApiKeyCredentialProvider
|
53
|
+
attr_accessor provider_arn: ::String
|
54
|
+
attr_accessor credential_parameter_name: ::String
|
55
|
+
attr_accessor credential_prefix: ::String
|
56
|
+
attr_accessor credential_location: ("HEADER" | "QUERY_PARAMETER")
|
57
|
+
SENSITIVE: []
|
58
|
+
end
|
59
|
+
|
60
|
+
class ApiKeyCredentialProviderItem
|
61
|
+
attr_accessor name: ::String
|
62
|
+
attr_accessor credential_provider_arn: ::String
|
63
|
+
attr_accessor created_time: ::Time
|
64
|
+
attr_accessor last_updated_time: ::Time
|
65
|
+
SENSITIVE: []
|
66
|
+
end
|
67
|
+
|
68
|
+
class ApiSchemaConfiguration
|
69
|
+
attr_accessor s3: Types::S3Configuration
|
70
|
+
attr_accessor inline_payload: ::String
|
71
|
+
attr_accessor unknown: untyped
|
72
|
+
SENSITIVE: [:inline_payload]
|
73
|
+
|
74
|
+
class S3 < ApiSchemaConfiguration
|
75
|
+
end
|
76
|
+
class InlinePayload < ApiSchemaConfiguration
|
77
|
+
end
|
78
|
+
class Unknown < ApiSchemaConfiguration
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
class AuthorizerConfiguration
|
83
|
+
attr_accessor custom_jwt_authorizer: Types::CustomJWTAuthorizerConfiguration
|
84
|
+
attr_accessor unknown: untyped
|
85
|
+
SENSITIVE: []
|
86
|
+
|
87
|
+
class CustomJwtAuthorizer < AuthorizerConfiguration
|
88
|
+
end
|
89
|
+
class Unknown < AuthorizerConfiguration
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
class BrowserNetworkConfiguration
|
94
|
+
attr_accessor network_mode: ("PUBLIC")
|
95
|
+
SENSITIVE: []
|
96
|
+
end
|
97
|
+
|
98
|
+
class BrowserSummary
|
99
|
+
attr_accessor browser_id: ::String
|
100
|
+
attr_accessor browser_arn: ::String
|
101
|
+
attr_accessor name: ::String
|
102
|
+
attr_accessor description: ::String
|
103
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
104
|
+
attr_accessor created_at: ::Time
|
105
|
+
attr_accessor last_updated_at: ::Time
|
106
|
+
SENSITIVE: [:description]
|
107
|
+
end
|
108
|
+
|
109
|
+
class CodeInterpreterNetworkConfiguration
|
110
|
+
attr_accessor network_mode: ("PUBLIC" | "SANDBOX")
|
111
|
+
SENSITIVE: []
|
112
|
+
end
|
113
|
+
|
114
|
+
class CodeInterpreterSummary
|
115
|
+
attr_accessor code_interpreter_id: ::String
|
116
|
+
attr_accessor code_interpreter_arn: ::String
|
117
|
+
attr_accessor name: ::String
|
118
|
+
attr_accessor description: ::String
|
119
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
120
|
+
attr_accessor created_at: ::Time
|
121
|
+
attr_accessor last_updated_at: ::Time
|
122
|
+
SENSITIVE: [:description]
|
123
|
+
end
|
124
|
+
|
125
|
+
class ConcurrentModificationException
|
126
|
+
attr_accessor message: ::String
|
127
|
+
SENSITIVE: []
|
128
|
+
end
|
129
|
+
|
130
|
+
class ConflictException
|
131
|
+
attr_accessor message: ::String
|
132
|
+
SENSITIVE: []
|
133
|
+
end
|
134
|
+
|
135
|
+
class ConsolidationConfiguration
|
136
|
+
attr_accessor custom_consolidation_configuration: Types::CustomConsolidationConfiguration
|
137
|
+
attr_accessor unknown: untyped
|
138
|
+
SENSITIVE: []
|
139
|
+
|
140
|
+
class CustomConsolidationConfiguration < ConsolidationConfiguration
|
141
|
+
end
|
142
|
+
class Unknown < ConsolidationConfiguration
|
143
|
+
end
|
144
|
+
end
|
145
|
+
|
146
|
+
class ContainerConfiguration
|
147
|
+
attr_accessor container_uri: ::String
|
148
|
+
SENSITIVE: []
|
149
|
+
end
|
150
|
+
|
151
|
+
class CreateAgentRuntimeEndpointRequest
|
152
|
+
attr_accessor agent_runtime_id: ::String
|
153
|
+
attr_accessor name: ::String
|
154
|
+
attr_accessor agent_runtime_version: ::String
|
155
|
+
attr_accessor description: ::String
|
156
|
+
attr_accessor client_token: ::String
|
157
|
+
SENSITIVE: [:name]
|
158
|
+
end
|
159
|
+
|
160
|
+
class CreateAgentRuntimeEndpointResponse
|
161
|
+
attr_accessor target_version: ::String
|
162
|
+
attr_accessor agent_runtime_endpoint_arn: ::String
|
163
|
+
attr_accessor agent_runtime_arn: ::String
|
164
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
165
|
+
attr_accessor created_at: ::Time
|
166
|
+
SENSITIVE: []
|
167
|
+
end
|
168
|
+
|
169
|
+
class CreateAgentRuntimeRequest
|
170
|
+
attr_accessor agent_runtime_name: ::String
|
171
|
+
attr_accessor description: ::String
|
172
|
+
attr_accessor agent_runtime_artifact: Types::AgentArtifact
|
173
|
+
attr_accessor role_arn: ::String
|
174
|
+
attr_accessor network_configuration: Types::NetworkConfiguration
|
175
|
+
attr_accessor protocol_configuration: Types::ProtocolConfiguration
|
176
|
+
attr_accessor client_token: ::String
|
177
|
+
attr_accessor environment_variables: ::Hash[::String, ::String]
|
178
|
+
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
179
|
+
SENSITIVE: [:description, :environment_variables]
|
180
|
+
end
|
181
|
+
|
182
|
+
class CreateAgentRuntimeResponse
|
183
|
+
attr_accessor agent_runtime_arn: ::String
|
184
|
+
attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
|
185
|
+
attr_accessor agent_runtime_id: ::String
|
186
|
+
attr_accessor agent_runtime_version: ::String
|
187
|
+
attr_accessor created_at: ::Time
|
188
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
189
|
+
SENSITIVE: []
|
190
|
+
end
|
191
|
+
|
192
|
+
class CreateApiKeyCredentialProviderRequest
|
193
|
+
attr_accessor name: ::String
|
194
|
+
attr_accessor api_key: ::String
|
195
|
+
SENSITIVE: [:api_key]
|
196
|
+
end
|
197
|
+
|
198
|
+
class CreateApiKeyCredentialProviderResponse
|
199
|
+
attr_accessor api_key_secret_arn: Types::Secret
|
200
|
+
attr_accessor name: ::String
|
201
|
+
attr_accessor credential_provider_arn: ::String
|
202
|
+
SENSITIVE: []
|
203
|
+
end
|
204
|
+
|
205
|
+
class CreateBrowserRequest
|
206
|
+
attr_accessor name: ::String
|
207
|
+
attr_accessor description: ::String
|
208
|
+
attr_accessor execution_role_arn: ::String
|
209
|
+
attr_accessor network_configuration: Types::BrowserNetworkConfiguration
|
210
|
+
attr_accessor recording: Types::RecordingConfig
|
211
|
+
attr_accessor client_token: ::String
|
212
|
+
SENSITIVE: [:description]
|
213
|
+
end
|
214
|
+
|
215
|
+
class CreateBrowserResponse
|
216
|
+
attr_accessor browser_id: ::String
|
217
|
+
attr_accessor browser_arn: ::String
|
218
|
+
attr_accessor created_at: ::Time
|
219
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
220
|
+
SENSITIVE: []
|
221
|
+
end
|
222
|
+
|
223
|
+
class CreateCodeInterpreterRequest
|
224
|
+
attr_accessor name: ::String
|
225
|
+
attr_accessor description: ::String
|
226
|
+
attr_accessor execution_role_arn: ::String
|
227
|
+
attr_accessor network_configuration: Types::CodeInterpreterNetworkConfiguration
|
228
|
+
attr_accessor client_token: ::String
|
229
|
+
SENSITIVE: [:description]
|
230
|
+
end
|
231
|
+
|
232
|
+
class CreateCodeInterpreterResponse
|
233
|
+
attr_accessor code_interpreter_id: ::String
|
234
|
+
attr_accessor code_interpreter_arn: ::String
|
235
|
+
attr_accessor created_at: ::Time
|
236
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
237
|
+
SENSITIVE: []
|
238
|
+
end
|
239
|
+
|
240
|
+
class CreateGatewayRequest
|
241
|
+
attr_accessor name: ::String
|
242
|
+
attr_accessor description: ::String
|
243
|
+
attr_accessor client_token: ::String
|
244
|
+
attr_accessor role_arn: ::String
|
245
|
+
attr_accessor protocol_type: ("MCP")
|
246
|
+
attr_accessor protocol_configuration: Types::GatewayProtocolConfiguration
|
247
|
+
attr_accessor authorizer_type: ("CUSTOM_JWT")
|
248
|
+
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
249
|
+
attr_accessor kms_key_arn: ::String
|
250
|
+
attr_accessor exception_level: ("DEBUG")
|
251
|
+
SENSITIVE: [:name, :description]
|
252
|
+
end
|
253
|
+
|
254
|
+
class CreateGatewayResponse
|
255
|
+
attr_accessor gateway_arn: ::String
|
256
|
+
attr_accessor gateway_id: ::String
|
257
|
+
attr_accessor gateway_url: ::String
|
258
|
+
attr_accessor created_at: ::Time
|
259
|
+
attr_accessor updated_at: ::Time
|
260
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
|
261
|
+
attr_accessor status_reasons: ::Array[::String]
|
262
|
+
attr_accessor name: ::String
|
263
|
+
attr_accessor description: ::String
|
264
|
+
attr_accessor role_arn: ::String
|
265
|
+
attr_accessor protocol_type: ("MCP")
|
266
|
+
attr_accessor protocol_configuration: Types::GatewayProtocolConfiguration
|
267
|
+
attr_accessor authorizer_type: ("CUSTOM_JWT")
|
268
|
+
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
269
|
+
attr_accessor kms_key_arn: ::String
|
270
|
+
attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
|
271
|
+
attr_accessor exception_level: ("DEBUG")
|
272
|
+
SENSITIVE: [:name, :description]
|
273
|
+
end
|
274
|
+
|
275
|
+
class CreateGatewayTargetRequest
|
276
|
+
attr_accessor gateway_identifier: ::String
|
277
|
+
attr_accessor name: ::String
|
278
|
+
attr_accessor description: ::String
|
279
|
+
attr_accessor client_token: ::String
|
280
|
+
attr_accessor target_configuration: Types::TargetConfiguration
|
281
|
+
attr_accessor credential_provider_configurations: ::Array[Types::CredentialProviderConfiguration]
|
282
|
+
SENSITIVE: [:name, :description]
|
283
|
+
end
|
284
|
+
|
285
|
+
class CreateGatewayTargetResponse
|
286
|
+
attr_accessor gateway_arn: ::String
|
287
|
+
attr_accessor target_id: ::String
|
288
|
+
attr_accessor created_at: ::Time
|
289
|
+
attr_accessor updated_at: ::Time
|
290
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
|
291
|
+
attr_accessor status_reasons: ::Array[::String]
|
292
|
+
attr_accessor name: ::String
|
293
|
+
attr_accessor description: ::String
|
294
|
+
attr_accessor target_configuration: Types::TargetConfiguration
|
295
|
+
attr_accessor credential_provider_configurations: ::Array[Types::CredentialProviderConfiguration]
|
296
|
+
SENSITIVE: [:name, :description]
|
297
|
+
end
|
298
|
+
|
299
|
+
class CreateMemoryInput
|
300
|
+
attr_accessor client_token: ::String
|
301
|
+
attr_accessor name: ::String
|
302
|
+
attr_accessor description: ::String
|
303
|
+
attr_accessor encryption_key_arn: ::String
|
304
|
+
attr_accessor memory_execution_role_arn: ::String
|
305
|
+
attr_accessor event_expiry_duration: ::Integer
|
306
|
+
attr_accessor memory_strategies: ::Array[Types::MemoryStrategyInput]
|
307
|
+
SENSITIVE: [:description]
|
308
|
+
end
|
309
|
+
|
310
|
+
class CreateMemoryOutput
|
311
|
+
attr_accessor memory: Types::Memory
|
312
|
+
SENSITIVE: []
|
313
|
+
end
|
314
|
+
|
315
|
+
class CreateOauth2CredentialProviderRequest
|
316
|
+
attr_accessor name: ::String
|
317
|
+
attr_accessor credential_provider_vendor: ("GoogleOauth2" | "GithubOauth2" | "SlackOauth2" | "SalesforceOauth2" | "MicrosoftOauth2" | "CustomOauth2")
|
318
|
+
attr_accessor oauth2_provider_config_input: Types::Oauth2ProviderConfigInput
|
319
|
+
SENSITIVE: []
|
320
|
+
end
|
321
|
+
|
322
|
+
class CreateOauth2CredentialProviderResponse
|
323
|
+
attr_accessor client_secret_arn: Types::Secret
|
324
|
+
attr_accessor name: ::String
|
325
|
+
attr_accessor credential_provider_arn: ::String
|
326
|
+
SENSITIVE: []
|
327
|
+
end
|
328
|
+
|
329
|
+
class CreateWorkloadIdentityRequest
|
330
|
+
attr_accessor name: ::String
|
331
|
+
attr_accessor allowed_resource_oauth_2_return_urls: ::Array[::String]
|
332
|
+
SENSITIVE: []
|
333
|
+
end
|
334
|
+
|
335
|
+
class CreateWorkloadIdentityResponse
|
336
|
+
attr_accessor name: ::String
|
337
|
+
attr_accessor workload_identity_arn: ::String
|
338
|
+
attr_accessor allowed_resource_oauth_2_return_urls: ::Array[::String]
|
339
|
+
SENSITIVE: []
|
340
|
+
end
|
341
|
+
|
342
|
+
class CredentialProvider
|
343
|
+
attr_accessor oauth_credential_provider: Types::OAuthCredentialProvider
|
344
|
+
attr_accessor api_key_credential_provider: Types::ApiKeyCredentialProvider
|
345
|
+
attr_accessor unknown: untyped
|
346
|
+
SENSITIVE: []
|
347
|
+
|
348
|
+
class OauthCredentialProvider < CredentialProvider
|
349
|
+
end
|
350
|
+
class ApiKeyCredentialProvider < CredentialProvider
|
351
|
+
end
|
352
|
+
class Unknown < CredentialProvider
|
353
|
+
end
|
354
|
+
end
|
355
|
+
|
356
|
+
class CredentialProviderConfiguration
|
357
|
+
attr_accessor credential_provider_type: ("GATEWAY_IAM_ROLE" | "OAUTH" | "API_KEY")
|
358
|
+
attr_accessor credential_provider: Types::CredentialProvider
|
359
|
+
SENSITIVE: []
|
360
|
+
end
|
361
|
+
|
362
|
+
class CustomConfigurationInput
|
363
|
+
attr_accessor semantic_override: Types::SemanticOverrideConfigurationInput
|
364
|
+
attr_accessor summary_override: Types::SummaryOverrideConfigurationInput
|
365
|
+
attr_accessor user_preference_override: Types::UserPreferenceOverrideConfigurationInput
|
366
|
+
attr_accessor unknown: untyped
|
367
|
+
SENSITIVE: []
|
368
|
+
|
369
|
+
class SemanticOverride < CustomConfigurationInput
|
370
|
+
end
|
371
|
+
class SummaryOverride < CustomConfigurationInput
|
372
|
+
end
|
373
|
+
class UserPreferenceOverride < CustomConfigurationInput
|
374
|
+
end
|
375
|
+
class Unknown < CustomConfigurationInput
|
376
|
+
end
|
377
|
+
end
|
378
|
+
|
379
|
+
class CustomConsolidationConfiguration
|
380
|
+
attr_accessor semantic_consolidation_override: Types::SemanticConsolidationOverride
|
381
|
+
attr_accessor summary_consolidation_override: Types::SummaryConsolidationOverride
|
382
|
+
attr_accessor user_preference_consolidation_override: Types::UserPreferenceConsolidationOverride
|
383
|
+
attr_accessor unknown: untyped
|
384
|
+
SENSITIVE: []
|
385
|
+
|
386
|
+
class SemanticConsolidationOverride < CustomConsolidationConfiguration
|
387
|
+
end
|
388
|
+
class SummaryConsolidationOverride < CustomConsolidationConfiguration
|
389
|
+
end
|
390
|
+
class UserPreferenceConsolidationOverride < CustomConsolidationConfiguration
|
391
|
+
end
|
392
|
+
class Unknown < CustomConsolidationConfiguration
|
393
|
+
end
|
394
|
+
end
|
395
|
+
|
396
|
+
class CustomConsolidationConfigurationInput
|
397
|
+
attr_accessor semantic_consolidation_override: Types::SemanticOverrideConsolidationConfigurationInput
|
398
|
+
attr_accessor summary_consolidation_override: Types::SummaryOverrideConsolidationConfigurationInput
|
399
|
+
attr_accessor user_preference_consolidation_override: Types::UserPreferenceOverrideConsolidationConfigurationInput
|
400
|
+
attr_accessor unknown: untyped
|
401
|
+
SENSITIVE: []
|
402
|
+
|
403
|
+
class SemanticConsolidationOverride < CustomConsolidationConfigurationInput
|
404
|
+
end
|
405
|
+
class SummaryConsolidationOverride < CustomConsolidationConfigurationInput
|
406
|
+
end
|
407
|
+
class UserPreferenceConsolidationOverride < CustomConsolidationConfigurationInput
|
408
|
+
end
|
409
|
+
class Unknown < CustomConsolidationConfigurationInput
|
410
|
+
end
|
411
|
+
end
|
412
|
+
|
413
|
+
class CustomExtractionConfiguration
|
414
|
+
attr_accessor semantic_extraction_override: Types::SemanticExtractionOverride
|
415
|
+
attr_accessor user_preference_extraction_override: Types::UserPreferenceExtractionOverride
|
416
|
+
attr_accessor unknown: untyped
|
417
|
+
SENSITIVE: []
|
418
|
+
|
419
|
+
class SemanticExtractionOverride < CustomExtractionConfiguration
|
420
|
+
end
|
421
|
+
class UserPreferenceExtractionOverride < CustomExtractionConfiguration
|
422
|
+
end
|
423
|
+
class Unknown < CustomExtractionConfiguration
|
424
|
+
end
|
425
|
+
end
|
426
|
+
|
427
|
+
class CustomExtractionConfigurationInput
|
428
|
+
attr_accessor semantic_extraction_override: Types::SemanticOverrideExtractionConfigurationInput
|
429
|
+
attr_accessor user_preference_extraction_override: Types::UserPreferenceOverrideExtractionConfigurationInput
|
430
|
+
attr_accessor unknown: untyped
|
431
|
+
SENSITIVE: []
|
432
|
+
|
433
|
+
class SemanticExtractionOverride < CustomExtractionConfigurationInput
|
434
|
+
end
|
435
|
+
class UserPreferenceExtractionOverride < CustomExtractionConfigurationInput
|
436
|
+
end
|
437
|
+
class Unknown < CustomExtractionConfigurationInput
|
438
|
+
end
|
439
|
+
end
|
440
|
+
|
441
|
+
class CustomJWTAuthorizerConfiguration
|
442
|
+
attr_accessor discovery_url: ::String
|
443
|
+
attr_accessor allowed_audience: ::Array[::String]
|
444
|
+
attr_accessor allowed_clients: ::Array[::String]
|
445
|
+
SENSITIVE: []
|
446
|
+
end
|
447
|
+
|
448
|
+
class CustomMemoryStrategyInput
|
449
|
+
attr_accessor name: ::String
|
450
|
+
attr_accessor description: ::String
|
451
|
+
attr_accessor namespaces: ::Array[::String]
|
452
|
+
attr_accessor configuration: Types::CustomConfigurationInput
|
453
|
+
SENSITIVE: [:description]
|
454
|
+
end
|
455
|
+
|
456
|
+
class CustomOauth2ProviderConfigInput
|
457
|
+
attr_accessor oauth_discovery: Types::Oauth2Discovery
|
458
|
+
attr_accessor client_id: ::String
|
459
|
+
attr_accessor client_secret: ::String
|
460
|
+
SENSITIVE: [:client_secret]
|
461
|
+
end
|
462
|
+
|
463
|
+
class CustomOauth2ProviderConfigOutput
|
464
|
+
attr_accessor oauth_discovery: Types::Oauth2Discovery
|
465
|
+
SENSITIVE: []
|
466
|
+
end
|
467
|
+
|
468
|
+
class DecryptionFailure
|
469
|
+
attr_accessor message: ::String
|
470
|
+
SENSITIVE: []
|
471
|
+
end
|
472
|
+
|
473
|
+
class DeleteAgentRuntimeEndpointRequest
|
474
|
+
attr_accessor agent_runtime_id: ::String
|
475
|
+
attr_accessor endpoint_name: ::String
|
476
|
+
attr_accessor client_token: ::String
|
477
|
+
SENSITIVE: [:endpoint_name]
|
478
|
+
end
|
479
|
+
|
480
|
+
class DeleteAgentRuntimeEndpointResponse
|
481
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
482
|
+
SENSITIVE: []
|
483
|
+
end
|
484
|
+
|
485
|
+
class DeleteAgentRuntimeRequest
|
486
|
+
attr_accessor agent_runtime_id: ::String
|
487
|
+
SENSITIVE: []
|
488
|
+
end
|
489
|
+
|
490
|
+
class DeleteAgentRuntimeResponse
|
491
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
492
|
+
SENSITIVE: []
|
493
|
+
end
|
494
|
+
|
495
|
+
class DeleteApiKeyCredentialProviderRequest
|
496
|
+
attr_accessor name: ::String
|
497
|
+
SENSITIVE: []
|
498
|
+
end
|
499
|
+
|
500
|
+
class DeleteApiKeyCredentialProviderResponse < Aws::EmptyStructure
|
501
|
+
end
|
502
|
+
|
503
|
+
class DeleteBrowserRequest
|
504
|
+
attr_accessor browser_id: ::String
|
505
|
+
attr_accessor client_token: ::String
|
506
|
+
SENSITIVE: []
|
507
|
+
end
|
508
|
+
|
509
|
+
class DeleteBrowserResponse
|
510
|
+
attr_accessor browser_id: ::String
|
511
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
512
|
+
attr_accessor last_updated_at: ::Time
|
513
|
+
SENSITIVE: []
|
514
|
+
end
|
515
|
+
|
516
|
+
class DeleteCodeInterpreterRequest
|
517
|
+
attr_accessor code_interpreter_id: ::String
|
518
|
+
attr_accessor client_token: ::String
|
519
|
+
SENSITIVE: []
|
520
|
+
end
|
521
|
+
|
522
|
+
class DeleteCodeInterpreterResponse
|
523
|
+
attr_accessor code_interpreter_id: ::String
|
524
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
525
|
+
attr_accessor last_updated_at: ::Time
|
526
|
+
SENSITIVE: []
|
527
|
+
end
|
528
|
+
|
529
|
+
class DeleteGatewayRequest
|
530
|
+
attr_accessor gateway_identifier: ::String
|
531
|
+
SENSITIVE: []
|
532
|
+
end
|
533
|
+
|
534
|
+
class DeleteGatewayResponse
|
535
|
+
attr_accessor gateway_id: ::String
|
536
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
|
537
|
+
attr_accessor status_reasons: ::Array[::String]
|
538
|
+
SENSITIVE: []
|
539
|
+
end
|
540
|
+
|
541
|
+
class DeleteGatewayTargetRequest
|
542
|
+
attr_accessor gateway_identifier: ::String
|
543
|
+
attr_accessor target_id: ::String
|
544
|
+
SENSITIVE: []
|
545
|
+
end
|
546
|
+
|
547
|
+
class DeleteGatewayTargetResponse
|
548
|
+
attr_accessor gateway_arn: ::String
|
549
|
+
attr_accessor target_id: ::String
|
550
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
|
551
|
+
attr_accessor status_reasons: ::Array[::String]
|
552
|
+
SENSITIVE: []
|
553
|
+
end
|
554
|
+
|
555
|
+
class DeleteMemoryInput
|
556
|
+
attr_accessor client_token: ::String
|
557
|
+
attr_accessor memory_id: ::String
|
558
|
+
SENSITIVE: []
|
559
|
+
end
|
560
|
+
|
561
|
+
class DeleteMemoryOutput
|
562
|
+
attr_accessor memory_id: ::String
|
563
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "FAILED" | "DELETING")
|
564
|
+
SENSITIVE: []
|
565
|
+
end
|
566
|
+
|
567
|
+
class DeleteMemoryStrategyInput
|
568
|
+
attr_accessor memory_strategy_id: ::String
|
569
|
+
SENSITIVE: []
|
570
|
+
end
|
571
|
+
|
572
|
+
class DeleteOauth2CredentialProviderRequest
|
573
|
+
attr_accessor name: ::String
|
574
|
+
SENSITIVE: []
|
575
|
+
end
|
576
|
+
|
577
|
+
class DeleteOauth2CredentialProviderResponse < Aws::EmptyStructure
|
578
|
+
end
|
579
|
+
|
580
|
+
class DeleteWorkloadIdentityRequest
|
581
|
+
attr_accessor name: ::String
|
582
|
+
SENSITIVE: []
|
583
|
+
end
|
584
|
+
|
585
|
+
class DeleteWorkloadIdentityResponse < Aws::EmptyStructure
|
586
|
+
end
|
587
|
+
|
588
|
+
class EncryptionFailure
|
589
|
+
attr_accessor message: ::String
|
590
|
+
SENSITIVE: []
|
591
|
+
end
|
592
|
+
|
593
|
+
class ExtractionConfiguration
|
594
|
+
attr_accessor custom_extraction_configuration: Types::CustomExtractionConfiguration
|
595
|
+
attr_accessor unknown: untyped
|
596
|
+
SENSITIVE: []
|
597
|
+
|
598
|
+
class CustomExtractionConfiguration < ExtractionConfiguration
|
599
|
+
end
|
600
|
+
class Unknown < ExtractionConfiguration
|
601
|
+
end
|
602
|
+
end
|
603
|
+
|
604
|
+
class GatewayProtocolConfiguration
|
605
|
+
attr_accessor mcp: Types::MCPGatewayConfiguration
|
606
|
+
attr_accessor unknown: untyped
|
607
|
+
SENSITIVE: []
|
608
|
+
|
609
|
+
class Mcp < GatewayProtocolConfiguration
|
610
|
+
end
|
611
|
+
class Unknown < GatewayProtocolConfiguration
|
612
|
+
end
|
613
|
+
end
|
614
|
+
|
615
|
+
class GatewaySummary
|
616
|
+
attr_accessor gateway_id: ::String
|
617
|
+
attr_accessor name: ::String
|
618
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
|
619
|
+
attr_accessor description: ::String
|
620
|
+
attr_accessor created_at: ::Time
|
621
|
+
attr_accessor updated_at: ::Time
|
622
|
+
attr_accessor authorizer_type: ("CUSTOM_JWT")
|
623
|
+
attr_accessor protocol_type: ("MCP")
|
624
|
+
SENSITIVE: [:name, :description]
|
625
|
+
end
|
626
|
+
|
627
|
+
class GetAgentRuntimeEndpointRequest
|
628
|
+
attr_accessor agent_runtime_id: ::String
|
629
|
+
attr_accessor endpoint_name: ::String
|
630
|
+
SENSITIVE: [:endpoint_name]
|
631
|
+
end
|
632
|
+
|
633
|
+
class GetAgentRuntimeEndpointResponse
|
634
|
+
attr_accessor live_version: ::String
|
635
|
+
attr_accessor target_version: ::String
|
636
|
+
attr_accessor agent_runtime_endpoint_arn: ::String
|
637
|
+
attr_accessor agent_runtime_arn: ::String
|
638
|
+
attr_accessor description: ::String
|
639
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
640
|
+
attr_accessor created_at: ::Time
|
641
|
+
attr_accessor last_updated_at: ::Time
|
642
|
+
attr_accessor failure_reason: ::String
|
643
|
+
attr_accessor name: ::String
|
644
|
+
attr_accessor id: ::String
|
645
|
+
SENSITIVE: [:name]
|
646
|
+
end
|
647
|
+
|
648
|
+
class GetAgentRuntimeRequest
|
649
|
+
attr_accessor agent_runtime_id: ::String
|
650
|
+
attr_accessor agent_runtime_version: ::String
|
651
|
+
SENSITIVE: []
|
652
|
+
end
|
653
|
+
|
654
|
+
class GetAgentRuntimeResponse
|
655
|
+
attr_accessor agent_runtime_arn: ::String
|
656
|
+
attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
|
657
|
+
attr_accessor agent_runtime_name: ::String
|
658
|
+
attr_accessor description: ::String
|
659
|
+
attr_accessor agent_runtime_id: ::String
|
660
|
+
attr_accessor agent_runtime_version: ::String
|
661
|
+
attr_accessor created_at: ::Time
|
662
|
+
attr_accessor last_updated_at: ::Time
|
663
|
+
attr_accessor role_arn: ::String
|
664
|
+
attr_accessor agent_runtime_artifact: Types::AgentArtifact
|
665
|
+
attr_accessor network_configuration: Types::NetworkConfiguration
|
666
|
+
attr_accessor protocol_configuration: Types::ProtocolConfiguration
|
667
|
+
attr_accessor environment_variables: ::Hash[::String, ::String]
|
668
|
+
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
669
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
670
|
+
SENSITIVE: [:description, :environment_variables]
|
671
|
+
end
|
672
|
+
|
673
|
+
class GetApiKeyCredentialProviderRequest
|
674
|
+
attr_accessor name: ::String
|
675
|
+
SENSITIVE: []
|
676
|
+
end
|
677
|
+
|
678
|
+
class GetApiKeyCredentialProviderResponse
|
679
|
+
attr_accessor api_key_secret_arn: Types::Secret
|
680
|
+
attr_accessor name: ::String
|
681
|
+
attr_accessor credential_provider_arn: ::String
|
682
|
+
attr_accessor created_time: ::Time
|
683
|
+
attr_accessor last_updated_time: ::Time
|
684
|
+
SENSITIVE: []
|
685
|
+
end
|
686
|
+
|
687
|
+
class GetBrowserRequest
|
688
|
+
attr_accessor browser_id: ::String
|
689
|
+
SENSITIVE: []
|
690
|
+
end
|
691
|
+
|
692
|
+
class GetBrowserResponse
|
693
|
+
attr_accessor browser_id: ::String
|
694
|
+
attr_accessor browser_arn: ::String
|
695
|
+
attr_accessor name: ::String
|
696
|
+
attr_accessor description: ::String
|
697
|
+
attr_accessor execution_role_arn: ::String
|
698
|
+
attr_accessor network_configuration: Types::BrowserNetworkConfiguration
|
699
|
+
attr_accessor recording: Types::RecordingConfig
|
700
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
701
|
+
attr_accessor created_at: ::Time
|
702
|
+
attr_accessor last_updated_at: ::Time
|
703
|
+
SENSITIVE: [:description]
|
704
|
+
end
|
705
|
+
|
706
|
+
class GetCodeInterpreterRequest
|
707
|
+
attr_accessor code_interpreter_id: ::String
|
708
|
+
SENSITIVE: []
|
709
|
+
end
|
710
|
+
|
711
|
+
class GetCodeInterpreterResponse
|
712
|
+
attr_accessor code_interpreter_id: ::String
|
713
|
+
attr_accessor code_interpreter_arn: ::String
|
714
|
+
attr_accessor name: ::String
|
715
|
+
attr_accessor description: ::String
|
716
|
+
attr_accessor execution_role_arn: ::String
|
717
|
+
attr_accessor network_configuration: Types::CodeInterpreterNetworkConfiguration
|
718
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
719
|
+
attr_accessor created_at: ::Time
|
720
|
+
attr_accessor last_updated_at: ::Time
|
721
|
+
SENSITIVE: [:description]
|
722
|
+
end
|
723
|
+
|
724
|
+
class GetGatewayRequest
|
725
|
+
attr_accessor gateway_identifier: ::String
|
726
|
+
SENSITIVE: []
|
727
|
+
end
|
728
|
+
|
729
|
+
class GetGatewayResponse
|
730
|
+
attr_accessor gateway_arn: ::String
|
731
|
+
attr_accessor gateway_id: ::String
|
732
|
+
attr_accessor gateway_url: ::String
|
733
|
+
attr_accessor created_at: ::Time
|
734
|
+
attr_accessor updated_at: ::Time
|
735
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
|
736
|
+
attr_accessor status_reasons: ::Array[::String]
|
737
|
+
attr_accessor name: ::String
|
738
|
+
attr_accessor description: ::String
|
739
|
+
attr_accessor role_arn: ::String
|
740
|
+
attr_accessor protocol_type: ("MCP")
|
741
|
+
attr_accessor protocol_configuration: Types::GatewayProtocolConfiguration
|
742
|
+
attr_accessor authorizer_type: ("CUSTOM_JWT")
|
743
|
+
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
744
|
+
attr_accessor kms_key_arn: ::String
|
745
|
+
attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
|
746
|
+
attr_accessor exception_level: ("DEBUG")
|
747
|
+
SENSITIVE: [:name, :description]
|
748
|
+
end
|
749
|
+
|
750
|
+
class GetGatewayTargetRequest
|
751
|
+
attr_accessor gateway_identifier: ::String
|
752
|
+
attr_accessor target_id: ::String
|
753
|
+
SENSITIVE: []
|
754
|
+
end
|
755
|
+
|
756
|
+
class GetGatewayTargetResponse
|
757
|
+
attr_accessor gateway_arn: ::String
|
758
|
+
attr_accessor target_id: ::String
|
759
|
+
attr_accessor created_at: ::Time
|
760
|
+
attr_accessor updated_at: ::Time
|
761
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
|
762
|
+
attr_accessor status_reasons: ::Array[::String]
|
763
|
+
attr_accessor name: ::String
|
764
|
+
attr_accessor description: ::String
|
765
|
+
attr_accessor target_configuration: Types::TargetConfiguration
|
766
|
+
attr_accessor credential_provider_configurations: ::Array[Types::CredentialProviderConfiguration]
|
767
|
+
SENSITIVE: [:name, :description]
|
768
|
+
end
|
769
|
+
|
770
|
+
class GetMemoryInput
|
771
|
+
attr_accessor memory_id: ::String
|
772
|
+
SENSITIVE: []
|
773
|
+
end
|
774
|
+
|
775
|
+
class GetMemoryOutput
|
776
|
+
attr_accessor memory: Types::Memory
|
777
|
+
SENSITIVE: []
|
778
|
+
end
|
779
|
+
|
780
|
+
class GetOauth2CredentialProviderRequest
|
781
|
+
attr_accessor name: ::String
|
782
|
+
SENSITIVE: []
|
783
|
+
end
|
784
|
+
|
785
|
+
class GetOauth2CredentialProviderResponse
|
786
|
+
attr_accessor client_secret_arn: Types::Secret
|
787
|
+
attr_accessor name: ::String
|
788
|
+
attr_accessor credential_provider_arn: ::String
|
789
|
+
attr_accessor credential_provider_vendor: ("GoogleOauth2" | "GithubOauth2" | "SlackOauth2" | "SalesforceOauth2" | "MicrosoftOauth2" | "CustomOauth2")
|
790
|
+
attr_accessor oauth2_provider_config_output: Types::Oauth2ProviderConfigOutput
|
791
|
+
attr_accessor created_time: ::Time
|
792
|
+
attr_accessor last_updated_time: ::Time
|
793
|
+
SENSITIVE: []
|
794
|
+
end
|
795
|
+
|
796
|
+
class GetTokenVaultRequest
|
797
|
+
attr_accessor token_vault_id: ::String
|
798
|
+
SENSITIVE: []
|
799
|
+
end
|
800
|
+
|
801
|
+
class GetTokenVaultResponse
|
802
|
+
attr_accessor token_vault_id: ::String
|
803
|
+
attr_accessor kms_configuration: Types::KmsConfiguration
|
804
|
+
attr_accessor last_modified_date: ::Time
|
805
|
+
SENSITIVE: []
|
806
|
+
end
|
807
|
+
|
808
|
+
class GetWorkloadIdentityRequest
|
809
|
+
attr_accessor name: ::String
|
810
|
+
SENSITIVE: []
|
811
|
+
end
|
812
|
+
|
813
|
+
class GetWorkloadIdentityResponse
|
814
|
+
attr_accessor name: ::String
|
815
|
+
attr_accessor workload_identity_arn: ::String
|
816
|
+
attr_accessor allowed_resource_oauth_2_return_urls: ::Array[::String]
|
817
|
+
attr_accessor created_time: ::Time
|
818
|
+
attr_accessor last_updated_time: ::Time
|
819
|
+
SENSITIVE: []
|
820
|
+
end
|
821
|
+
|
822
|
+
class GithubOauth2ProviderConfigInput
|
823
|
+
attr_accessor client_id: ::String
|
824
|
+
attr_accessor client_secret: ::String
|
825
|
+
SENSITIVE: [:client_secret]
|
826
|
+
end
|
827
|
+
|
828
|
+
class GithubOauth2ProviderConfigOutput
|
829
|
+
attr_accessor oauth_discovery: Types::Oauth2Discovery
|
830
|
+
SENSITIVE: []
|
831
|
+
end
|
832
|
+
|
833
|
+
class GoogleOauth2ProviderConfigInput
|
834
|
+
attr_accessor client_id: ::String
|
835
|
+
attr_accessor client_secret: ::String
|
836
|
+
SENSITIVE: [:client_secret]
|
837
|
+
end
|
838
|
+
|
839
|
+
class GoogleOauth2ProviderConfigOutput
|
840
|
+
attr_accessor oauth_discovery: Types::Oauth2Discovery
|
841
|
+
SENSITIVE: []
|
842
|
+
end
|
843
|
+
|
844
|
+
class InternalServerException
|
845
|
+
attr_accessor message: ::String
|
846
|
+
SENSITIVE: []
|
847
|
+
end
|
848
|
+
|
849
|
+
class KmsConfiguration
|
850
|
+
attr_accessor key_type: ("CustomerManagedKey" | "ServiceManagedKey")
|
851
|
+
attr_accessor kms_key_arn: ::String
|
852
|
+
SENSITIVE: []
|
853
|
+
end
|
854
|
+
|
855
|
+
class ListAgentRuntimeEndpointsRequest
|
856
|
+
attr_accessor agent_runtime_id: ::String
|
857
|
+
attr_accessor max_results: ::Integer
|
858
|
+
attr_accessor next_token: ::String
|
859
|
+
SENSITIVE: []
|
860
|
+
end
|
861
|
+
|
862
|
+
class ListAgentRuntimeEndpointsResponse
|
863
|
+
attr_accessor runtime_endpoints: ::Array[Types::AgentEndpoint]
|
864
|
+
attr_accessor next_token: ::String
|
865
|
+
SENSITIVE: []
|
866
|
+
end
|
867
|
+
|
868
|
+
class ListAgentRuntimeVersionsRequest
|
869
|
+
attr_accessor agent_runtime_id: ::String
|
870
|
+
attr_accessor max_results: ::Integer
|
871
|
+
attr_accessor next_token: ::String
|
872
|
+
SENSITIVE: []
|
873
|
+
end
|
874
|
+
|
875
|
+
class ListAgentRuntimeVersionsResponse
|
876
|
+
attr_accessor agent_runtimes: ::Array[Types::Agent]
|
877
|
+
attr_accessor next_token: ::String
|
878
|
+
SENSITIVE: []
|
879
|
+
end
|
880
|
+
|
881
|
+
class ListAgentRuntimesRequest
|
882
|
+
attr_accessor max_results: ::Integer
|
883
|
+
attr_accessor next_token: ::String
|
884
|
+
SENSITIVE: []
|
885
|
+
end
|
886
|
+
|
887
|
+
class ListAgentRuntimesResponse
|
888
|
+
attr_accessor agent_runtimes: ::Array[Types::Agent]
|
889
|
+
attr_accessor next_token: ::String
|
890
|
+
SENSITIVE: []
|
891
|
+
end
|
892
|
+
|
893
|
+
class ListApiKeyCredentialProvidersRequest
|
894
|
+
attr_accessor next_token: ::String
|
895
|
+
attr_accessor max_results: ::Integer
|
896
|
+
SENSITIVE: []
|
897
|
+
end
|
898
|
+
|
899
|
+
class ListApiKeyCredentialProvidersResponse
|
900
|
+
attr_accessor credential_providers: ::Array[Types::ApiKeyCredentialProviderItem]
|
901
|
+
attr_accessor next_token: ::String
|
902
|
+
SENSITIVE: []
|
903
|
+
end
|
904
|
+
|
905
|
+
class ListBrowsersRequest
|
906
|
+
attr_accessor max_results: ::Integer
|
907
|
+
attr_accessor next_token: ::String
|
908
|
+
attr_accessor type: ("SYSTEM" | "CUSTOM")
|
909
|
+
SENSITIVE: []
|
910
|
+
end
|
911
|
+
|
912
|
+
class ListBrowsersResponse
|
913
|
+
attr_accessor browser_summaries: ::Array[Types::BrowserSummary]
|
914
|
+
attr_accessor next_token: ::String
|
915
|
+
SENSITIVE: []
|
916
|
+
end
|
917
|
+
|
918
|
+
class ListCodeInterpretersRequest
|
919
|
+
attr_accessor max_results: ::Integer
|
920
|
+
attr_accessor next_token: ::String
|
921
|
+
attr_accessor type: ("SYSTEM" | "CUSTOM")
|
922
|
+
SENSITIVE: []
|
923
|
+
end
|
924
|
+
|
925
|
+
class ListCodeInterpretersResponse
|
926
|
+
attr_accessor code_interpreter_summaries: ::Array[Types::CodeInterpreterSummary]
|
927
|
+
attr_accessor next_token: ::String
|
928
|
+
SENSITIVE: []
|
929
|
+
end
|
930
|
+
|
931
|
+
class ListGatewayTargetsRequest
|
932
|
+
attr_accessor gateway_identifier: ::String
|
933
|
+
attr_accessor max_results: ::Integer
|
934
|
+
attr_accessor next_token: ::String
|
935
|
+
SENSITIVE: []
|
936
|
+
end
|
937
|
+
|
938
|
+
class ListGatewayTargetsResponse
|
939
|
+
attr_accessor items: ::Array[Types::TargetSummary]
|
940
|
+
attr_accessor next_token: ::String
|
941
|
+
SENSITIVE: []
|
942
|
+
end
|
943
|
+
|
944
|
+
class ListGatewaysRequest
|
945
|
+
attr_accessor max_results: ::Integer
|
946
|
+
attr_accessor next_token: ::String
|
947
|
+
SENSITIVE: []
|
948
|
+
end
|
949
|
+
|
950
|
+
class ListGatewaysResponse
|
951
|
+
attr_accessor items: ::Array[Types::GatewaySummary]
|
952
|
+
attr_accessor next_token: ::String
|
953
|
+
SENSITIVE: []
|
954
|
+
end
|
955
|
+
|
956
|
+
class ListMemoriesInput
|
957
|
+
attr_accessor max_results: ::Integer
|
958
|
+
attr_accessor next_token: ::String
|
959
|
+
SENSITIVE: []
|
960
|
+
end
|
961
|
+
|
962
|
+
class ListMemoriesOutput
|
963
|
+
attr_accessor memories: ::Array[Types::MemorySummary]
|
964
|
+
attr_accessor next_token: ::String
|
965
|
+
SENSITIVE: []
|
966
|
+
end
|
967
|
+
|
968
|
+
class ListOauth2CredentialProvidersRequest
|
969
|
+
attr_accessor next_token: ::String
|
970
|
+
attr_accessor max_results: ::Integer
|
971
|
+
SENSITIVE: []
|
972
|
+
end
|
973
|
+
|
974
|
+
class ListOauth2CredentialProvidersResponse
|
975
|
+
attr_accessor credential_providers: ::Array[Types::Oauth2CredentialProviderItem]
|
976
|
+
attr_accessor next_token: ::String
|
977
|
+
SENSITIVE: []
|
978
|
+
end
|
979
|
+
|
980
|
+
class ListWorkloadIdentitiesRequest
|
981
|
+
attr_accessor next_token: ::String
|
982
|
+
attr_accessor max_results: ::Integer
|
983
|
+
SENSITIVE: []
|
984
|
+
end
|
985
|
+
|
986
|
+
class ListWorkloadIdentitiesResponse
|
987
|
+
attr_accessor workload_identities: ::Array[Types::WorkloadIdentityType]
|
988
|
+
attr_accessor next_token: ::String
|
989
|
+
SENSITIVE: []
|
990
|
+
end
|
991
|
+
|
992
|
+
class MCPGatewayConfiguration
|
993
|
+
attr_accessor supported_versions: ::Array[::String]
|
994
|
+
attr_accessor instructions: ::String
|
995
|
+
attr_accessor search_type: ("SEMANTIC")
|
996
|
+
SENSITIVE: []
|
997
|
+
end
|
998
|
+
|
999
|
+
class McpLambdaTargetConfiguration
|
1000
|
+
attr_accessor lambda_arn: ::String
|
1001
|
+
attr_accessor tool_schema: Types::ToolSchema
|
1002
|
+
SENSITIVE: []
|
1003
|
+
end
|
1004
|
+
|
1005
|
+
class McpTargetConfiguration
|
1006
|
+
attr_accessor open_api_schema: Types::ApiSchemaConfiguration
|
1007
|
+
attr_accessor smithy_model: Types::ApiSchemaConfiguration
|
1008
|
+
attr_accessor lambda: Types::McpLambdaTargetConfiguration
|
1009
|
+
attr_accessor unknown: untyped
|
1010
|
+
SENSITIVE: []
|
1011
|
+
|
1012
|
+
class OpenApiSchema < McpTargetConfiguration
|
1013
|
+
end
|
1014
|
+
class SmithyModel < McpTargetConfiguration
|
1015
|
+
end
|
1016
|
+
class Lambda < McpTargetConfiguration
|
1017
|
+
end
|
1018
|
+
class Unknown < McpTargetConfiguration
|
1019
|
+
end
|
1020
|
+
end
|
1021
|
+
|
1022
|
+
class Memory
|
1023
|
+
attr_accessor arn: ::String
|
1024
|
+
attr_accessor id: ::String
|
1025
|
+
attr_accessor name: ::String
|
1026
|
+
attr_accessor description: ::String
|
1027
|
+
attr_accessor encryption_key_arn: ::String
|
1028
|
+
attr_accessor memory_execution_role_arn: ::String
|
1029
|
+
attr_accessor event_expiry_duration: ::Integer
|
1030
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "FAILED" | "DELETING")
|
1031
|
+
attr_accessor failure_reason: ::String
|
1032
|
+
attr_accessor created_at: ::Time
|
1033
|
+
attr_accessor updated_at: ::Time
|
1034
|
+
attr_accessor strategies: ::Array[Types::MemoryStrategy]
|
1035
|
+
SENSITIVE: [:description]
|
1036
|
+
end
|
1037
|
+
|
1038
|
+
class MemoryStrategy
|
1039
|
+
attr_accessor strategy_id: ::String
|
1040
|
+
attr_accessor name: ::String
|
1041
|
+
attr_accessor description: ::String
|
1042
|
+
attr_accessor configuration: Types::StrategyConfiguration
|
1043
|
+
attr_accessor type: ("SEMANTIC" | "SUMMARIZATION" | "USER_PREFERENCE" | "CUSTOM")
|
1044
|
+
attr_accessor namespaces: ::Array[::String]
|
1045
|
+
attr_accessor created_at: ::Time
|
1046
|
+
attr_accessor updated_at: ::Time
|
1047
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED")
|
1048
|
+
SENSITIVE: [:description]
|
1049
|
+
end
|
1050
|
+
|
1051
|
+
class MemoryStrategyInput
|
1052
|
+
attr_accessor semantic_memory_strategy: Types::SemanticMemoryStrategyInput
|
1053
|
+
attr_accessor summary_memory_strategy: Types::SummaryMemoryStrategyInput
|
1054
|
+
attr_accessor user_preference_memory_strategy: Types::UserPreferenceMemoryStrategyInput
|
1055
|
+
attr_accessor custom_memory_strategy: Types::CustomMemoryStrategyInput
|
1056
|
+
attr_accessor unknown: untyped
|
1057
|
+
SENSITIVE: []
|
1058
|
+
|
1059
|
+
class SemanticMemoryStrategy < MemoryStrategyInput
|
1060
|
+
end
|
1061
|
+
class SummaryMemoryStrategy < MemoryStrategyInput
|
1062
|
+
end
|
1063
|
+
class UserPreferenceMemoryStrategy < MemoryStrategyInput
|
1064
|
+
end
|
1065
|
+
class CustomMemoryStrategy < MemoryStrategyInput
|
1066
|
+
end
|
1067
|
+
class Unknown < MemoryStrategyInput
|
1068
|
+
end
|
1069
|
+
end
|
1070
|
+
|
1071
|
+
class MemorySummary
|
1072
|
+
attr_accessor arn: ::String
|
1073
|
+
attr_accessor id: ::String
|
1074
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "FAILED" | "DELETING")
|
1075
|
+
attr_accessor created_at: ::Time
|
1076
|
+
attr_accessor updated_at: ::Time
|
1077
|
+
SENSITIVE: []
|
1078
|
+
end
|
1079
|
+
|
1080
|
+
class MicrosoftOauth2ProviderConfigInput
|
1081
|
+
attr_accessor client_id: ::String
|
1082
|
+
attr_accessor client_secret: ::String
|
1083
|
+
SENSITIVE: [:client_secret]
|
1084
|
+
end
|
1085
|
+
|
1086
|
+
class MicrosoftOauth2ProviderConfigOutput
|
1087
|
+
attr_accessor oauth_discovery: Types::Oauth2Discovery
|
1088
|
+
SENSITIVE: []
|
1089
|
+
end
|
1090
|
+
|
1091
|
+
class ModifyConsolidationConfiguration
|
1092
|
+
attr_accessor custom_consolidation_configuration: Types::CustomConsolidationConfigurationInput
|
1093
|
+
attr_accessor unknown: untyped
|
1094
|
+
SENSITIVE: []
|
1095
|
+
|
1096
|
+
class CustomConsolidationConfiguration < ModifyConsolidationConfiguration
|
1097
|
+
end
|
1098
|
+
class Unknown < ModifyConsolidationConfiguration
|
1099
|
+
end
|
1100
|
+
end
|
1101
|
+
|
1102
|
+
class ModifyExtractionConfiguration
|
1103
|
+
attr_accessor custom_extraction_configuration: Types::CustomExtractionConfigurationInput
|
1104
|
+
attr_accessor unknown: untyped
|
1105
|
+
SENSITIVE: []
|
1106
|
+
|
1107
|
+
class CustomExtractionConfiguration < ModifyExtractionConfiguration
|
1108
|
+
end
|
1109
|
+
class Unknown < ModifyExtractionConfiguration
|
1110
|
+
end
|
1111
|
+
end
|
1112
|
+
|
1113
|
+
class ModifyMemoryStrategies
|
1114
|
+
attr_accessor add_memory_strategies: ::Array[Types::MemoryStrategyInput]
|
1115
|
+
attr_accessor modify_memory_strategies: ::Array[Types::ModifyMemoryStrategyInput]
|
1116
|
+
attr_accessor delete_memory_strategies: ::Array[Types::DeleteMemoryStrategyInput]
|
1117
|
+
SENSITIVE: []
|
1118
|
+
end
|
1119
|
+
|
1120
|
+
class ModifyMemoryStrategyInput
|
1121
|
+
attr_accessor memory_strategy_id: ::String
|
1122
|
+
attr_accessor description: ::String
|
1123
|
+
attr_accessor namespaces: ::Array[::String]
|
1124
|
+
attr_accessor configuration: Types::ModifyStrategyConfiguration
|
1125
|
+
SENSITIVE: [:description]
|
1126
|
+
end
|
1127
|
+
|
1128
|
+
class ModifyStrategyConfiguration
|
1129
|
+
attr_accessor extraction: Types::ModifyExtractionConfiguration
|
1130
|
+
attr_accessor consolidation: Types::ModifyConsolidationConfiguration
|
1131
|
+
SENSITIVE: []
|
1132
|
+
end
|
1133
|
+
|
1134
|
+
class NetworkConfiguration
|
1135
|
+
attr_accessor network_mode: ("PUBLIC")
|
1136
|
+
SENSITIVE: []
|
1137
|
+
end
|
1138
|
+
|
1139
|
+
class OAuthCredentialProvider
|
1140
|
+
attr_accessor provider_arn: ::String
|
1141
|
+
attr_accessor scopes: ::Array[::String]
|
1142
|
+
attr_accessor custom_parameters: ::Hash[::String, ::String]
|
1143
|
+
SENSITIVE: []
|
1144
|
+
end
|
1145
|
+
|
1146
|
+
class Oauth2AuthorizationServerMetadata
|
1147
|
+
attr_accessor issuer: ::String
|
1148
|
+
attr_accessor authorization_endpoint: ::String
|
1149
|
+
attr_accessor token_endpoint: ::String
|
1150
|
+
attr_accessor response_types: ::Array[::String]
|
1151
|
+
SENSITIVE: []
|
1152
|
+
end
|
1153
|
+
|
1154
|
+
class Oauth2CredentialProviderItem
|
1155
|
+
attr_accessor name: ::String
|
1156
|
+
attr_accessor credential_provider_vendor: ("GoogleOauth2" | "GithubOauth2" | "SlackOauth2" | "SalesforceOauth2" | "MicrosoftOauth2" | "CustomOauth2")
|
1157
|
+
attr_accessor credential_provider_arn: ::String
|
1158
|
+
attr_accessor created_time: ::Time
|
1159
|
+
attr_accessor last_updated_time: ::Time
|
1160
|
+
SENSITIVE: []
|
1161
|
+
end
|
1162
|
+
|
1163
|
+
class Oauth2Discovery
|
1164
|
+
attr_accessor discovery_url: ::String
|
1165
|
+
attr_accessor authorization_server_metadata: Types::Oauth2AuthorizationServerMetadata
|
1166
|
+
attr_accessor unknown: untyped
|
1167
|
+
SENSITIVE: []
|
1168
|
+
|
1169
|
+
class DiscoveryUrl < Oauth2Discovery
|
1170
|
+
end
|
1171
|
+
class AuthorizationServerMetadata < Oauth2Discovery
|
1172
|
+
end
|
1173
|
+
class Unknown < Oauth2Discovery
|
1174
|
+
end
|
1175
|
+
end
|
1176
|
+
|
1177
|
+
class Oauth2ProviderConfigInput
|
1178
|
+
attr_accessor custom_oauth_2_provider_config: Types::CustomOauth2ProviderConfigInput
|
1179
|
+
attr_accessor google_oauth_2_provider_config: Types::GoogleOauth2ProviderConfigInput
|
1180
|
+
attr_accessor github_oauth_2_provider_config: Types::GithubOauth2ProviderConfigInput
|
1181
|
+
attr_accessor slack_oauth_2_provider_config: Types::SlackOauth2ProviderConfigInput
|
1182
|
+
attr_accessor salesforce_oauth_2_provider_config: Types::SalesforceOauth2ProviderConfigInput
|
1183
|
+
attr_accessor microsoft_oauth_2_provider_config: Types::MicrosoftOauth2ProviderConfigInput
|
1184
|
+
attr_accessor unknown: untyped
|
1185
|
+
SENSITIVE: []
|
1186
|
+
|
1187
|
+
class CustomOauth2ProviderConfig < Oauth2ProviderConfigInput
|
1188
|
+
end
|
1189
|
+
class GoogleOauth2ProviderConfig < Oauth2ProviderConfigInput
|
1190
|
+
end
|
1191
|
+
class GithubOauth2ProviderConfig < Oauth2ProviderConfigInput
|
1192
|
+
end
|
1193
|
+
class SlackOauth2ProviderConfig < Oauth2ProviderConfigInput
|
1194
|
+
end
|
1195
|
+
class SalesforceOauth2ProviderConfig < Oauth2ProviderConfigInput
|
1196
|
+
end
|
1197
|
+
class MicrosoftOauth2ProviderConfig < Oauth2ProviderConfigInput
|
1198
|
+
end
|
1199
|
+
class Unknown < Oauth2ProviderConfigInput
|
1200
|
+
end
|
1201
|
+
end
|
1202
|
+
|
1203
|
+
class Oauth2ProviderConfigOutput
|
1204
|
+
attr_accessor custom_oauth_2_provider_config: Types::CustomOauth2ProviderConfigOutput
|
1205
|
+
attr_accessor google_oauth_2_provider_config: Types::GoogleOauth2ProviderConfigOutput
|
1206
|
+
attr_accessor github_oauth_2_provider_config: Types::GithubOauth2ProviderConfigOutput
|
1207
|
+
attr_accessor slack_oauth_2_provider_config: Types::SlackOauth2ProviderConfigOutput
|
1208
|
+
attr_accessor salesforce_oauth_2_provider_config: Types::SalesforceOauth2ProviderConfigOutput
|
1209
|
+
attr_accessor microsoft_oauth_2_provider_config: Types::MicrosoftOauth2ProviderConfigOutput
|
1210
|
+
attr_accessor unknown: untyped
|
1211
|
+
SENSITIVE: []
|
1212
|
+
|
1213
|
+
class CustomOauth2ProviderConfig < Oauth2ProviderConfigOutput
|
1214
|
+
end
|
1215
|
+
class GoogleOauth2ProviderConfig < Oauth2ProviderConfigOutput
|
1216
|
+
end
|
1217
|
+
class GithubOauth2ProviderConfig < Oauth2ProviderConfigOutput
|
1218
|
+
end
|
1219
|
+
class SlackOauth2ProviderConfig < Oauth2ProviderConfigOutput
|
1220
|
+
end
|
1221
|
+
class SalesforceOauth2ProviderConfig < Oauth2ProviderConfigOutput
|
1222
|
+
end
|
1223
|
+
class MicrosoftOauth2ProviderConfig < Oauth2ProviderConfigOutput
|
1224
|
+
end
|
1225
|
+
class Unknown < Oauth2ProviderConfigOutput
|
1226
|
+
end
|
1227
|
+
end
|
1228
|
+
|
1229
|
+
class ProtocolConfiguration
|
1230
|
+
attr_accessor server_protocol: ("MCP" | "HTTP")
|
1231
|
+
SENSITIVE: []
|
1232
|
+
end
|
1233
|
+
|
1234
|
+
class RecordingConfig
|
1235
|
+
attr_accessor enabled: bool
|
1236
|
+
attr_accessor s3_location: Types::S3Location
|
1237
|
+
SENSITIVE: []
|
1238
|
+
end
|
1239
|
+
|
1240
|
+
class ResourceLimitExceededException
|
1241
|
+
attr_accessor message: ::String
|
1242
|
+
SENSITIVE: []
|
1243
|
+
end
|
1244
|
+
|
1245
|
+
class ResourceNotFoundException
|
1246
|
+
attr_accessor message: ::String
|
1247
|
+
SENSITIVE: []
|
1248
|
+
end
|
1249
|
+
|
1250
|
+
class S3Configuration
|
1251
|
+
attr_accessor uri: ::String
|
1252
|
+
attr_accessor bucket_owner_account_id: ::String
|
1253
|
+
SENSITIVE: []
|
1254
|
+
end
|
1255
|
+
|
1256
|
+
class S3Location
|
1257
|
+
attr_accessor bucket: ::String
|
1258
|
+
attr_accessor prefix: ::String
|
1259
|
+
SENSITIVE: []
|
1260
|
+
end
|
1261
|
+
|
1262
|
+
class SalesforceOauth2ProviderConfigInput
|
1263
|
+
attr_accessor client_id: ::String
|
1264
|
+
attr_accessor client_secret: ::String
|
1265
|
+
SENSITIVE: [:client_secret]
|
1266
|
+
end
|
1267
|
+
|
1268
|
+
class SalesforceOauth2ProviderConfigOutput
|
1269
|
+
attr_accessor oauth_discovery: Types::Oauth2Discovery
|
1270
|
+
SENSITIVE: []
|
1271
|
+
end
|
1272
|
+
|
1273
|
+
class SchemaDefinition
|
1274
|
+
attr_accessor type: ("string" | "number" | "object" | "array" | "boolean" | "integer")
|
1275
|
+
attr_accessor properties: ::Hash[::String, Types::SchemaDefinition]
|
1276
|
+
attr_accessor required: ::Array[::String]
|
1277
|
+
attr_accessor items: Types::SchemaDefinition
|
1278
|
+
attr_accessor description: ::String
|
1279
|
+
SENSITIVE: []
|
1280
|
+
end
|
1281
|
+
|
1282
|
+
class Secret
|
1283
|
+
attr_accessor secret_arn: ::String
|
1284
|
+
SENSITIVE: []
|
1285
|
+
end
|
1286
|
+
|
1287
|
+
class SemanticConsolidationOverride
|
1288
|
+
attr_accessor append_to_prompt: ::String
|
1289
|
+
attr_accessor model_id: ::String
|
1290
|
+
SENSITIVE: [:append_to_prompt]
|
1291
|
+
end
|
1292
|
+
|
1293
|
+
class SemanticExtractionOverride
|
1294
|
+
attr_accessor append_to_prompt: ::String
|
1295
|
+
attr_accessor model_id: ::String
|
1296
|
+
SENSITIVE: [:append_to_prompt]
|
1297
|
+
end
|
1298
|
+
|
1299
|
+
class SemanticMemoryStrategyInput
|
1300
|
+
attr_accessor name: ::String
|
1301
|
+
attr_accessor description: ::String
|
1302
|
+
attr_accessor namespaces: ::Array[::String]
|
1303
|
+
SENSITIVE: [:description]
|
1304
|
+
end
|
1305
|
+
|
1306
|
+
class SemanticOverrideConfigurationInput
|
1307
|
+
attr_accessor extraction: Types::SemanticOverrideExtractionConfigurationInput
|
1308
|
+
attr_accessor consolidation: Types::SemanticOverrideConsolidationConfigurationInput
|
1309
|
+
SENSITIVE: []
|
1310
|
+
end
|
1311
|
+
|
1312
|
+
class SemanticOverrideConsolidationConfigurationInput
|
1313
|
+
attr_accessor append_to_prompt: ::String
|
1314
|
+
attr_accessor model_id: ::String
|
1315
|
+
SENSITIVE: [:append_to_prompt]
|
1316
|
+
end
|
1317
|
+
|
1318
|
+
class SemanticOverrideExtractionConfigurationInput
|
1319
|
+
attr_accessor append_to_prompt: ::String
|
1320
|
+
attr_accessor model_id: ::String
|
1321
|
+
SENSITIVE: [:append_to_prompt]
|
1322
|
+
end
|
1323
|
+
|
1324
|
+
class ServiceException
|
1325
|
+
attr_accessor message: ::String
|
1326
|
+
SENSITIVE: []
|
1327
|
+
end
|
1328
|
+
|
1329
|
+
class ServiceQuotaExceededException
|
1330
|
+
attr_accessor message: ::String
|
1331
|
+
SENSITIVE: []
|
1332
|
+
end
|
1333
|
+
|
1334
|
+
class SetTokenVaultCMKRequest
|
1335
|
+
attr_accessor token_vault_id: ::String
|
1336
|
+
attr_accessor kms_configuration: Types::KmsConfiguration
|
1337
|
+
SENSITIVE: []
|
1338
|
+
end
|
1339
|
+
|
1340
|
+
class SetTokenVaultCMKResponse
|
1341
|
+
attr_accessor token_vault_id: ::String
|
1342
|
+
attr_accessor kms_configuration: Types::KmsConfiguration
|
1343
|
+
attr_accessor last_modified_date: ::Time
|
1344
|
+
SENSITIVE: []
|
1345
|
+
end
|
1346
|
+
|
1347
|
+
class SlackOauth2ProviderConfigInput
|
1348
|
+
attr_accessor client_id: ::String
|
1349
|
+
attr_accessor client_secret: ::String
|
1350
|
+
SENSITIVE: [:client_secret]
|
1351
|
+
end
|
1352
|
+
|
1353
|
+
class SlackOauth2ProviderConfigOutput
|
1354
|
+
attr_accessor oauth_discovery: Types::Oauth2Discovery
|
1355
|
+
SENSITIVE: []
|
1356
|
+
end
|
1357
|
+
|
1358
|
+
class StrategyConfiguration
|
1359
|
+
attr_accessor type: ("SEMANTIC_OVERRIDE" | "SUMMARY_OVERRIDE" | "USER_PREFERENCE_OVERRIDE")
|
1360
|
+
attr_accessor extraction: Types::ExtractionConfiguration
|
1361
|
+
attr_accessor consolidation: Types::ConsolidationConfiguration
|
1362
|
+
SENSITIVE: []
|
1363
|
+
end
|
1364
|
+
|
1365
|
+
class SummaryConsolidationOverride
|
1366
|
+
attr_accessor append_to_prompt: ::String
|
1367
|
+
attr_accessor model_id: ::String
|
1368
|
+
SENSITIVE: [:append_to_prompt]
|
1369
|
+
end
|
1370
|
+
|
1371
|
+
class SummaryMemoryStrategyInput
|
1372
|
+
attr_accessor name: ::String
|
1373
|
+
attr_accessor description: ::String
|
1374
|
+
attr_accessor namespaces: ::Array[::String]
|
1375
|
+
SENSITIVE: [:description]
|
1376
|
+
end
|
1377
|
+
|
1378
|
+
class SummaryOverrideConfigurationInput
|
1379
|
+
attr_accessor consolidation: Types::SummaryOverrideConsolidationConfigurationInput
|
1380
|
+
SENSITIVE: []
|
1381
|
+
end
|
1382
|
+
|
1383
|
+
class SummaryOverrideConsolidationConfigurationInput
|
1384
|
+
attr_accessor append_to_prompt: ::String
|
1385
|
+
attr_accessor model_id: ::String
|
1386
|
+
SENSITIVE: [:append_to_prompt]
|
1387
|
+
end
|
1388
|
+
|
1389
|
+
class TargetConfiguration
|
1390
|
+
attr_accessor mcp: Types::McpTargetConfiguration
|
1391
|
+
attr_accessor unknown: untyped
|
1392
|
+
SENSITIVE: []
|
1393
|
+
|
1394
|
+
class Mcp < TargetConfiguration
|
1395
|
+
end
|
1396
|
+
class Unknown < TargetConfiguration
|
1397
|
+
end
|
1398
|
+
end
|
1399
|
+
|
1400
|
+
class TargetSummary
|
1401
|
+
attr_accessor target_id: ::String
|
1402
|
+
attr_accessor name: ::String
|
1403
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
|
1404
|
+
attr_accessor description: ::String
|
1405
|
+
attr_accessor created_at: ::Time
|
1406
|
+
attr_accessor updated_at: ::Time
|
1407
|
+
SENSITIVE: [:name, :description]
|
1408
|
+
end
|
1409
|
+
|
1410
|
+
class ThrottledException
|
1411
|
+
attr_accessor message: ::String
|
1412
|
+
SENSITIVE: []
|
1413
|
+
end
|
1414
|
+
|
1415
|
+
class ThrottlingException
|
1416
|
+
attr_accessor message: ::String
|
1417
|
+
SENSITIVE: []
|
1418
|
+
end
|
1419
|
+
|
1420
|
+
class ToolDefinition
|
1421
|
+
attr_accessor name: ::String
|
1422
|
+
attr_accessor description: ::String
|
1423
|
+
attr_accessor input_schema: Types::SchemaDefinition
|
1424
|
+
attr_accessor output_schema: Types::SchemaDefinition
|
1425
|
+
SENSITIVE: []
|
1426
|
+
end
|
1427
|
+
|
1428
|
+
class ToolSchema
|
1429
|
+
attr_accessor s3: Types::S3Configuration
|
1430
|
+
attr_accessor inline_payload: ::Array[Types::ToolDefinition]
|
1431
|
+
attr_accessor unknown: untyped
|
1432
|
+
SENSITIVE: []
|
1433
|
+
|
1434
|
+
class S3 < ToolSchema
|
1435
|
+
end
|
1436
|
+
class InlinePayload < ToolSchema
|
1437
|
+
end
|
1438
|
+
class Unknown < ToolSchema
|
1439
|
+
end
|
1440
|
+
end
|
1441
|
+
|
1442
|
+
class UnauthorizedException
|
1443
|
+
attr_accessor message: ::String
|
1444
|
+
SENSITIVE: []
|
1445
|
+
end
|
1446
|
+
|
1447
|
+
class UpdateAgentRuntimeEndpointRequest
|
1448
|
+
attr_accessor agent_runtime_id: ::String
|
1449
|
+
attr_accessor endpoint_name: ::String
|
1450
|
+
attr_accessor agent_runtime_version: ::String
|
1451
|
+
attr_accessor description: ::String
|
1452
|
+
attr_accessor client_token: ::String
|
1453
|
+
SENSITIVE: [:endpoint_name]
|
1454
|
+
end
|
1455
|
+
|
1456
|
+
class UpdateAgentRuntimeEndpointResponse
|
1457
|
+
attr_accessor live_version: ::String
|
1458
|
+
attr_accessor target_version: ::String
|
1459
|
+
attr_accessor agent_runtime_endpoint_arn: ::String
|
1460
|
+
attr_accessor agent_runtime_arn: ::String
|
1461
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
1462
|
+
attr_accessor created_at: ::Time
|
1463
|
+
attr_accessor last_updated_at: ::Time
|
1464
|
+
SENSITIVE: []
|
1465
|
+
end
|
1466
|
+
|
1467
|
+
class UpdateAgentRuntimeRequest
|
1468
|
+
attr_accessor agent_runtime_id: ::String
|
1469
|
+
attr_accessor description: ::String
|
1470
|
+
attr_accessor agent_runtime_artifact: Types::AgentArtifact
|
1471
|
+
attr_accessor role_arn: ::String
|
1472
|
+
attr_accessor network_configuration: Types::NetworkConfiguration
|
1473
|
+
attr_accessor protocol_configuration: Types::ProtocolConfiguration
|
1474
|
+
attr_accessor client_token: ::String
|
1475
|
+
attr_accessor environment_variables: ::Hash[::String, ::String]
|
1476
|
+
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
1477
|
+
SENSITIVE: [:description, :environment_variables]
|
1478
|
+
end
|
1479
|
+
|
1480
|
+
class UpdateAgentRuntimeResponse
|
1481
|
+
attr_accessor agent_runtime_arn: ::String
|
1482
|
+
attr_accessor agent_runtime_id: ::String
|
1483
|
+
attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
|
1484
|
+
attr_accessor agent_runtime_version: ::String
|
1485
|
+
attr_accessor created_at: ::Time
|
1486
|
+
attr_accessor last_updated_at: ::Time
|
1487
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
1488
|
+
SENSITIVE: []
|
1489
|
+
end
|
1490
|
+
|
1491
|
+
class UpdateApiKeyCredentialProviderRequest
|
1492
|
+
attr_accessor name: ::String
|
1493
|
+
attr_accessor api_key: ::String
|
1494
|
+
SENSITIVE: [:api_key]
|
1495
|
+
end
|
1496
|
+
|
1497
|
+
class UpdateApiKeyCredentialProviderResponse
|
1498
|
+
attr_accessor api_key_secret_arn: Types::Secret
|
1499
|
+
attr_accessor name: ::String
|
1500
|
+
attr_accessor credential_provider_arn: ::String
|
1501
|
+
attr_accessor created_time: ::Time
|
1502
|
+
attr_accessor last_updated_time: ::Time
|
1503
|
+
SENSITIVE: []
|
1504
|
+
end
|
1505
|
+
|
1506
|
+
class UpdateGatewayRequest
|
1507
|
+
attr_accessor gateway_identifier: ::String
|
1508
|
+
attr_accessor name: ::String
|
1509
|
+
attr_accessor description: ::String
|
1510
|
+
attr_accessor role_arn: ::String
|
1511
|
+
attr_accessor protocol_type: ("MCP")
|
1512
|
+
attr_accessor protocol_configuration: Types::GatewayProtocolConfiguration
|
1513
|
+
attr_accessor authorizer_type: ("CUSTOM_JWT")
|
1514
|
+
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
1515
|
+
attr_accessor kms_key_arn: ::String
|
1516
|
+
attr_accessor exception_level: ("DEBUG")
|
1517
|
+
SENSITIVE: [:name, :description]
|
1518
|
+
end
|
1519
|
+
|
1520
|
+
class UpdateGatewayResponse
|
1521
|
+
attr_accessor gateway_arn: ::String
|
1522
|
+
attr_accessor gateway_id: ::String
|
1523
|
+
attr_accessor gateway_url: ::String
|
1524
|
+
attr_accessor created_at: ::Time
|
1525
|
+
attr_accessor updated_at: ::Time
|
1526
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
|
1527
|
+
attr_accessor status_reasons: ::Array[::String]
|
1528
|
+
attr_accessor name: ::String
|
1529
|
+
attr_accessor description: ::String
|
1530
|
+
attr_accessor role_arn: ::String
|
1531
|
+
attr_accessor protocol_type: ("MCP")
|
1532
|
+
attr_accessor protocol_configuration: Types::GatewayProtocolConfiguration
|
1533
|
+
attr_accessor authorizer_type: ("CUSTOM_JWT")
|
1534
|
+
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
1535
|
+
attr_accessor kms_key_arn: ::String
|
1536
|
+
attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
|
1537
|
+
attr_accessor exception_level: ("DEBUG")
|
1538
|
+
SENSITIVE: [:name, :description]
|
1539
|
+
end
|
1540
|
+
|
1541
|
+
class UpdateGatewayTargetRequest
|
1542
|
+
attr_accessor gateway_identifier: ::String
|
1543
|
+
attr_accessor target_id: ::String
|
1544
|
+
attr_accessor name: ::String
|
1545
|
+
attr_accessor description: ::String
|
1546
|
+
attr_accessor target_configuration: Types::TargetConfiguration
|
1547
|
+
attr_accessor credential_provider_configurations: ::Array[Types::CredentialProviderConfiguration]
|
1548
|
+
SENSITIVE: [:name, :description]
|
1549
|
+
end
|
1550
|
+
|
1551
|
+
class UpdateGatewayTargetResponse
|
1552
|
+
attr_accessor gateway_arn: ::String
|
1553
|
+
attr_accessor target_id: ::String
|
1554
|
+
attr_accessor created_at: ::Time
|
1555
|
+
attr_accessor updated_at: ::Time
|
1556
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
|
1557
|
+
attr_accessor status_reasons: ::Array[::String]
|
1558
|
+
attr_accessor name: ::String
|
1559
|
+
attr_accessor description: ::String
|
1560
|
+
attr_accessor target_configuration: Types::TargetConfiguration
|
1561
|
+
attr_accessor credential_provider_configurations: ::Array[Types::CredentialProviderConfiguration]
|
1562
|
+
SENSITIVE: [:name, :description]
|
1563
|
+
end
|
1564
|
+
|
1565
|
+
class UpdateMemoryInput
|
1566
|
+
attr_accessor client_token: ::String
|
1567
|
+
attr_accessor memory_id: ::String
|
1568
|
+
attr_accessor description: ::String
|
1569
|
+
attr_accessor event_expiry_duration: ::Integer
|
1570
|
+
attr_accessor memory_execution_role_arn: ::String
|
1571
|
+
attr_accessor memory_strategies: Types::ModifyMemoryStrategies
|
1572
|
+
SENSITIVE: [:description]
|
1573
|
+
end
|
1574
|
+
|
1575
|
+
class UpdateMemoryOutput
|
1576
|
+
attr_accessor memory: Types::Memory
|
1577
|
+
SENSITIVE: []
|
1578
|
+
end
|
1579
|
+
|
1580
|
+
class UpdateOauth2CredentialProviderRequest
|
1581
|
+
attr_accessor name: ::String
|
1582
|
+
attr_accessor credential_provider_vendor: ("GoogleOauth2" | "GithubOauth2" | "SlackOauth2" | "SalesforceOauth2" | "MicrosoftOauth2" | "CustomOauth2")
|
1583
|
+
attr_accessor oauth2_provider_config_input: Types::Oauth2ProviderConfigInput
|
1584
|
+
SENSITIVE: []
|
1585
|
+
end
|
1586
|
+
|
1587
|
+
class UpdateOauth2CredentialProviderResponse
|
1588
|
+
attr_accessor client_secret_arn: Types::Secret
|
1589
|
+
attr_accessor name: ::String
|
1590
|
+
attr_accessor credential_provider_vendor: ("GoogleOauth2" | "GithubOauth2" | "SlackOauth2" | "SalesforceOauth2" | "MicrosoftOauth2" | "CustomOauth2")
|
1591
|
+
attr_accessor credential_provider_arn: ::String
|
1592
|
+
attr_accessor oauth2_provider_config_output: Types::Oauth2ProviderConfigOutput
|
1593
|
+
attr_accessor created_time: ::Time
|
1594
|
+
attr_accessor last_updated_time: ::Time
|
1595
|
+
SENSITIVE: []
|
1596
|
+
end
|
1597
|
+
|
1598
|
+
class UpdateWorkloadIdentityRequest
|
1599
|
+
attr_accessor name: ::String
|
1600
|
+
attr_accessor allowed_resource_oauth_2_return_urls: ::Array[::String]
|
1601
|
+
SENSITIVE: []
|
1602
|
+
end
|
1603
|
+
|
1604
|
+
class UpdateWorkloadIdentityResponse
|
1605
|
+
attr_accessor name: ::String
|
1606
|
+
attr_accessor workload_identity_arn: ::String
|
1607
|
+
attr_accessor allowed_resource_oauth_2_return_urls: ::Array[::String]
|
1608
|
+
attr_accessor created_time: ::Time
|
1609
|
+
attr_accessor last_updated_time: ::Time
|
1610
|
+
SENSITIVE: []
|
1611
|
+
end
|
1612
|
+
|
1613
|
+
class UserPreferenceConsolidationOverride
|
1614
|
+
attr_accessor append_to_prompt: ::String
|
1615
|
+
attr_accessor model_id: ::String
|
1616
|
+
SENSITIVE: [:append_to_prompt]
|
1617
|
+
end
|
1618
|
+
|
1619
|
+
class UserPreferenceExtractionOverride
|
1620
|
+
attr_accessor append_to_prompt: ::String
|
1621
|
+
attr_accessor model_id: ::String
|
1622
|
+
SENSITIVE: [:append_to_prompt]
|
1623
|
+
end
|
1624
|
+
|
1625
|
+
class UserPreferenceMemoryStrategyInput
|
1626
|
+
attr_accessor name: ::String
|
1627
|
+
attr_accessor description: ::String
|
1628
|
+
attr_accessor namespaces: ::Array[::String]
|
1629
|
+
SENSITIVE: [:description]
|
1630
|
+
end
|
1631
|
+
|
1632
|
+
class UserPreferenceOverrideConfigurationInput
|
1633
|
+
attr_accessor extraction: Types::UserPreferenceOverrideExtractionConfigurationInput
|
1634
|
+
attr_accessor consolidation: Types::UserPreferenceOverrideConsolidationConfigurationInput
|
1635
|
+
SENSITIVE: []
|
1636
|
+
end
|
1637
|
+
|
1638
|
+
class UserPreferenceOverrideConsolidationConfigurationInput
|
1639
|
+
attr_accessor append_to_prompt: ::String
|
1640
|
+
attr_accessor model_id: ::String
|
1641
|
+
SENSITIVE: [:append_to_prompt]
|
1642
|
+
end
|
1643
|
+
|
1644
|
+
class UserPreferenceOverrideExtractionConfigurationInput
|
1645
|
+
attr_accessor append_to_prompt: ::String
|
1646
|
+
attr_accessor model_id: ::String
|
1647
|
+
SENSITIVE: [:append_to_prompt]
|
1648
|
+
end
|
1649
|
+
|
1650
|
+
class ValidationException
|
1651
|
+
attr_accessor message: ::String
|
1652
|
+
attr_accessor reason: ("CannotParse" | "FieldValidationFailed" | "IdempotentParameterMismatchException" | "EventInOtherSession" | "ResourceConflict")
|
1653
|
+
attr_accessor field_list: ::Array[Types::ValidationExceptionField]
|
1654
|
+
SENSITIVE: []
|
1655
|
+
end
|
1656
|
+
|
1657
|
+
class ValidationExceptionField
|
1658
|
+
attr_accessor name: ::String
|
1659
|
+
attr_accessor message: ::String
|
1660
|
+
SENSITIVE: []
|
1661
|
+
end
|
1662
|
+
|
1663
|
+
class WorkloadIdentityDetails
|
1664
|
+
attr_accessor workload_identity_arn: ::String
|
1665
|
+
SENSITIVE: []
|
1666
|
+
end
|
1667
|
+
|
1668
|
+
class WorkloadIdentityType
|
1669
|
+
attr_accessor name: ::String
|
1670
|
+
attr_accessor workload_identity_arn: ::String
|
1671
|
+
SENSITIVE: []
|
1672
|
+
end
|
1673
|
+
end
|
1674
|
+
end
|