aws-sdk-bedrockagent 1.62.0 → 1.63.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagent/client.rb +2752 -2752
- data/lib/aws-sdk-bedrockagent/client_api.rb +515 -511
- data/lib/aws-sdk-bedrockagent/errors.rb +4 -4
- data/lib/aws-sdk-bedrockagent/types.rb +2570 -2570
- data/lib/aws-sdk-bedrockagent/waiters.rb +15 -0
- data/lib/aws-sdk-bedrockagent.rb +2 -1
- data/sig/client.rbs +1236 -1236
- data/sig/errors.rbs +1 -1
- data/sig/types.rbs +524 -524
- metadata +2 -1
data/sig/types.rbs
CHANGED
@@ -9,15 +9,15 @@ module Aws::BedrockAgent
|
|
9
9
|
module Types
|
10
10
|
|
11
11
|
class APISchema
|
12
|
-
attr_accessor payload: ::String
|
13
12
|
attr_accessor s3: Types::S3Identifier
|
13
|
+
attr_accessor payload: ::String
|
14
14
|
attr_accessor unknown: untyped
|
15
15
|
SENSITIVE: [:payload]
|
16
16
|
|
17
|
-
class Payload < APISchema
|
18
|
-
end
|
19
17
|
class S3 < APISchema
|
20
18
|
end
|
19
|
+
class Payload < APISchema
|
20
|
+
end
|
21
21
|
class Unknown < APISchema
|
22
22
|
end
|
23
23
|
end
|
@@ -28,15 +28,15 @@ module Aws::BedrockAgent
|
|
28
28
|
end
|
29
29
|
|
30
30
|
class ActionGroupExecutor
|
31
|
-
attr_accessor custom_control: ("RETURN_CONTROL")
|
32
31
|
attr_accessor lambda: ::String
|
32
|
+
attr_accessor custom_control: ("RETURN_CONTROL")
|
33
33
|
attr_accessor unknown: untyped
|
34
34
|
SENSITIVE: []
|
35
35
|
|
36
|
-
class CustomControl < ActionGroupExecutor
|
37
|
-
end
|
38
36
|
class Lambda < ActionGroupExecutor
|
39
37
|
end
|
38
|
+
class CustomControl < ActionGroupExecutor
|
39
|
+
end
|
40
40
|
class Unknown < ActionGroupExecutor
|
41
41
|
end
|
42
42
|
end
|
@@ -51,70 +51,70 @@ module Aws::BedrockAgent
|
|
51
51
|
end
|
52
52
|
|
53
53
|
class Agent
|
54
|
-
attr_accessor agent_arn: ::String
|
55
|
-
attr_accessor agent_collaboration: ("SUPERVISOR" | "SUPERVISOR_ROUTER" | "DISABLED")
|
56
54
|
attr_accessor agent_id: ::String
|
57
55
|
attr_accessor agent_name: ::String
|
58
|
-
attr_accessor
|
59
|
-
attr_accessor agent_status: ("CREATING" | "PREPARING" | "PREPARED" | "NOT_PREPARED" | "DELETING" | "FAILED" | "VERSIONING" | "UPDATING")
|
56
|
+
attr_accessor agent_arn: ::String
|
60
57
|
attr_accessor agent_version: ::String
|
61
58
|
attr_accessor client_token: ::String
|
62
|
-
attr_accessor
|
59
|
+
attr_accessor instruction: ::String
|
60
|
+
attr_accessor agent_status: ("CREATING" | "PREPARING" | "PREPARED" | "NOT_PREPARED" | "DELETING" | "FAILED" | "VERSIONING" | "UPDATING")
|
61
|
+
attr_accessor foundation_model: ::String
|
62
|
+
attr_accessor description: ::String
|
63
|
+
attr_accessor orchestration_type: ("DEFAULT" | "CUSTOM_ORCHESTRATION")
|
63
64
|
attr_accessor custom_orchestration: Types::CustomOrchestration
|
65
|
+
attr_accessor idle_session_ttl_in_seconds: ::Integer
|
66
|
+
attr_accessor agent_resource_role_arn: ::String
|
64
67
|
attr_accessor customer_encryption_key_arn: ::String
|
65
|
-
attr_accessor
|
68
|
+
attr_accessor created_at: ::Time
|
69
|
+
attr_accessor updated_at: ::Time
|
70
|
+
attr_accessor prepared_at: ::Time
|
66
71
|
attr_accessor failure_reasons: ::Array[::String]
|
67
|
-
attr_accessor
|
72
|
+
attr_accessor recommended_actions: ::Array[::String]
|
73
|
+
attr_accessor prompt_override_configuration: Types::PromptOverrideConfiguration
|
68
74
|
attr_accessor guardrail_configuration: Types::GuardrailConfiguration
|
69
|
-
attr_accessor idle_session_ttl_in_seconds: ::Integer
|
70
|
-
attr_accessor instruction: ::String
|
71
75
|
attr_accessor memory_configuration: Types::MemoryConfiguration
|
72
|
-
attr_accessor
|
73
|
-
attr_accessor prepared_at: ::Time
|
74
|
-
attr_accessor prompt_override_configuration: Types::PromptOverrideConfiguration
|
75
|
-
attr_accessor recommended_actions: ::Array[::String]
|
76
|
-
attr_accessor updated_at: ::Time
|
76
|
+
attr_accessor agent_collaboration: ("SUPERVISOR" | "SUPERVISOR_ROUTER" | "DISABLED")
|
77
77
|
SENSITIVE: [:instruction, :prompt_override_configuration]
|
78
78
|
end
|
79
79
|
|
80
80
|
class AgentActionGroup
|
81
|
-
attr_accessor action_group_executor: Types::ActionGroupExecutor
|
82
|
-
attr_accessor action_group_id: ::String
|
83
|
-
attr_accessor action_group_name: ::String
|
84
|
-
attr_accessor action_group_state: ("ENABLED" | "DISABLED")
|
85
81
|
attr_accessor agent_id: ::String
|
86
82
|
attr_accessor agent_version: ::String
|
87
|
-
attr_accessor
|
83
|
+
attr_accessor action_group_id: ::String
|
84
|
+
attr_accessor action_group_name: ::String
|
88
85
|
attr_accessor client_token: ::String
|
89
|
-
attr_accessor created_at: ::Time
|
90
86
|
attr_accessor description: ::String
|
91
|
-
attr_accessor
|
92
|
-
attr_accessor parent_action_group_signature_params: ::Hash[::String, ::String]
|
93
|
-
attr_accessor parent_action_signature: ("AMAZON.UserInput" | "AMAZON.CodeInterpreter" | "ANTHROPIC.Computer" | "ANTHROPIC.Bash" | "ANTHROPIC.TextEditor")
|
87
|
+
attr_accessor created_at: ::Time
|
94
88
|
attr_accessor updated_at: ::Time
|
89
|
+
attr_accessor parent_action_signature: ("AMAZON.UserInput" | "AMAZON.CodeInterpreter" | "ANTHROPIC.Computer" | "ANTHROPIC.Bash" | "ANTHROPIC.TextEditor")
|
90
|
+
attr_accessor parent_action_group_signature_params: ::Hash[::String, ::String]
|
91
|
+
attr_accessor action_group_executor: Types::ActionGroupExecutor
|
92
|
+
attr_accessor api_schema: Types::APISchema
|
93
|
+
attr_accessor function_schema: Types::FunctionSchema
|
94
|
+
attr_accessor action_group_state: ("ENABLED" | "DISABLED")
|
95
95
|
SENSITIVE: []
|
96
96
|
end
|
97
97
|
|
98
98
|
class AgentAlias
|
99
|
-
attr_accessor
|
100
|
-
attr_accessor agent_alias_history_events: ::Array[Types::AgentAliasHistoryEvent]
|
99
|
+
attr_accessor agent_id: ::String
|
101
100
|
attr_accessor agent_alias_id: ::String
|
102
101
|
attr_accessor agent_alias_name: ::String
|
103
|
-
attr_accessor
|
104
|
-
attr_accessor agent_id: ::String
|
105
|
-
attr_accessor alias_invocation_state: ("ACCEPT_INVOCATIONS" | "REJECT_INVOCATIONS")
|
102
|
+
attr_accessor agent_alias_arn: ::String
|
106
103
|
attr_accessor client_token: ::String
|
107
|
-
attr_accessor created_at: ::Time
|
108
104
|
attr_accessor description: ::String
|
109
|
-
attr_accessor failure_reasons: ::Array[::String]
|
110
105
|
attr_accessor routing_configuration: ::Array[Types::AgentAliasRoutingConfigurationListItem]
|
106
|
+
attr_accessor created_at: ::Time
|
111
107
|
attr_accessor updated_at: ::Time
|
108
|
+
attr_accessor agent_alias_history_events: ::Array[Types::AgentAliasHistoryEvent]
|
109
|
+
attr_accessor agent_alias_status: ("CREATING" | "PREPARED" | "FAILED" | "UPDATING" | "DELETING" | "DISSOCIATED")
|
110
|
+
attr_accessor failure_reasons: ::Array[::String]
|
111
|
+
attr_accessor alias_invocation_state: ("ACCEPT_INVOCATIONS" | "REJECT_INVOCATIONS")
|
112
112
|
SENSITIVE: []
|
113
113
|
end
|
114
114
|
|
115
115
|
class AgentAliasHistoryEvent
|
116
|
-
attr_accessor end_date: ::Time
|
117
116
|
attr_accessor routing_configuration: ::Array[Types::AgentAliasRoutingConfigurationListItem]
|
117
|
+
attr_accessor end_date: ::Time
|
118
118
|
attr_accessor start_date: ::Time
|
119
119
|
SENSITIVE: []
|
120
120
|
end
|
@@ -128,39 +128,39 @@ module Aws::BedrockAgent
|
|
128
128
|
class AgentAliasSummary
|
129
129
|
attr_accessor agent_alias_id: ::String
|
130
130
|
attr_accessor agent_alias_name: ::String
|
131
|
-
attr_accessor agent_alias_status: ("CREATING" | "PREPARED" | "FAILED" | "UPDATING" | "DELETING" | "DISSOCIATED")
|
132
|
-
attr_accessor alias_invocation_state: ("ACCEPT_INVOCATIONS" | "REJECT_INVOCATIONS")
|
133
|
-
attr_accessor created_at: ::Time
|
134
131
|
attr_accessor description: ::String
|
135
132
|
attr_accessor routing_configuration: ::Array[Types::AgentAliasRoutingConfigurationListItem]
|
133
|
+
attr_accessor agent_alias_status: ("CREATING" | "PREPARED" | "FAILED" | "UPDATING" | "DELETING" | "DISSOCIATED")
|
134
|
+
attr_accessor created_at: ::Time
|
136
135
|
attr_accessor updated_at: ::Time
|
136
|
+
attr_accessor alias_invocation_state: ("ACCEPT_INVOCATIONS" | "REJECT_INVOCATIONS")
|
137
137
|
SENSITIVE: []
|
138
138
|
end
|
139
139
|
|
140
140
|
class AgentCollaborator
|
141
|
-
attr_accessor agent_descriptor: Types::AgentDescriptor
|
142
141
|
attr_accessor agent_id: ::String
|
143
142
|
attr_accessor agent_version: ::String
|
144
|
-
attr_accessor
|
145
|
-
attr_accessor collaboration_instruction: ::String
|
143
|
+
attr_accessor agent_descriptor: Types::AgentDescriptor
|
146
144
|
attr_accessor collaborator_id: ::String
|
145
|
+
attr_accessor collaboration_instruction: ::String
|
147
146
|
attr_accessor collaborator_name: ::String
|
148
147
|
attr_accessor created_at: ::Time
|
149
148
|
attr_accessor last_updated_at: ::Time
|
150
149
|
attr_accessor relay_conversation_history: ("TO_COLLABORATOR" | "DISABLED")
|
150
|
+
attr_accessor client_token: ::String
|
151
151
|
SENSITIVE: [:collaboration_instruction]
|
152
152
|
end
|
153
153
|
|
154
154
|
class AgentCollaboratorSummary
|
155
|
-
attr_accessor agent_descriptor: Types::AgentDescriptor
|
156
155
|
attr_accessor agent_id: ::String
|
157
156
|
attr_accessor agent_version: ::String
|
158
|
-
attr_accessor collaboration_instruction: ::String
|
159
157
|
attr_accessor collaborator_id: ::String
|
158
|
+
attr_accessor agent_descriptor: Types::AgentDescriptor
|
159
|
+
attr_accessor collaboration_instruction: ::String
|
160
|
+
attr_accessor relay_conversation_history: ("TO_COLLABORATOR" | "DISABLED")
|
160
161
|
attr_accessor collaborator_name: ::String
|
161
162
|
attr_accessor created_at: ::Time
|
162
163
|
attr_accessor last_updated_at: ::Time
|
163
|
-
attr_accessor relay_conversation_history: ("TO_COLLABORATOR" | "DISABLED")
|
164
164
|
SENSITIVE: [:collaboration_instruction]
|
165
165
|
end
|
166
166
|
|
@@ -177,17 +177,17 @@ module Aws::BedrockAgent
|
|
177
177
|
class AgentKnowledgeBase
|
178
178
|
attr_accessor agent_id: ::String
|
179
179
|
attr_accessor agent_version: ::String
|
180
|
-
attr_accessor created_at: ::Time
|
181
|
-
attr_accessor description: ::String
|
182
180
|
attr_accessor knowledge_base_id: ::String
|
183
|
-
attr_accessor
|
181
|
+
attr_accessor description: ::String
|
182
|
+
attr_accessor created_at: ::Time
|
184
183
|
attr_accessor updated_at: ::Time
|
184
|
+
attr_accessor knowledge_base_state: ("ENABLED" | "DISABLED")
|
185
185
|
SENSITIVE: []
|
186
186
|
end
|
187
187
|
|
188
188
|
class AgentKnowledgeBaseSummary
|
189
|
-
attr_accessor description: ::String
|
190
189
|
attr_accessor knowledge_base_id: ::String
|
190
|
+
attr_accessor description: ::String
|
191
191
|
attr_accessor knowledge_base_state: ("ENABLED" | "DISABLED")
|
192
192
|
attr_accessor updated_at: ::Time
|
193
193
|
SENSITIVE: []
|
@@ -198,32 +198,32 @@ module Aws::BedrockAgent
|
|
198
198
|
attr_accessor agent_name: ::String
|
199
199
|
attr_accessor agent_status: ("CREATING" | "PREPARING" | "PREPARED" | "NOT_PREPARED" | "DELETING" | "FAILED" | "VERSIONING" | "UPDATING")
|
200
200
|
attr_accessor description: ::String
|
201
|
-
attr_accessor guardrail_configuration: Types::GuardrailConfiguration
|
202
|
-
attr_accessor latest_agent_version: ::String
|
203
201
|
attr_accessor updated_at: ::Time
|
202
|
+
attr_accessor latest_agent_version: ::String
|
203
|
+
attr_accessor guardrail_configuration: Types::GuardrailConfiguration
|
204
204
|
SENSITIVE: []
|
205
205
|
end
|
206
206
|
|
207
207
|
class AgentVersion
|
208
|
-
attr_accessor agent_arn: ::String
|
209
|
-
attr_accessor agent_collaboration: ("SUPERVISOR" | "SUPERVISOR_ROUTER" | "DISABLED")
|
210
208
|
attr_accessor agent_id: ::String
|
211
209
|
attr_accessor agent_name: ::String
|
212
|
-
attr_accessor
|
210
|
+
attr_accessor agent_arn: ::String
|
211
|
+
attr_accessor version: ::String
|
212
|
+
attr_accessor instruction: ::String
|
213
213
|
attr_accessor agent_status: ("CREATING" | "PREPARING" | "PREPARED" | "NOT_PREPARED" | "DELETING" | "FAILED" | "VERSIONING" | "UPDATING")
|
214
|
-
attr_accessor
|
215
|
-
attr_accessor customer_encryption_key_arn: ::String
|
214
|
+
attr_accessor foundation_model: ::String
|
216
215
|
attr_accessor description: ::String
|
216
|
+
attr_accessor idle_session_ttl_in_seconds: ::Integer
|
217
|
+
attr_accessor agent_resource_role_arn: ::String
|
218
|
+
attr_accessor customer_encryption_key_arn: ::String
|
219
|
+
attr_accessor created_at: ::Time
|
220
|
+
attr_accessor updated_at: ::Time
|
217
221
|
attr_accessor failure_reasons: ::Array[::String]
|
218
|
-
attr_accessor
|
222
|
+
attr_accessor recommended_actions: ::Array[::String]
|
223
|
+
attr_accessor prompt_override_configuration: Types::PromptOverrideConfiguration
|
219
224
|
attr_accessor guardrail_configuration: Types::GuardrailConfiguration
|
220
|
-
attr_accessor idle_session_ttl_in_seconds: ::Integer
|
221
|
-
attr_accessor instruction: ::String
|
222
225
|
attr_accessor memory_configuration: Types::MemoryConfiguration
|
223
|
-
attr_accessor
|
224
|
-
attr_accessor recommended_actions: ::Array[::String]
|
225
|
-
attr_accessor updated_at: ::Time
|
226
|
-
attr_accessor version: ::String
|
226
|
+
attr_accessor agent_collaboration: ("SUPERVISOR" | "SUPERVISOR_ROUTER" | "DISABLED")
|
227
227
|
SENSITIVE: [:instruction, :prompt_override_configuration]
|
228
228
|
end
|
229
229
|
|
@@ -232,9 +232,9 @@ module Aws::BedrockAgent
|
|
232
232
|
attr_accessor agent_status: ("CREATING" | "PREPARING" | "PREPARED" | "NOT_PREPARED" | "DELETING" | "FAILED" | "VERSIONING" | "UPDATING")
|
233
233
|
attr_accessor agent_version: ::String
|
234
234
|
attr_accessor created_at: ::Time
|
235
|
+
attr_accessor updated_at: ::Time
|
235
236
|
attr_accessor description: ::String
|
236
237
|
attr_accessor guardrail_configuration: Types::GuardrailConfiguration
|
237
|
-
attr_accessor updated_at: ::Time
|
238
238
|
SENSITIVE: []
|
239
239
|
end
|
240
240
|
|
@@ -242,13 +242,13 @@ module Aws::BedrockAgent
|
|
242
242
|
end
|
243
243
|
|
244
244
|
class AssociateAgentCollaboratorRequest
|
245
|
-
attr_accessor agent_descriptor: Types::AgentDescriptor
|
246
245
|
attr_accessor agent_id: ::String
|
247
246
|
attr_accessor agent_version: ::String
|
248
|
-
attr_accessor
|
249
|
-
attr_accessor collaboration_instruction: ::String
|
247
|
+
attr_accessor agent_descriptor: Types::AgentDescriptor
|
250
248
|
attr_accessor collaborator_name: ::String
|
249
|
+
attr_accessor collaboration_instruction: ::String
|
251
250
|
attr_accessor relay_conversation_history: ("TO_COLLABORATOR" | "DISABLED")
|
251
|
+
attr_accessor client_token: ::String
|
252
252
|
SENSITIVE: [:collaboration_instruction]
|
253
253
|
end
|
254
254
|
|
@@ -260,8 +260,8 @@ module Aws::BedrockAgent
|
|
260
260
|
class AssociateAgentKnowledgeBaseRequest
|
261
261
|
attr_accessor agent_id: ::String
|
262
262
|
attr_accessor agent_version: ::String
|
263
|
-
attr_accessor description: ::String
|
264
263
|
attr_accessor knowledge_base_id: ::String
|
264
|
+
attr_accessor description: ::String
|
265
265
|
attr_accessor knowledge_base_state: ("ENABLED" | "DISABLED")
|
266
266
|
SENSITIVE: []
|
267
267
|
end
|
@@ -287,8 +287,8 @@ module Aws::BedrockAgent
|
|
287
287
|
|
288
288
|
class BedrockFoundationModelConfiguration
|
289
289
|
attr_accessor model_arn: ::String
|
290
|
-
attr_accessor parsing_modality: ("MULTIMODAL")
|
291
290
|
attr_accessor parsing_prompt: Types::ParsingPrompt
|
291
|
+
attr_accessor parsing_modality: ("MULTIMODAL")
|
292
292
|
SENSITIVE: []
|
293
293
|
end
|
294
294
|
|
@@ -299,8 +299,8 @@ module Aws::BedrockAgent
|
|
299
299
|
end
|
300
300
|
|
301
301
|
class ByteContentDoc
|
302
|
-
attr_accessor data: ::String
|
303
302
|
attr_accessor mime_type: ::String
|
303
|
+
attr_accessor data: ::String
|
304
304
|
SENSITIVE: [:data]
|
305
305
|
end
|
306
306
|
|
@@ -310,9 +310,9 @@ module Aws::BedrockAgent
|
|
310
310
|
end
|
311
311
|
|
312
312
|
class ChatPromptTemplateConfiguration
|
313
|
-
attr_accessor input_variables: ::Array[Types::PromptInputVariable]
|
314
313
|
attr_accessor messages: ::Array[Types::Message]
|
315
314
|
attr_accessor system: ::Array[Types::SystemContentBlock]
|
315
|
+
attr_accessor input_variables: ::Array[Types::PromptInputVariable]
|
316
316
|
attr_accessor tool_configuration: Types::ToolConfiguration
|
317
317
|
SENSITIVE: [:input_variables]
|
318
318
|
end
|
@@ -344,57 +344,57 @@ module Aws::BedrockAgent
|
|
344
344
|
end
|
345
345
|
|
346
346
|
class ConfluenceDataSourceConfiguration
|
347
|
-
attr_accessor crawler_configuration: Types::ConfluenceCrawlerConfiguration
|
348
347
|
attr_accessor source_configuration: Types::ConfluenceSourceConfiguration
|
348
|
+
attr_accessor crawler_configuration: Types::ConfluenceCrawlerConfiguration
|
349
349
|
SENSITIVE: []
|
350
350
|
end
|
351
351
|
|
352
352
|
class ConfluenceSourceConfiguration
|
353
|
+
attr_accessor host_url: ::String
|
354
|
+
attr_accessor host_type: ("SAAS")
|
353
355
|
attr_accessor auth_type: ("BASIC" | "OAUTH2_CLIENT_CREDENTIALS")
|
354
356
|
attr_accessor credentials_secret_arn: ::String
|
355
|
-
attr_accessor host_type: ("SAAS")
|
356
|
-
attr_accessor host_url: ::String
|
357
357
|
SENSITIVE: []
|
358
358
|
end
|
359
359
|
|
360
360
|
class ContentBlock
|
361
|
-
attr_accessor cache_point: Types::CachePointBlock
|
362
361
|
attr_accessor text: ::String
|
362
|
+
attr_accessor cache_point: Types::CachePointBlock
|
363
363
|
attr_accessor unknown: untyped
|
364
364
|
SENSITIVE: []
|
365
365
|
|
366
|
-
class CachePoint < ContentBlock
|
367
|
-
end
|
368
366
|
class Text < ContentBlock
|
369
367
|
end
|
368
|
+
class CachePoint < ContentBlock
|
369
|
+
end
|
370
370
|
class Unknown < ContentBlock
|
371
371
|
end
|
372
372
|
end
|
373
373
|
|
374
374
|
class ContextEnrichmentConfiguration
|
375
|
-
attr_accessor bedrock_foundation_model_configuration: Types::BedrockFoundationModelContextEnrichmentConfiguration
|
376
375
|
attr_accessor type: ("BEDROCK_FOUNDATION_MODEL")
|
376
|
+
attr_accessor bedrock_foundation_model_configuration: Types::BedrockFoundationModelContextEnrichmentConfiguration
|
377
377
|
SENSITIVE: []
|
378
378
|
end
|
379
379
|
|
380
380
|
class CrawlFilterConfiguration
|
381
|
-
attr_accessor pattern_object_filter: Types::PatternObjectFilterConfiguration
|
382
381
|
attr_accessor type: ("PATTERN")
|
382
|
+
attr_accessor pattern_object_filter: Types::PatternObjectFilterConfiguration
|
383
383
|
SENSITIVE: []
|
384
384
|
end
|
385
385
|
|
386
386
|
class CreateAgentActionGroupRequest
|
387
|
-
attr_accessor action_group_executor: Types::ActionGroupExecutor
|
388
|
-
attr_accessor action_group_name: ::String
|
389
|
-
attr_accessor action_group_state: ("ENABLED" | "DISABLED")
|
390
387
|
attr_accessor agent_id: ::String
|
391
388
|
attr_accessor agent_version: ::String
|
392
|
-
attr_accessor
|
389
|
+
attr_accessor action_group_name: ::String
|
393
390
|
attr_accessor client_token: ::String
|
394
391
|
attr_accessor description: ::String
|
395
|
-
attr_accessor function_schema: Types::FunctionSchema
|
396
392
|
attr_accessor parent_action_group_signature: ("AMAZON.UserInput" | "AMAZON.CodeInterpreter" | "ANTHROPIC.Computer" | "ANTHROPIC.Bash" | "ANTHROPIC.TextEditor")
|
397
393
|
attr_accessor parent_action_group_signature_params: ::Hash[::String, ::String]
|
394
|
+
attr_accessor action_group_executor: Types::ActionGroupExecutor
|
395
|
+
attr_accessor api_schema: Types::APISchema
|
396
|
+
attr_accessor action_group_state: ("ENABLED" | "DISABLED")
|
397
|
+
attr_accessor function_schema: Types::FunctionSchema
|
398
398
|
SENSITIVE: []
|
399
399
|
end
|
400
400
|
|
@@ -404,8 +404,8 @@ module Aws::BedrockAgent
|
|
404
404
|
end
|
405
405
|
|
406
406
|
class CreateAgentAliasRequest
|
407
|
-
attr_accessor agent_alias_name: ::String
|
408
407
|
attr_accessor agent_id: ::String
|
408
|
+
attr_accessor agent_alias_name: ::String
|
409
409
|
attr_accessor client_token: ::String
|
410
410
|
attr_accessor description: ::String
|
411
411
|
attr_accessor routing_configuration: ::Array[Types::AgentAliasRoutingConfigurationListItem]
|
@@ -419,21 +419,21 @@ module Aws::BedrockAgent
|
|
419
419
|
end
|
420
420
|
|
421
421
|
class CreateAgentRequest
|
422
|
-
attr_accessor agent_collaboration: ("SUPERVISOR" | "SUPERVISOR_ROUTER" | "DISABLED")
|
423
422
|
attr_accessor agent_name: ::String
|
424
|
-
attr_accessor agent_resource_role_arn: ::String
|
425
423
|
attr_accessor client_token: ::String
|
424
|
+
attr_accessor instruction: ::String
|
425
|
+
attr_accessor foundation_model: ::String
|
426
|
+
attr_accessor description: ::String
|
427
|
+
attr_accessor orchestration_type: ("DEFAULT" | "CUSTOM_ORCHESTRATION")
|
426
428
|
attr_accessor custom_orchestration: Types::CustomOrchestration
|
429
|
+
attr_accessor idle_session_ttl_in_seconds: ::Integer
|
430
|
+
attr_accessor agent_resource_role_arn: ::String
|
427
431
|
attr_accessor customer_encryption_key_arn: ::String
|
428
|
-
attr_accessor
|
429
|
-
attr_accessor
|
432
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
433
|
+
attr_accessor prompt_override_configuration: Types::PromptOverrideConfiguration
|
430
434
|
attr_accessor guardrail_configuration: Types::GuardrailConfiguration
|
431
|
-
attr_accessor idle_session_ttl_in_seconds: ::Integer
|
432
|
-
attr_accessor instruction: ::String
|
433
435
|
attr_accessor memory_configuration: Types::MemoryConfiguration
|
434
|
-
attr_accessor
|
435
|
-
attr_accessor prompt_override_configuration: Types::PromptOverrideConfiguration
|
436
|
-
attr_accessor tags: ::Hash[::String, ::String]
|
436
|
+
attr_accessor agent_collaboration: ("SUPERVISOR" | "SUPERVISOR_ROUTER" | "DISABLED")
|
437
437
|
SENSITIVE: [:instruction, :prompt_override_configuration]
|
438
438
|
end
|
439
439
|
|
@@ -443,12 +443,12 @@ module Aws::BedrockAgent
|
|
443
443
|
end
|
444
444
|
|
445
445
|
class CreateDataSourceRequest
|
446
|
-
attr_accessor client_token: ::String
|
447
|
-
attr_accessor data_deletion_policy: ("RETAIN" | "DELETE")
|
448
|
-
attr_accessor data_source_configuration: Types::DataSourceConfiguration
|
449
|
-
attr_accessor description: ::String
|
450
446
|
attr_accessor knowledge_base_id: ::String
|
447
|
+
attr_accessor client_token: ::String
|
451
448
|
attr_accessor name: ::String
|
449
|
+
attr_accessor description: ::String
|
450
|
+
attr_accessor data_source_configuration: Types::DataSourceConfiguration
|
451
|
+
attr_accessor data_deletion_policy: ("RETAIN" | "DELETE")
|
452
452
|
attr_accessor server_side_encryption_configuration: Types::ServerSideEncryptionConfiguration
|
453
453
|
attr_accessor vector_ingestion_configuration: Types::VectorIngestionConfiguration
|
454
454
|
SENSITIVE: []
|
@@ -460,82 +460,82 @@ module Aws::BedrockAgent
|
|
460
460
|
end
|
461
461
|
|
462
462
|
class CreateFlowAliasRequest
|
463
|
-
attr_accessor client_token: ::String
|
464
|
-
attr_accessor concurrency_configuration: Types::FlowAliasConcurrencyConfiguration
|
465
|
-
attr_accessor description: ::String
|
466
|
-
attr_accessor flow_identifier: ::String
|
467
463
|
attr_accessor name: ::String
|
464
|
+
attr_accessor description: ::String
|
468
465
|
attr_accessor routing_configuration: ::Array[Types::FlowAliasRoutingConfigurationListItem]
|
466
|
+
attr_accessor concurrency_configuration: Types::FlowAliasConcurrencyConfiguration
|
467
|
+
attr_accessor flow_identifier: ::String
|
468
|
+
attr_accessor client_token: ::String
|
469
469
|
attr_accessor tags: ::Hash[::String, ::String]
|
470
470
|
SENSITIVE: []
|
471
471
|
end
|
472
472
|
|
473
473
|
class CreateFlowAliasResponse
|
474
|
-
attr_accessor
|
475
|
-
attr_accessor concurrency_configuration: Types::FlowAliasConcurrencyConfiguration
|
476
|
-
attr_accessor created_at: ::Time
|
474
|
+
attr_accessor name: ::String
|
477
475
|
attr_accessor description: ::String
|
476
|
+
attr_accessor routing_configuration: ::Array[Types::FlowAliasRoutingConfigurationListItem]
|
477
|
+
attr_accessor concurrency_configuration: Types::FlowAliasConcurrencyConfiguration
|
478
478
|
attr_accessor flow_id: ::String
|
479
479
|
attr_accessor id: ::String
|
480
|
-
attr_accessor
|
481
|
-
attr_accessor
|
480
|
+
attr_accessor arn: ::String
|
481
|
+
attr_accessor created_at: ::Time
|
482
482
|
attr_accessor updated_at: ::Time
|
483
483
|
SENSITIVE: []
|
484
484
|
end
|
485
485
|
|
486
486
|
class CreateFlowRequest
|
487
|
-
attr_accessor
|
488
|
-
attr_accessor customer_encryption_key_arn: ::String
|
489
|
-
attr_accessor definition: Types::FlowDefinition
|
487
|
+
attr_accessor name: ::String
|
490
488
|
attr_accessor description: ::String
|
491
489
|
attr_accessor execution_role_arn: ::String
|
492
|
-
attr_accessor
|
490
|
+
attr_accessor customer_encryption_key_arn: ::String
|
491
|
+
attr_accessor definition: Types::FlowDefinition
|
492
|
+
attr_accessor client_token: ::String
|
493
493
|
attr_accessor tags: ::Hash[::String, ::String]
|
494
494
|
SENSITIVE: [:definition]
|
495
495
|
end
|
496
496
|
|
497
497
|
class CreateFlowResponse
|
498
|
-
attr_accessor
|
499
|
-
attr_accessor created_at: ::Time
|
500
|
-
attr_accessor customer_encryption_key_arn: ::String
|
501
|
-
attr_accessor definition: Types::FlowDefinition
|
498
|
+
attr_accessor name: ::String
|
502
499
|
attr_accessor description: ::String
|
503
500
|
attr_accessor execution_role_arn: ::String
|
501
|
+
attr_accessor customer_encryption_key_arn: ::String
|
504
502
|
attr_accessor id: ::String
|
505
|
-
attr_accessor
|
503
|
+
attr_accessor arn: ::String
|
506
504
|
attr_accessor status: ("Failed" | "Prepared" | "Preparing" | "NotPrepared")
|
505
|
+
attr_accessor created_at: ::Time
|
507
506
|
attr_accessor updated_at: ::Time
|
508
507
|
attr_accessor version: ::String
|
508
|
+
attr_accessor definition: Types::FlowDefinition
|
509
509
|
SENSITIVE: [:definition]
|
510
510
|
end
|
511
511
|
|
512
512
|
class CreateFlowVersionRequest
|
513
|
-
attr_accessor client_token: ::String
|
514
|
-
attr_accessor description: ::String
|
515
513
|
attr_accessor flow_identifier: ::String
|
514
|
+
attr_accessor description: ::String
|
515
|
+
attr_accessor client_token: ::String
|
516
516
|
SENSITIVE: []
|
517
517
|
end
|
518
518
|
|
519
519
|
class CreateFlowVersionResponse
|
520
|
-
attr_accessor
|
521
|
-
attr_accessor created_at: ::Time
|
522
|
-
attr_accessor customer_encryption_key_arn: ::String
|
523
|
-
attr_accessor definition: Types::FlowDefinition
|
520
|
+
attr_accessor name: ::String
|
524
521
|
attr_accessor description: ::String
|
525
522
|
attr_accessor execution_role_arn: ::String
|
523
|
+
attr_accessor customer_encryption_key_arn: ::String
|
526
524
|
attr_accessor id: ::String
|
527
|
-
attr_accessor
|
525
|
+
attr_accessor arn: ::String
|
528
526
|
attr_accessor status: ("Failed" | "Prepared" | "Preparing" | "NotPrepared")
|
527
|
+
attr_accessor created_at: ::Time
|
529
528
|
attr_accessor version: ::String
|
529
|
+
attr_accessor definition: Types::FlowDefinition
|
530
530
|
SENSITIVE: [:definition]
|
531
531
|
end
|
532
532
|
|
533
533
|
class CreateKnowledgeBaseRequest
|
534
534
|
attr_accessor client_token: ::String
|
535
|
-
attr_accessor description: ::String
|
536
|
-
attr_accessor knowledge_base_configuration: Types::KnowledgeBaseConfiguration
|
537
535
|
attr_accessor name: ::String
|
536
|
+
attr_accessor description: ::String
|
538
537
|
attr_accessor role_arn: ::String
|
538
|
+
attr_accessor knowledge_base_configuration: Types::KnowledgeBaseConfiguration
|
539
539
|
attr_accessor storage_configuration: Types::StorageConfiguration
|
540
540
|
attr_accessor tags: ::Hash[::String, ::String]
|
541
541
|
SENSITIVE: []
|
@@ -547,49 +547,49 @@ module Aws::BedrockAgent
|
|
547
547
|
end
|
548
548
|
|
549
549
|
class CreatePromptRequest
|
550
|
-
attr_accessor
|
550
|
+
attr_accessor name: ::String
|
551
|
+
attr_accessor description: ::String
|
551
552
|
attr_accessor customer_encryption_key_arn: ::String
|
552
553
|
attr_accessor default_variant: ::String
|
553
|
-
attr_accessor description: ::String
|
554
|
-
attr_accessor name: ::String
|
555
|
-
attr_accessor tags: ::Hash[::String, ::String]
|
556
554
|
attr_accessor variants: ::Array[Types::PromptVariant]
|
555
|
+
attr_accessor client_token: ::String
|
556
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
557
557
|
SENSITIVE: [:variants]
|
558
558
|
end
|
559
559
|
|
560
560
|
class CreatePromptResponse
|
561
|
-
attr_accessor
|
562
|
-
attr_accessor
|
561
|
+
attr_accessor name: ::String
|
562
|
+
attr_accessor description: ::String
|
563
563
|
attr_accessor customer_encryption_key_arn: ::String
|
564
564
|
attr_accessor default_variant: ::String
|
565
|
-
attr_accessor description: ::String
|
566
|
-
attr_accessor id: ::String
|
567
|
-
attr_accessor name: ::String
|
568
|
-
attr_accessor updated_at: ::Time
|
569
565
|
attr_accessor variants: ::Array[Types::PromptVariant]
|
566
|
+
attr_accessor id: ::String
|
567
|
+
attr_accessor arn: ::String
|
570
568
|
attr_accessor version: ::String
|
569
|
+
attr_accessor created_at: ::Time
|
570
|
+
attr_accessor updated_at: ::Time
|
571
571
|
SENSITIVE: [:variants]
|
572
572
|
end
|
573
573
|
|
574
574
|
class CreatePromptVersionRequest
|
575
|
-
attr_accessor client_token: ::String
|
576
|
-
attr_accessor description: ::String
|
577
575
|
attr_accessor prompt_identifier: ::String
|
576
|
+
attr_accessor description: ::String
|
577
|
+
attr_accessor client_token: ::String
|
578
578
|
attr_accessor tags: ::Hash[::String, ::String]
|
579
579
|
SENSITIVE: []
|
580
580
|
end
|
581
581
|
|
582
582
|
class CreatePromptVersionResponse
|
583
|
-
attr_accessor
|
584
|
-
attr_accessor
|
583
|
+
attr_accessor name: ::String
|
584
|
+
attr_accessor description: ::String
|
585
585
|
attr_accessor customer_encryption_key_arn: ::String
|
586
586
|
attr_accessor default_variant: ::String
|
587
|
-
attr_accessor description: ::String
|
588
|
-
attr_accessor id: ::String
|
589
|
-
attr_accessor name: ::String
|
590
|
-
attr_accessor updated_at: ::Time
|
591
587
|
attr_accessor variants: ::Array[Types::PromptVariant]
|
588
|
+
attr_accessor id: ::String
|
589
|
+
attr_accessor arn: ::String
|
592
590
|
attr_accessor version: ::String
|
591
|
+
attr_accessor created_at: ::Time
|
592
|
+
attr_accessor updated_at: ::Time
|
593
593
|
SENSITIVE: [:variants]
|
594
594
|
end
|
595
595
|
|
@@ -601,9 +601,9 @@ module Aws::BedrockAgent
|
|
601
601
|
|
602
602
|
class CustomContent
|
603
603
|
attr_accessor custom_document_identifier: Types::CustomDocumentIdentifier
|
604
|
-
attr_accessor inline_content: Types::InlineContent
|
605
|
-
attr_accessor s3_location: Types::CustomS3Location
|
606
604
|
attr_accessor source_type: ("IN_LINE" | "S3_LOCATION")
|
605
|
+
attr_accessor s3_location: Types::CustomS3Location
|
606
|
+
attr_accessor inline_content: Types::InlineContent
|
607
607
|
SENSITIVE: []
|
608
608
|
end
|
609
609
|
|
@@ -618,8 +618,8 @@ module Aws::BedrockAgent
|
|
618
618
|
end
|
619
619
|
|
620
620
|
class CustomS3Location
|
621
|
-
attr_accessor bucket_owner_account_id: ::String
|
622
621
|
attr_accessor uri: ::String
|
622
|
+
attr_accessor bucket_owner_account_id: ::String
|
623
623
|
SENSITIVE: []
|
624
624
|
end
|
625
625
|
|
@@ -635,45 +635,45 @@ module Aws::BedrockAgent
|
|
635
635
|
end
|
636
636
|
|
637
637
|
class DataSource
|
638
|
-
attr_accessor created_at: ::Time
|
639
|
-
attr_accessor data_deletion_policy: ("RETAIN" | "DELETE")
|
640
|
-
attr_accessor data_source_configuration: Types::DataSourceConfiguration
|
641
|
-
attr_accessor data_source_id: ::String
|
642
|
-
attr_accessor description: ::String
|
643
|
-
attr_accessor failure_reasons: ::Array[::String]
|
644
638
|
attr_accessor knowledge_base_id: ::String
|
639
|
+
attr_accessor data_source_id: ::String
|
645
640
|
attr_accessor name: ::String
|
646
|
-
attr_accessor server_side_encryption_configuration: Types::ServerSideEncryptionConfiguration
|
647
641
|
attr_accessor status: ("AVAILABLE" | "DELETING" | "DELETE_UNSUCCESSFUL")
|
648
|
-
attr_accessor
|
642
|
+
attr_accessor description: ::String
|
643
|
+
attr_accessor data_source_configuration: Types::DataSourceConfiguration
|
644
|
+
attr_accessor server_side_encryption_configuration: Types::ServerSideEncryptionConfiguration
|
649
645
|
attr_accessor vector_ingestion_configuration: Types::VectorIngestionConfiguration
|
646
|
+
attr_accessor data_deletion_policy: ("RETAIN" | "DELETE")
|
647
|
+
attr_accessor created_at: ::Time
|
648
|
+
attr_accessor updated_at: ::Time
|
649
|
+
attr_accessor failure_reasons: ::Array[::String]
|
650
650
|
SENSITIVE: []
|
651
651
|
end
|
652
652
|
|
653
653
|
class DataSourceConfiguration
|
654
|
-
attr_accessor
|
654
|
+
attr_accessor type: ("S3" | "WEB" | "CONFLUENCE" | "SALESFORCE" | "SHAREPOINT" | "CUSTOM" | "REDSHIFT_METADATA")
|
655
655
|
attr_accessor s3_configuration: Types::S3DataSourceConfiguration
|
656
|
+
attr_accessor web_configuration: Types::WebDataSourceConfiguration
|
657
|
+
attr_accessor confluence_configuration: Types::ConfluenceDataSourceConfiguration
|
656
658
|
attr_accessor salesforce_configuration: Types::SalesforceDataSourceConfiguration
|
657
659
|
attr_accessor share_point_configuration: Types::SharePointDataSourceConfiguration
|
658
|
-
attr_accessor type: ("S3" | "WEB" | "CONFLUENCE" | "SALESFORCE" | "SHAREPOINT" | "CUSTOM" | "REDSHIFT_METADATA")
|
659
|
-
attr_accessor web_configuration: Types::WebDataSourceConfiguration
|
660
660
|
SENSITIVE: []
|
661
661
|
end
|
662
662
|
|
663
663
|
class DataSourceSummary
|
664
|
-
attr_accessor data_source_id: ::String
|
665
|
-
attr_accessor description: ::String
|
666
664
|
attr_accessor knowledge_base_id: ::String
|
665
|
+
attr_accessor data_source_id: ::String
|
667
666
|
attr_accessor name: ::String
|
668
667
|
attr_accessor status: ("AVAILABLE" | "DELETING" | "DELETE_UNSUCCESSFUL")
|
668
|
+
attr_accessor description: ::String
|
669
669
|
attr_accessor updated_at: ::Time
|
670
670
|
SENSITIVE: []
|
671
671
|
end
|
672
672
|
|
673
673
|
class DeleteAgentActionGroupRequest
|
674
|
-
attr_accessor action_group_id: ::String
|
675
674
|
attr_accessor agent_id: ::String
|
676
675
|
attr_accessor agent_version: ::String
|
676
|
+
attr_accessor action_group_id: ::String
|
677
677
|
attr_accessor skip_resource_in_use_check: bool
|
678
678
|
SENSITIVE: []
|
679
679
|
end
|
@@ -682,15 +682,15 @@ module Aws::BedrockAgent
|
|
682
682
|
end
|
683
683
|
|
684
684
|
class DeleteAgentAliasRequest
|
685
|
-
attr_accessor agent_alias_id: ::String
|
686
685
|
attr_accessor agent_id: ::String
|
686
|
+
attr_accessor agent_alias_id: ::String
|
687
687
|
SENSITIVE: []
|
688
688
|
end
|
689
689
|
|
690
690
|
class DeleteAgentAliasResponse
|
691
|
+
attr_accessor agent_id: ::String
|
691
692
|
attr_accessor agent_alias_id: ::String
|
692
693
|
attr_accessor agent_alias_status: ("CREATING" | "PREPARED" | "FAILED" | "UPDATING" | "DELETING" | "DISSOCIATED")
|
693
|
-
attr_accessor agent_id: ::String
|
694
694
|
SENSITIVE: []
|
695
695
|
end
|
696
696
|
|
@@ -715,27 +715,27 @@ module Aws::BedrockAgent
|
|
715
715
|
|
716
716
|
class DeleteAgentVersionResponse
|
717
717
|
attr_accessor agent_id: ::String
|
718
|
-
attr_accessor agent_status: ("CREATING" | "PREPARING" | "PREPARED" | "NOT_PREPARED" | "DELETING" | "FAILED" | "VERSIONING" | "UPDATING")
|
719
718
|
attr_accessor agent_version: ::String
|
719
|
+
attr_accessor agent_status: ("CREATING" | "PREPARING" | "PREPARED" | "NOT_PREPARED" | "DELETING" | "FAILED" | "VERSIONING" | "UPDATING")
|
720
720
|
SENSITIVE: []
|
721
721
|
end
|
722
722
|
|
723
723
|
class DeleteDataSourceRequest
|
724
|
-
attr_accessor data_source_id: ::String
|
725
724
|
attr_accessor knowledge_base_id: ::String
|
725
|
+
attr_accessor data_source_id: ::String
|
726
726
|
SENSITIVE: []
|
727
727
|
end
|
728
728
|
|
729
729
|
class DeleteDataSourceResponse
|
730
|
-
attr_accessor data_source_id: ::String
|
731
730
|
attr_accessor knowledge_base_id: ::String
|
731
|
+
attr_accessor data_source_id: ::String
|
732
732
|
attr_accessor status: ("AVAILABLE" | "DELETING" | "DELETE_UNSUCCESSFUL")
|
733
733
|
SENSITIVE: []
|
734
734
|
end
|
735
735
|
|
736
736
|
class DeleteFlowAliasRequest
|
737
|
-
attr_accessor alias_identifier: ::String
|
738
737
|
attr_accessor flow_identifier: ::String
|
738
|
+
attr_accessor alias_identifier: ::String
|
739
739
|
SENSITIVE: []
|
740
740
|
end
|
741
741
|
|
@@ -770,10 +770,10 @@ module Aws::BedrockAgent
|
|
770
770
|
end
|
771
771
|
|
772
772
|
class DeleteKnowledgeBaseDocumentsRequest
|
773
|
-
attr_accessor
|
773
|
+
attr_accessor knowledge_base_id: ::String
|
774
774
|
attr_accessor data_source_id: ::String
|
775
|
+
attr_accessor client_token: ::String
|
775
776
|
attr_accessor document_identifiers: ::Array[Types::DocumentIdentifier]
|
776
|
-
attr_accessor knowledge_base_id: ::String
|
777
777
|
SENSITIVE: []
|
778
778
|
end
|
779
779
|
|
@@ -826,29 +826,29 @@ module Aws::BedrockAgent
|
|
826
826
|
end
|
827
827
|
|
828
828
|
class DocumentContent
|
829
|
-
attr_accessor custom: Types::CustomContent
|
830
829
|
attr_accessor data_source_type: ("CUSTOM" | "S3")
|
830
|
+
attr_accessor custom: Types::CustomContent
|
831
831
|
attr_accessor s3: Types::S3Content
|
832
832
|
SENSITIVE: []
|
833
833
|
end
|
834
834
|
|
835
835
|
class DocumentIdentifier
|
836
|
-
attr_accessor custom: Types::CustomDocumentIdentifier
|
837
836
|
attr_accessor data_source_type: ("CUSTOM" | "S3")
|
838
837
|
attr_accessor s3: Types::S3Location
|
838
|
+
attr_accessor custom: Types::CustomDocumentIdentifier
|
839
839
|
SENSITIVE: []
|
840
840
|
end
|
841
841
|
|
842
842
|
class DocumentMetadata
|
843
|
+
attr_accessor type: ("IN_LINE_ATTRIBUTE" | "S3_LOCATION")
|
843
844
|
attr_accessor inline_attributes: ::Array[Types::MetadataAttribute]
|
844
845
|
attr_accessor s3_location: Types::CustomS3Location
|
845
|
-
attr_accessor type: ("IN_LINE_ATTRIBUTE" | "S3_LOCATION")
|
846
846
|
SENSITIVE: []
|
847
847
|
end
|
848
848
|
|
849
849
|
class DuplicateConditionExpressionFlowValidationDetails
|
850
|
-
attr_accessor expression: ::String
|
851
850
|
attr_accessor node: ::String
|
851
|
+
attr_accessor expression: ::String
|
852
852
|
SENSITIVE: [:expression]
|
853
853
|
end
|
854
854
|
|
@@ -880,8 +880,8 @@ module Aws::BedrockAgent
|
|
880
880
|
end
|
881
881
|
|
882
882
|
class FlowAliasConcurrencyConfiguration
|
883
|
-
attr_accessor max_concurrency: ::Integer
|
884
883
|
attr_accessor type: ("Automatic" | "Manual")
|
884
|
+
attr_accessor max_concurrency: ::Integer
|
885
885
|
SENSITIVE: []
|
886
886
|
end
|
887
887
|
|
@@ -891,21 +891,21 @@ module Aws::BedrockAgent
|
|
891
891
|
end
|
892
892
|
|
893
893
|
class FlowAliasSummary
|
894
|
-
attr_accessor
|
895
|
-
attr_accessor concurrency_configuration: Types::FlowAliasConcurrencyConfiguration
|
896
|
-
attr_accessor created_at: ::Time
|
894
|
+
attr_accessor name: ::String
|
897
895
|
attr_accessor description: ::String
|
896
|
+
attr_accessor routing_configuration: ::Array[Types::FlowAliasRoutingConfigurationListItem]
|
897
|
+
attr_accessor concurrency_configuration: Types::FlowAliasConcurrencyConfiguration
|
898
898
|
attr_accessor flow_id: ::String
|
899
899
|
attr_accessor id: ::String
|
900
|
-
attr_accessor
|
901
|
-
attr_accessor
|
900
|
+
attr_accessor arn: ::String
|
901
|
+
attr_accessor created_at: ::Time
|
902
902
|
attr_accessor updated_at: ::Time
|
903
903
|
SENSITIVE: []
|
904
904
|
end
|
905
905
|
|
906
906
|
class FlowCondition
|
907
|
-
attr_accessor expression: ::String
|
908
907
|
attr_accessor name: ::String
|
908
|
+
attr_accessor expression: ::String
|
909
909
|
SENSITIVE: [:expression]
|
910
910
|
end
|
911
911
|
|
@@ -915,24 +915,24 @@ module Aws::BedrockAgent
|
|
915
915
|
end
|
916
916
|
|
917
917
|
class FlowConnection
|
918
|
-
attr_accessor
|
918
|
+
attr_accessor type: ("Data" | "Conditional")
|
919
919
|
attr_accessor name: ::String
|
920
920
|
attr_accessor source: ::String
|
921
921
|
attr_accessor target: ::String
|
922
|
-
attr_accessor
|
922
|
+
attr_accessor configuration: Types::FlowConnectionConfiguration
|
923
923
|
SENSITIVE: []
|
924
924
|
end
|
925
925
|
|
926
926
|
class FlowConnectionConfiguration
|
927
|
-
attr_accessor conditional: Types::FlowConditionalConnectionConfiguration
|
928
927
|
attr_accessor data: Types::FlowDataConnectionConfiguration
|
928
|
+
attr_accessor conditional: Types::FlowConditionalConnectionConfiguration
|
929
929
|
attr_accessor unknown: untyped
|
930
930
|
SENSITIVE: []
|
931
931
|
|
932
|
-
class Conditional < FlowConnectionConfiguration
|
933
|
-
end
|
934
932
|
class Data < FlowConnectionConfiguration
|
935
933
|
end
|
934
|
+
class Conditional < FlowConnectionConfiguration
|
935
|
+
end
|
936
936
|
class Unknown < FlowConnectionConfiguration
|
937
937
|
end
|
938
938
|
end
|
@@ -944,81 +944,81 @@ module Aws::BedrockAgent
|
|
944
944
|
end
|
945
945
|
|
946
946
|
class FlowDefinition
|
947
|
-
attr_accessor connections: ::Array[Types::FlowConnection]
|
948
947
|
attr_accessor nodes: ::Array[Types::FlowNode]
|
948
|
+
attr_accessor connections: ::Array[Types::FlowConnection]
|
949
949
|
SENSITIVE: []
|
950
950
|
end
|
951
951
|
|
952
952
|
class FlowNode
|
953
|
+
attr_accessor name: ::String
|
954
|
+
attr_accessor type: ("Input" | "Output" | "KnowledgeBase" | "Condition" | "Lex" | "Prompt" | "LambdaFunction" | "Storage" | "Agent" | "Retrieval" | "Iterator" | "Collector" | "InlineCode" | "Loop" | "LoopInput" | "LoopController")
|
953
955
|
attr_accessor configuration: Types::FlowNodeConfiguration
|
954
956
|
attr_accessor inputs: ::Array[Types::FlowNodeInput]
|
955
|
-
attr_accessor name: ::String
|
956
957
|
attr_accessor outputs: ::Array[Types::FlowNodeOutput]
|
957
|
-
attr_accessor type: ("Input" | "Output" | "KnowledgeBase" | "Condition" | "Lex" | "Prompt" | "LambdaFunction" | "Storage" | "Agent" | "Retrieval" | "Iterator" | "Collector" | "InlineCode" | "Loop" | "LoopInput" | "LoopController")
|
958
958
|
SENSITIVE: []
|
959
959
|
end
|
960
960
|
|
961
961
|
class FlowNodeConfiguration
|
962
|
-
attr_accessor agent: Types::AgentFlowNodeConfiguration
|
963
|
-
attr_accessor collector: Types::CollectorFlowNodeConfiguration
|
964
|
-
attr_accessor condition: Types::ConditionFlowNodeConfiguration
|
965
|
-
attr_accessor inline_code: Types::InlineCodeFlowNodeConfiguration
|
966
962
|
attr_accessor input: Types::InputFlowNodeConfiguration
|
967
|
-
attr_accessor
|
963
|
+
attr_accessor output: Types::OutputFlowNodeConfiguration
|
968
964
|
attr_accessor knowledge_base: Types::KnowledgeBaseFlowNodeConfiguration
|
969
|
-
attr_accessor
|
965
|
+
attr_accessor condition: Types::ConditionFlowNodeConfiguration
|
970
966
|
attr_accessor lex: Types::LexFlowNodeConfiguration
|
971
|
-
attr_accessor loop: Types::LoopFlowNodeConfiguration
|
972
|
-
attr_accessor loop_controller: Types::LoopControllerFlowNodeConfiguration
|
973
|
-
attr_accessor loop_input: Types::LoopInputFlowNodeConfiguration
|
974
|
-
attr_accessor output: Types::OutputFlowNodeConfiguration
|
975
967
|
attr_accessor prompt: Types::PromptFlowNodeConfiguration
|
976
|
-
attr_accessor
|
968
|
+
attr_accessor lambda_function: Types::LambdaFunctionFlowNodeConfiguration
|
977
969
|
attr_accessor storage: Types::StorageFlowNodeConfiguration
|
970
|
+
attr_accessor agent: Types::AgentFlowNodeConfiguration
|
971
|
+
attr_accessor retrieval: Types::RetrievalFlowNodeConfiguration
|
972
|
+
attr_accessor iterator: Types::IteratorFlowNodeConfiguration
|
973
|
+
attr_accessor collector: Types::CollectorFlowNodeConfiguration
|
974
|
+
attr_accessor inline_code: Types::InlineCodeFlowNodeConfiguration
|
975
|
+
attr_accessor loop: Types::LoopFlowNodeConfiguration
|
976
|
+
attr_accessor loop_input: Types::LoopInputFlowNodeConfiguration
|
977
|
+
attr_accessor loop_controller: Types::LoopControllerFlowNodeConfiguration
|
978
978
|
attr_accessor unknown: untyped
|
979
979
|
SENSITIVE: []
|
980
980
|
|
981
|
-
class
|
982
|
-
end
|
983
|
-
class Collector < FlowNodeConfiguration
|
981
|
+
class Input < FlowNodeConfiguration
|
984
982
|
end
|
985
|
-
class
|
983
|
+
class Output < FlowNodeConfiguration
|
986
984
|
end
|
987
|
-
class
|
985
|
+
class KnowledgeBase < FlowNodeConfiguration
|
988
986
|
end
|
989
|
-
class
|
987
|
+
class Condition < FlowNodeConfiguration
|
990
988
|
end
|
991
|
-
class
|
989
|
+
class Lex < FlowNodeConfiguration
|
992
990
|
end
|
993
|
-
class
|
991
|
+
class Prompt < FlowNodeConfiguration
|
994
992
|
end
|
995
993
|
class LambdaFunction < FlowNodeConfiguration
|
996
994
|
end
|
997
|
-
class
|
995
|
+
class Storage < FlowNodeConfiguration
|
998
996
|
end
|
999
|
-
class
|
997
|
+
class Agent < FlowNodeConfiguration
|
1000
998
|
end
|
1001
|
-
class
|
999
|
+
class Retrieval < FlowNodeConfiguration
|
1002
1000
|
end
|
1003
|
-
class
|
1001
|
+
class Iterator < FlowNodeConfiguration
|
1004
1002
|
end
|
1005
|
-
class
|
1003
|
+
class Collector < FlowNodeConfiguration
|
1006
1004
|
end
|
1007
|
-
class
|
1005
|
+
class InlineCode < FlowNodeConfiguration
|
1008
1006
|
end
|
1009
|
-
class
|
1007
|
+
class Loop < FlowNodeConfiguration
|
1010
1008
|
end
|
1011
|
-
class
|
1009
|
+
class LoopInput < FlowNodeConfiguration
|
1010
|
+
end
|
1011
|
+
class LoopController < FlowNodeConfiguration
|
1012
1012
|
end
|
1013
1013
|
class Unknown < FlowNodeConfiguration
|
1014
1014
|
end
|
1015
1015
|
end
|
1016
1016
|
|
1017
1017
|
class FlowNodeInput
|
1018
|
-
attr_accessor category: ("LoopCondition" | "ReturnValueToLoopStart" | "ExitLoop")
|
1019
|
-
attr_accessor expression: ::String
|
1020
1018
|
attr_accessor name: ::String
|
1021
1019
|
attr_accessor type: ("String" | "Number" | "Boolean" | "Object" | "Array")
|
1020
|
+
attr_accessor expression: ::String
|
1021
|
+
attr_accessor category: ("LoopCondition" | "ReturnValueToLoopStart" | "ExitLoop")
|
1022
1022
|
SENSITIVE: [:expression]
|
1023
1023
|
end
|
1024
1024
|
|
@@ -1029,73 +1029,79 @@ module Aws::BedrockAgent
|
|
1029
1029
|
end
|
1030
1030
|
|
1031
1031
|
class FlowSummary
|
1032
|
-
attr_accessor
|
1033
|
-
attr_accessor created_at: ::Time
|
1032
|
+
attr_accessor name: ::String
|
1034
1033
|
attr_accessor description: ::String
|
1035
1034
|
attr_accessor id: ::String
|
1036
|
-
attr_accessor
|
1035
|
+
attr_accessor arn: ::String
|
1037
1036
|
attr_accessor status: ("Failed" | "Prepared" | "Preparing" | "NotPrepared")
|
1037
|
+
attr_accessor created_at: ::Time
|
1038
1038
|
attr_accessor updated_at: ::Time
|
1039
1039
|
attr_accessor version: ::String
|
1040
1040
|
SENSITIVE: []
|
1041
1041
|
end
|
1042
1042
|
|
1043
1043
|
class FlowValidation
|
1044
|
-
attr_accessor details: Types::FlowValidationDetails
|
1045
1044
|
attr_accessor message: ::String
|
1046
1045
|
attr_accessor severity: ("Warning" | "Error")
|
1046
|
+
attr_accessor details: Types::FlowValidationDetails
|
1047
1047
|
attr_accessor type: ("CyclicConnection" | "DuplicateConnections" | "DuplicateConditionExpression" | "UnreachableNode" | "UnknownConnectionSource" | "UnknownConnectionSourceOutput" | "UnknownConnectionTarget" | "UnknownConnectionTargetInput" | "UnknownConnectionCondition" | "MalformedConditionExpression" | "MalformedNodeInputExpression" | "MismatchedNodeInputType" | "MismatchedNodeOutputType" | "IncompatibleConnectionDataType" | "MissingConnectionConfiguration" | "MissingDefaultCondition" | "MissingEndingNodes" | "MissingNodeConfiguration" | "MissingNodeInput" | "MissingNodeOutput" | "MissingStartingNodes" | "MultipleNodeInputConnections" | "UnfulfilledNodeInput" | "UnsatisfiedConnectionConditions" | "Unspecified" | "UnknownNodeInput" | "UnknownNodeOutput" | "MissingLoopInputNode" | "MissingLoopControllerNode" | "MultipleLoopInputNodes" | "MultipleLoopControllerNodes" | "LoopIncompatibleNodeType" | "InvalidLoopBoundary")
|
1048
1048
|
SENSITIVE: []
|
1049
1049
|
end
|
1050
1050
|
|
1051
1051
|
class FlowValidationDetails
|
1052
1052
|
attr_accessor cyclic_connection: Types::CyclicConnectionFlowValidationDetails
|
1053
|
-
attr_accessor duplicate_condition_expression: Types::DuplicateConditionExpressionFlowValidationDetails
|
1054
1053
|
attr_accessor duplicate_connections: Types::DuplicateConnectionsFlowValidationDetails
|
1055
|
-
attr_accessor
|
1056
|
-
attr_accessor
|
1057
|
-
attr_accessor
|
1054
|
+
attr_accessor duplicate_condition_expression: Types::DuplicateConditionExpressionFlowValidationDetails
|
1055
|
+
attr_accessor unreachable_node: Types::UnreachableNodeFlowValidationDetails
|
1056
|
+
attr_accessor unknown_connection_source: Types::UnknownConnectionSourceFlowValidationDetails
|
1057
|
+
attr_accessor unknown_connection_source_output: Types::UnknownConnectionSourceOutputFlowValidationDetails
|
1058
|
+
attr_accessor unknown_connection_target: Types::UnknownConnectionTargetFlowValidationDetails
|
1059
|
+
attr_accessor unknown_connection_target_input: Types::UnknownConnectionTargetInputFlowValidationDetails
|
1060
|
+
attr_accessor unknown_connection_condition: Types::UnknownConnectionConditionFlowValidationDetails
|
1058
1061
|
attr_accessor malformed_condition_expression: Types::MalformedConditionExpressionFlowValidationDetails
|
1059
1062
|
attr_accessor malformed_node_input_expression: Types::MalformedNodeInputExpressionFlowValidationDetails
|
1060
1063
|
attr_accessor mismatched_node_input_type: Types::MismatchedNodeInputTypeFlowValidationDetails
|
1061
1064
|
attr_accessor mismatched_node_output_type: Types::MismatchedNodeOutputTypeFlowValidationDetails
|
1065
|
+
attr_accessor incompatible_connection_data_type: Types::IncompatibleConnectionDataTypeFlowValidationDetails
|
1062
1066
|
attr_accessor missing_connection_configuration: Types::MissingConnectionConfigurationFlowValidationDetails
|
1063
1067
|
attr_accessor missing_default_condition: Types::MissingDefaultConditionFlowValidationDetails
|
1064
1068
|
attr_accessor missing_ending_nodes: Types::MissingEndingNodesFlowValidationDetails
|
1065
|
-
attr_accessor missing_loop_controller_node: Types::MissingLoopControllerNodeFlowValidationDetails
|
1066
|
-
attr_accessor missing_loop_input_node: Types::MissingLoopInputNodeFlowValidationDetails
|
1067
1069
|
attr_accessor missing_node_configuration: Types::MissingNodeConfigurationFlowValidationDetails
|
1068
1070
|
attr_accessor missing_node_input: Types::MissingNodeInputFlowValidationDetails
|
1069
1071
|
attr_accessor missing_node_output: Types::MissingNodeOutputFlowValidationDetails
|
1070
1072
|
attr_accessor missing_starting_nodes: Types::MissingStartingNodesFlowValidationDetails
|
1071
|
-
attr_accessor multiple_loop_controller_nodes: Types::MultipleLoopControllerNodesFlowValidationDetails
|
1072
|
-
attr_accessor multiple_loop_input_nodes: Types::MultipleLoopInputNodesFlowValidationDetails
|
1073
1073
|
attr_accessor multiple_node_input_connections: Types::MultipleNodeInputConnectionsFlowValidationDetails
|
1074
1074
|
attr_accessor unfulfilled_node_input: Types::UnfulfilledNodeInputFlowValidationDetails
|
1075
|
-
attr_accessor unknown_connection_condition: Types::UnknownConnectionConditionFlowValidationDetails
|
1076
|
-
attr_accessor unknown_connection_source: Types::UnknownConnectionSourceFlowValidationDetails
|
1077
|
-
attr_accessor unknown_connection_source_output: Types::UnknownConnectionSourceOutputFlowValidationDetails
|
1078
|
-
attr_accessor unknown_connection_target: Types::UnknownConnectionTargetFlowValidationDetails
|
1079
|
-
attr_accessor unknown_connection_target_input: Types::UnknownConnectionTargetInputFlowValidationDetails
|
1080
|
-
attr_accessor unknown_node_input: Types::UnknownNodeInputFlowValidationDetails
|
1081
|
-
attr_accessor unknown_node_output: Types::UnknownNodeOutputFlowValidationDetails
|
1082
|
-
attr_accessor unreachable_node: Types::UnreachableNodeFlowValidationDetails
|
1083
1075
|
attr_accessor unsatisfied_connection_conditions: Types::UnsatisfiedConnectionConditionsFlowValidationDetails
|
1084
1076
|
attr_accessor unspecified: Types::UnspecifiedFlowValidationDetails
|
1077
|
+
attr_accessor unknown_node_input: Types::UnknownNodeInputFlowValidationDetails
|
1078
|
+
attr_accessor unknown_node_output: Types::UnknownNodeOutputFlowValidationDetails
|
1079
|
+
attr_accessor missing_loop_input_node: Types::MissingLoopInputNodeFlowValidationDetails
|
1080
|
+
attr_accessor missing_loop_controller_node: Types::MissingLoopControllerNodeFlowValidationDetails
|
1081
|
+
attr_accessor multiple_loop_input_nodes: Types::MultipleLoopInputNodesFlowValidationDetails
|
1082
|
+
attr_accessor multiple_loop_controller_nodes: Types::MultipleLoopControllerNodesFlowValidationDetails
|
1083
|
+
attr_accessor loop_incompatible_node_type: Types::LoopIncompatibleNodeTypeFlowValidationDetails
|
1084
|
+
attr_accessor invalid_loop_boundary: Types::InvalidLoopBoundaryFlowValidationDetails
|
1085
1085
|
attr_accessor unknown: untyped
|
1086
1086
|
SENSITIVE: []
|
1087
1087
|
|
1088
1088
|
class CyclicConnection < FlowValidationDetails
|
1089
1089
|
end
|
1090
|
+
class DuplicateConnections < FlowValidationDetails
|
1091
|
+
end
|
1090
1092
|
class DuplicateConditionExpression < FlowValidationDetails
|
1091
1093
|
end
|
1092
|
-
class
|
1094
|
+
class UnreachableNode < FlowValidationDetails
|
1093
1095
|
end
|
1094
|
-
class
|
1096
|
+
class UnknownConnectionSource < FlowValidationDetails
|
1095
1097
|
end
|
1096
|
-
class
|
1098
|
+
class UnknownConnectionSourceOutput < FlowValidationDetails
|
1097
1099
|
end
|
1098
|
-
class
|
1100
|
+
class UnknownConnectionTarget < FlowValidationDetails
|
1101
|
+
end
|
1102
|
+
class UnknownConnectionTargetInput < FlowValidationDetails
|
1103
|
+
end
|
1104
|
+
class UnknownConnectionCondition < FlowValidationDetails
|
1099
1105
|
end
|
1100
1106
|
class MalformedConditionExpression < FlowValidationDetails
|
1101
1107
|
end
|
@@ -1105,16 +1111,14 @@ module Aws::BedrockAgent
|
|
1105
1111
|
end
|
1106
1112
|
class MismatchedNodeOutputType < FlowValidationDetails
|
1107
1113
|
end
|
1114
|
+
class IncompatibleConnectionDataType < FlowValidationDetails
|
1115
|
+
end
|
1108
1116
|
class MissingConnectionConfiguration < FlowValidationDetails
|
1109
1117
|
end
|
1110
1118
|
class MissingDefaultCondition < FlowValidationDetails
|
1111
1119
|
end
|
1112
1120
|
class MissingEndingNodes < FlowValidationDetails
|
1113
1121
|
end
|
1114
|
-
class MissingLoopControllerNode < FlowValidationDetails
|
1115
|
-
end
|
1116
|
-
class MissingLoopInputNode < FlowValidationDetails
|
1117
|
-
end
|
1118
1122
|
class MissingNodeConfiguration < FlowValidationDetails
|
1119
1123
|
end
|
1120
1124
|
class MissingNodeInput < FlowValidationDetails
|
@@ -1123,50 +1127,46 @@ module Aws::BedrockAgent
|
|
1123
1127
|
end
|
1124
1128
|
class MissingStartingNodes < FlowValidationDetails
|
1125
1129
|
end
|
1126
|
-
class MultipleLoopControllerNodes < FlowValidationDetails
|
1127
|
-
end
|
1128
|
-
class MultipleLoopInputNodes < FlowValidationDetails
|
1129
|
-
end
|
1130
1130
|
class MultipleNodeInputConnections < FlowValidationDetails
|
1131
1131
|
end
|
1132
1132
|
class UnfulfilledNodeInput < FlowValidationDetails
|
1133
1133
|
end
|
1134
|
-
class
|
1134
|
+
class UnsatisfiedConnectionConditions < FlowValidationDetails
|
1135
1135
|
end
|
1136
|
-
class
|
1136
|
+
class Unspecified < FlowValidationDetails
|
1137
1137
|
end
|
1138
|
-
class
|
1138
|
+
class UnknownNodeInput < FlowValidationDetails
|
1139
1139
|
end
|
1140
|
-
class
|
1140
|
+
class UnknownNodeOutput < FlowValidationDetails
|
1141
1141
|
end
|
1142
|
-
class
|
1142
|
+
class MissingLoopInputNode < FlowValidationDetails
|
1143
1143
|
end
|
1144
|
-
class
|
1144
|
+
class MissingLoopControllerNode < FlowValidationDetails
|
1145
1145
|
end
|
1146
|
-
class
|
1146
|
+
class MultipleLoopInputNodes < FlowValidationDetails
|
1147
1147
|
end
|
1148
|
-
class
|
1148
|
+
class MultipleLoopControllerNodes < FlowValidationDetails
|
1149
1149
|
end
|
1150
|
-
class
|
1150
|
+
class LoopIncompatibleNodeType < FlowValidationDetails
|
1151
1151
|
end
|
1152
|
-
class
|
1152
|
+
class InvalidLoopBoundary < FlowValidationDetails
|
1153
1153
|
end
|
1154
1154
|
class Unknown < FlowValidationDetails
|
1155
1155
|
end
|
1156
1156
|
end
|
1157
1157
|
|
1158
1158
|
class FlowVersionSummary
|
1159
|
-
attr_accessor arn: ::String
|
1160
|
-
attr_accessor created_at: ::Time
|
1161
1159
|
attr_accessor id: ::String
|
1160
|
+
attr_accessor arn: ::String
|
1162
1161
|
attr_accessor status: ("Failed" | "Prepared" | "Preparing" | "NotPrepared")
|
1162
|
+
attr_accessor created_at: ::Time
|
1163
1163
|
attr_accessor version: ::String
|
1164
1164
|
SENSITIVE: []
|
1165
1165
|
end
|
1166
1166
|
|
1167
1167
|
class Function
|
1168
|
-
attr_accessor description: ::String
|
1169
1168
|
attr_accessor name: ::String
|
1169
|
+
attr_accessor description: ::String
|
1170
1170
|
attr_accessor parameters: ::Hash[::String, Types::ParameterDetail]
|
1171
1171
|
attr_accessor require_confirmation: ("ENABLED" | "DISABLED")
|
1172
1172
|
SENSITIVE: []
|
@@ -1184,9 +1184,9 @@ module Aws::BedrockAgent
|
|
1184
1184
|
end
|
1185
1185
|
|
1186
1186
|
class GetAgentActionGroupRequest
|
1187
|
-
attr_accessor action_group_id: ::String
|
1188
1187
|
attr_accessor agent_id: ::String
|
1189
1188
|
attr_accessor agent_version: ::String
|
1189
|
+
attr_accessor action_group_id: ::String
|
1190
1190
|
SENSITIVE: []
|
1191
1191
|
end
|
1192
1192
|
|
@@ -1196,8 +1196,8 @@ module Aws::BedrockAgent
|
|
1196
1196
|
end
|
1197
1197
|
|
1198
1198
|
class GetAgentAliasRequest
|
1199
|
-
attr_accessor agent_alias_id: ::String
|
1200
1199
|
attr_accessor agent_id: ::String
|
1200
|
+
attr_accessor agent_alias_id: ::String
|
1201
1201
|
SENSITIVE: []
|
1202
1202
|
end
|
1203
1203
|
|
@@ -1252,8 +1252,8 @@ module Aws::BedrockAgent
|
|
1252
1252
|
end
|
1253
1253
|
|
1254
1254
|
class GetDataSourceRequest
|
1255
|
-
attr_accessor data_source_id: ::String
|
1256
1255
|
attr_accessor knowledge_base_id: ::String
|
1256
|
+
attr_accessor data_source_id: ::String
|
1257
1257
|
SENSITIVE: []
|
1258
1258
|
end
|
1259
1259
|
|
@@ -1263,20 +1263,20 @@ module Aws::BedrockAgent
|
|
1263
1263
|
end
|
1264
1264
|
|
1265
1265
|
class GetFlowAliasRequest
|
1266
|
-
attr_accessor alias_identifier: ::String
|
1267
1266
|
attr_accessor flow_identifier: ::String
|
1267
|
+
attr_accessor alias_identifier: ::String
|
1268
1268
|
SENSITIVE: []
|
1269
1269
|
end
|
1270
1270
|
|
1271
1271
|
class GetFlowAliasResponse
|
1272
|
-
attr_accessor
|
1273
|
-
attr_accessor concurrency_configuration: Types::FlowAliasConcurrencyConfiguration
|
1274
|
-
attr_accessor created_at: ::Time
|
1272
|
+
attr_accessor name: ::String
|
1275
1273
|
attr_accessor description: ::String
|
1274
|
+
attr_accessor routing_configuration: ::Array[Types::FlowAliasRoutingConfigurationListItem]
|
1275
|
+
attr_accessor concurrency_configuration: Types::FlowAliasConcurrencyConfiguration
|
1276
1276
|
attr_accessor flow_id: ::String
|
1277
1277
|
attr_accessor id: ::String
|
1278
|
-
attr_accessor
|
1279
|
-
attr_accessor
|
1278
|
+
attr_accessor arn: ::String
|
1279
|
+
attr_accessor created_at: ::Time
|
1280
1280
|
attr_accessor updated_at: ::Time
|
1281
1281
|
SENSITIVE: []
|
1282
1282
|
end
|
@@ -1287,18 +1287,18 @@ module Aws::BedrockAgent
|
|
1287
1287
|
end
|
1288
1288
|
|
1289
1289
|
class GetFlowResponse
|
1290
|
-
attr_accessor
|
1291
|
-
attr_accessor created_at: ::Time
|
1292
|
-
attr_accessor customer_encryption_key_arn: ::String
|
1293
|
-
attr_accessor definition: Types::FlowDefinition
|
1290
|
+
attr_accessor name: ::String
|
1294
1291
|
attr_accessor description: ::String
|
1295
1292
|
attr_accessor execution_role_arn: ::String
|
1293
|
+
attr_accessor customer_encryption_key_arn: ::String
|
1296
1294
|
attr_accessor id: ::String
|
1297
|
-
attr_accessor
|
1295
|
+
attr_accessor arn: ::String
|
1298
1296
|
attr_accessor status: ("Failed" | "Prepared" | "Preparing" | "NotPrepared")
|
1297
|
+
attr_accessor created_at: ::Time
|
1299
1298
|
attr_accessor updated_at: ::Time
|
1300
|
-
attr_accessor validations: ::Array[Types::FlowValidation]
|
1301
1299
|
attr_accessor version: ::String
|
1300
|
+
attr_accessor definition: Types::FlowDefinition
|
1301
|
+
attr_accessor validations: ::Array[Types::FlowValidation]
|
1302
1302
|
SENSITIVE: [:definition]
|
1303
1303
|
end
|
1304
1304
|
|
@@ -1309,23 +1309,23 @@ module Aws::BedrockAgent
|
|
1309
1309
|
end
|
1310
1310
|
|
1311
1311
|
class GetFlowVersionResponse
|
1312
|
-
attr_accessor
|
1313
|
-
attr_accessor created_at: ::Time
|
1314
|
-
attr_accessor customer_encryption_key_arn: ::String
|
1315
|
-
attr_accessor definition: Types::FlowDefinition
|
1312
|
+
attr_accessor name: ::String
|
1316
1313
|
attr_accessor description: ::String
|
1317
1314
|
attr_accessor execution_role_arn: ::String
|
1315
|
+
attr_accessor customer_encryption_key_arn: ::String
|
1318
1316
|
attr_accessor id: ::String
|
1319
|
-
attr_accessor
|
1317
|
+
attr_accessor arn: ::String
|
1320
1318
|
attr_accessor status: ("Failed" | "Prepared" | "Preparing" | "NotPrepared")
|
1319
|
+
attr_accessor created_at: ::Time
|
1321
1320
|
attr_accessor version: ::String
|
1321
|
+
attr_accessor definition: Types::FlowDefinition
|
1322
1322
|
SENSITIVE: [:definition]
|
1323
1323
|
end
|
1324
1324
|
|
1325
1325
|
class GetIngestionJobRequest
|
1326
|
+
attr_accessor knowledge_base_id: ::String
|
1326
1327
|
attr_accessor data_source_id: ::String
|
1327
1328
|
attr_accessor ingestion_job_id: ::String
|
1328
|
-
attr_accessor knowledge_base_id: ::String
|
1329
1329
|
SENSITIVE: []
|
1330
1330
|
end
|
1331
1331
|
|
@@ -1335,9 +1335,9 @@ module Aws::BedrockAgent
|
|
1335
1335
|
end
|
1336
1336
|
|
1337
1337
|
class GetKnowledgeBaseDocumentsRequest
|
1338
|
+
attr_accessor knowledge_base_id: ::String
|
1338
1339
|
attr_accessor data_source_id: ::String
|
1339
1340
|
attr_accessor document_identifiers: ::Array[Types::DocumentIdentifier]
|
1340
|
-
attr_accessor knowledge_base_id: ::String
|
1341
1341
|
SENSITIVE: []
|
1342
1342
|
end
|
1343
1343
|
|
@@ -1363,16 +1363,16 @@ module Aws::BedrockAgent
|
|
1363
1363
|
end
|
1364
1364
|
|
1365
1365
|
class GetPromptResponse
|
1366
|
-
attr_accessor
|
1367
|
-
attr_accessor
|
1366
|
+
attr_accessor name: ::String
|
1367
|
+
attr_accessor description: ::String
|
1368
1368
|
attr_accessor customer_encryption_key_arn: ::String
|
1369
1369
|
attr_accessor default_variant: ::String
|
1370
|
-
attr_accessor description: ::String
|
1371
|
-
attr_accessor id: ::String
|
1372
|
-
attr_accessor name: ::String
|
1373
|
-
attr_accessor updated_at: ::Time
|
1374
1370
|
attr_accessor variants: ::Array[Types::PromptVariant]
|
1371
|
+
attr_accessor id: ::String
|
1372
|
+
attr_accessor arn: ::String
|
1375
1373
|
attr_accessor version: ::String
|
1374
|
+
attr_accessor created_at: ::Time
|
1375
|
+
attr_accessor updated_at: ::Time
|
1376
1376
|
SENSITIVE: [:variants]
|
1377
1377
|
end
|
1378
1378
|
|
@@ -1399,19 +1399,19 @@ module Aws::BedrockAgent
|
|
1399
1399
|
end
|
1400
1400
|
|
1401
1401
|
class InferenceConfiguration
|
1402
|
-
attr_accessor maximum_length: ::Integer
|
1403
|
-
attr_accessor stop_sequences: ::Array[::String]
|
1404
1402
|
attr_accessor temperature: ::Float
|
1405
|
-
attr_accessor top_k: ::Integer
|
1406
1403
|
attr_accessor top_p: ::Float
|
1404
|
+
attr_accessor top_k: ::Integer
|
1405
|
+
attr_accessor maximum_length: ::Integer
|
1406
|
+
attr_accessor stop_sequences: ::Array[::String]
|
1407
1407
|
SENSITIVE: []
|
1408
1408
|
end
|
1409
1409
|
|
1410
1410
|
class IngestKnowledgeBaseDocumentsRequest
|
1411
|
-
attr_accessor
|
1411
|
+
attr_accessor knowledge_base_id: ::String
|
1412
1412
|
attr_accessor data_source_id: ::String
|
1413
|
+
attr_accessor client_token: ::String
|
1413
1414
|
attr_accessor documents: ::Array[Types::KnowledgeBaseDocument]
|
1414
|
-
attr_accessor knowledge_base_id: ::String
|
1415
1415
|
SENSITIVE: []
|
1416
1416
|
end
|
1417
1417
|
|
@@ -1421,14 +1421,14 @@ module Aws::BedrockAgent
|
|
1421
1421
|
end
|
1422
1422
|
|
1423
1423
|
class IngestionJob
|
1424
|
+
attr_accessor knowledge_base_id: ::String
|
1424
1425
|
attr_accessor data_source_id: ::String
|
1426
|
+
attr_accessor ingestion_job_id: ::String
|
1425
1427
|
attr_accessor description: ::String
|
1428
|
+
attr_accessor status: ("STARTING" | "IN_PROGRESS" | "COMPLETE" | "FAILED" | "STOPPING" | "STOPPED")
|
1429
|
+
attr_accessor statistics: Types::IngestionJobStatistics
|
1426
1430
|
attr_accessor failure_reasons: ::Array[::String]
|
1427
|
-
attr_accessor ingestion_job_id: ::String
|
1428
|
-
attr_accessor knowledge_base_id: ::String
|
1429
1431
|
attr_accessor started_at: ::Time
|
1430
|
-
attr_accessor statistics: Types::IngestionJobStatistics
|
1431
|
-
attr_accessor status: ("STARTING" | "IN_PROGRESS" | "COMPLETE" | "FAILED" | "STOPPING" | "STOPPED")
|
1432
1432
|
attr_accessor updated_at: ::Time
|
1433
1433
|
SENSITIVE: []
|
1434
1434
|
end
|
@@ -1447,25 +1447,25 @@ module Aws::BedrockAgent
|
|
1447
1447
|
end
|
1448
1448
|
|
1449
1449
|
class IngestionJobStatistics
|
1450
|
-
attr_accessor number_of_documents_deleted: ::Integer
|
1451
|
-
attr_accessor number_of_documents_failed: ::Integer
|
1452
1450
|
attr_accessor number_of_documents_scanned: ::Integer
|
1453
|
-
attr_accessor number_of_metadata_documents_modified: ::Integer
|
1454
1451
|
attr_accessor number_of_metadata_documents_scanned: ::Integer
|
1455
|
-
attr_accessor number_of_modified_documents_indexed: ::Integer
|
1456
1452
|
attr_accessor number_of_new_documents_indexed: ::Integer
|
1453
|
+
attr_accessor number_of_modified_documents_indexed: ::Integer
|
1454
|
+
attr_accessor number_of_metadata_documents_modified: ::Integer
|
1455
|
+
attr_accessor number_of_documents_deleted: ::Integer
|
1456
|
+
attr_accessor number_of_documents_failed: ::Integer
|
1457
1457
|
SENSITIVE: []
|
1458
1458
|
end
|
1459
1459
|
|
1460
1460
|
class IngestionJobSummary
|
1461
|
+
attr_accessor knowledge_base_id: ::String
|
1461
1462
|
attr_accessor data_source_id: ::String
|
1462
|
-
attr_accessor description: ::String
|
1463
1463
|
attr_accessor ingestion_job_id: ::String
|
1464
|
-
attr_accessor
|
1465
|
-
attr_accessor started_at: ::Time
|
1466
|
-
attr_accessor statistics: Types::IngestionJobStatistics
|
1464
|
+
attr_accessor description: ::String
|
1467
1465
|
attr_accessor status: ("STARTING" | "IN_PROGRESS" | "COMPLETE" | "FAILED" | "STOPPING" | "STOPPED")
|
1466
|
+
attr_accessor started_at: ::Time
|
1468
1467
|
attr_accessor updated_at: ::Time
|
1468
|
+
attr_accessor statistics: Types::IngestionJobStatistics
|
1469
1469
|
SENSITIVE: []
|
1470
1470
|
end
|
1471
1471
|
|
@@ -1476,9 +1476,9 @@ module Aws::BedrockAgent
|
|
1476
1476
|
end
|
1477
1477
|
|
1478
1478
|
class InlineContent
|
1479
|
+
attr_accessor type: ("BYTE" | "TEXT")
|
1479
1480
|
attr_accessor byte_content: Types::ByteContentDoc
|
1480
1481
|
attr_accessor text_content: Types::TextContentDoc
|
1481
|
-
attr_accessor type: ("BYTE" | "TEXT")
|
1482
1482
|
SENSITIVE: []
|
1483
1483
|
end
|
1484
1484
|
|
@@ -1511,61 +1511,61 @@ module Aws::BedrockAgent
|
|
1511
1511
|
end
|
1512
1512
|
|
1513
1513
|
class KnowledgeBase
|
1514
|
-
attr_accessor created_at: ::Time
|
1515
|
-
attr_accessor description: ::String
|
1516
|
-
attr_accessor failure_reasons: ::Array[::String]
|
1517
|
-
attr_accessor knowledge_base_arn: ::String
|
1518
|
-
attr_accessor knowledge_base_configuration: Types::KnowledgeBaseConfiguration
|
1519
1514
|
attr_accessor knowledge_base_id: ::String
|
1520
1515
|
attr_accessor name: ::String
|
1516
|
+
attr_accessor knowledge_base_arn: ::String
|
1517
|
+
attr_accessor description: ::String
|
1521
1518
|
attr_accessor role_arn: ::String
|
1522
|
-
attr_accessor
|
1519
|
+
attr_accessor knowledge_base_configuration: Types::KnowledgeBaseConfiguration
|
1523
1520
|
attr_accessor storage_configuration: Types::StorageConfiguration
|
1521
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "UPDATING" | "FAILED" | "DELETE_UNSUCCESSFUL")
|
1522
|
+
attr_accessor created_at: ::Time
|
1524
1523
|
attr_accessor updated_at: ::Time
|
1524
|
+
attr_accessor failure_reasons: ::Array[::String]
|
1525
1525
|
SENSITIVE: []
|
1526
1526
|
end
|
1527
1527
|
|
1528
1528
|
class KnowledgeBaseConfiguration
|
1529
|
-
attr_accessor kendra_knowledge_base_configuration: Types::KendraKnowledgeBaseConfiguration
|
1530
|
-
attr_accessor sql_knowledge_base_configuration: Types::SqlKnowledgeBaseConfiguration
|
1531
1529
|
attr_accessor type: ("VECTOR" | "KENDRA" | "SQL")
|
1532
1530
|
attr_accessor vector_knowledge_base_configuration: Types::VectorKnowledgeBaseConfiguration
|
1531
|
+
attr_accessor kendra_knowledge_base_configuration: Types::KendraKnowledgeBaseConfiguration
|
1532
|
+
attr_accessor sql_knowledge_base_configuration: Types::SqlKnowledgeBaseConfiguration
|
1533
1533
|
SENSITIVE: []
|
1534
1534
|
end
|
1535
1535
|
|
1536
1536
|
class KnowledgeBaseDocument
|
1537
|
-
attr_accessor content: Types::DocumentContent
|
1538
1537
|
attr_accessor metadata: Types::DocumentMetadata
|
1538
|
+
attr_accessor content: Types::DocumentContent
|
1539
1539
|
SENSITIVE: []
|
1540
1540
|
end
|
1541
1541
|
|
1542
1542
|
class KnowledgeBaseDocumentDetail
|
1543
|
-
attr_accessor data_source_id: ::String
|
1544
|
-
attr_accessor identifier: Types::DocumentIdentifier
|
1545
1543
|
attr_accessor knowledge_base_id: ::String
|
1544
|
+
attr_accessor data_source_id: ::String
|
1546
1545
|
attr_accessor status: ("INDEXED" | "PARTIALLY_INDEXED" | "PENDING" | "FAILED" | "METADATA_PARTIALLY_INDEXED" | "METADATA_UPDATE_FAILED" | "IGNORED" | "NOT_FOUND" | "STARTING" | "IN_PROGRESS" | "DELETING" | "DELETE_IN_PROGRESS")
|
1546
|
+
attr_accessor identifier: Types::DocumentIdentifier
|
1547
1547
|
attr_accessor status_reason: ::String
|
1548
1548
|
attr_accessor updated_at: ::Time
|
1549
1549
|
SENSITIVE: []
|
1550
1550
|
end
|
1551
1551
|
|
1552
1552
|
class KnowledgeBaseFlowNodeConfiguration
|
1553
|
-
attr_accessor guardrail_configuration: Types::GuardrailConfiguration
|
1554
|
-
attr_accessor inference_configuration: Types::PromptInferenceConfiguration
|
1555
1553
|
attr_accessor knowledge_base_id: ::String
|
1556
1554
|
attr_accessor model_id: ::String
|
1555
|
+
attr_accessor guardrail_configuration: Types::GuardrailConfiguration
|
1557
1556
|
attr_accessor number_of_results: ::Integer
|
1558
|
-
attr_accessor orchestration_configuration: Types::KnowledgeBaseOrchestrationConfiguration
|
1559
1557
|
attr_accessor prompt_template: Types::KnowledgeBasePromptTemplate
|
1558
|
+
attr_accessor inference_configuration: Types::PromptInferenceConfiguration
|
1560
1559
|
attr_accessor reranking_configuration: Types::VectorSearchRerankingConfiguration
|
1560
|
+
attr_accessor orchestration_configuration: Types::KnowledgeBaseOrchestrationConfiguration
|
1561
1561
|
SENSITIVE: []
|
1562
1562
|
end
|
1563
1563
|
|
1564
1564
|
class KnowledgeBaseOrchestrationConfiguration
|
1565
|
-
attr_accessor
|
1565
|
+
attr_accessor prompt_template: Types::KnowledgeBasePromptTemplate
|
1566
1566
|
attr_accessor inference_config: Types::PromptInferenceConfiguration
|
1567
|
+
attr_accessor additional_model_request_fields: ::Hash[::String, untyped]
|
1567
1568
|
attr_accessor performance_config: Types::PerformanceConfiguration
|
1568
|
-
attr_accessor prompt_template: Types::KnowledgeBasePromptTemplate
|
1569
1569
|
SENSITIVE: []
|
1570
1570
|
end
|
1571
1571
|
|
@@ -1575,9 +1575,9 @@ module Aws::BedrockAgent
|
|
1575
1575
|
end
|
1576
1576
|
|
1577
1577
|
class KnowledgeBaseSummary
|
1578
|
-
attr_accessor description: ::String
|
1579
1578
|
attr_accessor knowledge_base_id: ::String
|
1580
1579
|
attr_accessor name: ::String
|
1580
|
+
attr_accessor description: ::String
|
1581
1581
|
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "UPDATING" | "FAILED" | "DELETE_UNSUCCESSFUL")
|
1582
1582
|
attr_accessor updated_at: ::Time
|
1583
1583
|
SENSITIVE: []
|
@@ -1726,12 +1726,12 @@ module Aws::BedrockAgent
|
|
1726
1726
|
end
|
1727
1727
|
|
1728
1728
|
class ListIngestionJobsRequest
|
1729
|
+
attr_accessor knowledge_base_id: ::String
|
1729
1730
|
attr_accessor data_source_id: ::String
|
1730
1731
|
attr_accessor filters: ::Array[Types::IngestionJobFilter]
|
1731
|
-
attr_accessor
|
1732
|
+
attr_accessor sort_by: Types::IngestionJobSortBy
|
1732
1733
|
attr_accessor max_results: ::Integer
|
1733
1734
|
attr_accessor next_token: ::String
|
1734
|
-
attr_accessor sort_by: Types::IngestionJobSortBy
|
1735
1735
|
SENSITIVE: []
|
1736
1736
|
end
|
1737
1737
|
|
@@ -1742,8 +1742,8 @@ module Aws::BedrockAgent
|
|
1742
1742
|
end
|
1743
1743
|
|
1744
1744
|
class ListKnowledgeBaseDocumentsRequest
|
1745
|
-
attr_accessor data_source_id: ::String
|
1746
1745
|
attr_accessor knowledge_base_id: ::String
|
1746
|
+
attr_accessor data_source_id: ::String
|
1747
1747
|
attr_accessor max_results: ::Integer
|
1748
1748
|
attr_accessor next_token: ::String
|
1749
1749
|
SENSITIVE: []
|
@@ -1768,15 +1768,15 @@ module Aws::BedrockAgent
|
|
1768
1768
|
end
|
1769
1769
|
|
1770
1770
|
class ListPromptsRequest
|
1771
|
+
attr_accessor prompt_identifier: ::String
|
1771
1772
|
attr_accessor max_results: ::Integer
|
1772
1773
|
attr_accessor next_token: ::String
|
1773
|
-
attr_accessor prompt_identifier: ::String
|
1774
1774
|
SENSITIVE: []
|
1775
1775
|
end
|
1776
1776
|
|
1777
1777
|
class ListPromptsResponse
|
1778
|
-
attr_accessor next_token: ::String
|
1779
1778
|
attr_accessor prompt_summaries: ::Array[Types::PromptSummary]
|
1779
|
+
attr_accessor next_token: ::String
|
1780
1780
|
SENSITIVE: []
|
1781
1781
|
end
|
1782
1782
|
|
@@ -1802,9 +1802,9 @@ module Aws::BedrockAgent
|
|
1802
1802
|
end
|
1803
1803
|
|
1804
1804
|
class LoopIncompatibleNodeTypeFlowValidationDetails
|
1805
|
-
attr_accessor incompatible_node_name: ::String
|
1806
|
-
attr_accessor incompatible_node_type: ("Input" | "Condition" | "Iterator" | "Collector")
|
1807
1805
|
attr_accessor node: ::String
|
1806
|
+
attr_accessor incompatible_node_type: ("Input" | "Condition" | "Iterator" | "Collector")
|
1807
|
+
attr_accessor incompatible_node_name: ::String
|
1808
1808
|
SENSITIVE: []
|
1809
1809
|
end
|
1810
1810
|
|
@@ -1812,29 +1812,29 @@ module Aws::BedrockAgent
|
|
1812
1812
|
end
|
1813
1813
|
|
1814
1814
|
class MalformedConditionExpressionFlowValidationDetails
|
1815
|
-
attr_accessor cause: ::String
|
1816
|
-
attr_accessor condition: ::String
|
1817
1815
|
attr_accessor node: ::String
|
1816
|
+
attr_accessor condition: ::String
|
1817
|
+
attr_accessor cause: ::String
|
1818
1818
|
SENSITIVE: []
|
1819
1819
|
end
|
1820
1820
|
|
1821
1821
|
class MalformedNodeInputExpressionFlowValidationDetails
|
1822
|
-
attr_accessor cause: ::String
|
1823
|
-
attr_accessor input: ::String
|
1824
1822
|
attr_accessor node: ::String
|
1823
|
+
attr_accessor input: ::String
|
1824
|
+
attr_accessor cause: ::String
|
1825
1825
|
SENSITIVE: []
|
1826
1826
|
end
|
1827
1827
|
|
1828
1828
|
class MemoryConfiguration
|
1829
1829
|
attr_accessor enabled_memory_types: ::Array[("SESSION_SUMMARY")]
|
1830
|
-
attr_accessor session_summary_configuration: Types::SessionSummaryConfiguration
|
1831
1830
|
attr_accessor storage_days: ::Integer
|
1831
|
+
attr_accessor session_summary_configuration: Types::SessionSummaryConfiguration
|
1832
1832
|
SENSITIVE: []
|
1833
1833
|
end
|
1834
1834
|
|
1835
1835
|
class Message
|
1836
|
-
attr_accessor content: ::Array[Types::ContentBlock]
|
1837
1836
|
attr_accessor role: ("user" | "assistant")
|
1837
|
+
attr_accessor content: ::Array[Types::ContentBlock]
|
1838
1838
|
SENSITIVE: []
|
1839
1839
|
end
|
1840
1840
|
|
@@ -1845,11 +1845,11 @@ module Aws::BedrockAgent
|
|
1845
1845
|
end
|
1846
1846
|
|
1847
1847
|
class MetadataAttributeValue
|
1848
|
-
attr_accessor
|
1848
|
+
attr_accessor type: ("BOOLEAN" | "NUMBER" | "STRING" | "STRING_LIST")
|
1849
1849
|
attr_accessor number_value: ::Float
|
1850
|
-
attr_accessor
|
1850
|
+
attr_accessor boolean_value: bool
|
1851
1851
|
attr_accessor string_value: ::String
|
1852
|
-
attr_accessor
|
1852
|
+
attr_accessor string_list_value: ::Array[::String]
|
1853
1853
|
SENSITIVE: [:number_value, :string_value]
|
1854
1854
|
end
|
1855
1855
|
|
@@ -1860,16 +1860,16 @@ module Aws::BedrockAgent
|
|
1860
1860
|
end
|
1861
1861
|
|
1862
1862
|
class MismatchedNodeInputTypeFlowValidationDetails
|
1863
|
-
attr_accessor expected_type: ("String" | "Number" | "Boolean" | "Object" | "Array")
|
1864
|
-
attr_accessor input: ::String
|
1865
1863
|
attr_accessor node: ::String
|
1864
|
+
attr_accessor input: ::String
|
1865
|
+
attr_accessor expected_type: ("String" | "Number" | "Boolean" | "Object" | "Array")
|
1866
1866
|
SENSITIVE: []
|
1867
1867
|
end
|
1868
1868
|
|
1869
1869
|
class MismatchedNodeOutputTypeFlowValidationDetails
|
1870
|
-
attr_accessor expected_type: ("String" | "Number" | "Boolean" | "Object" | "Array")
|
1871
1870
|
attr_accessor node: ::String
|
1872
1871
|
attr_accessor output: ::String
|
1872
|
+
attr_accessor expected_type: ("String" | "Number" | "Boolean" | "Object" | "Array")
|
1873
1873
|
SENSITIVE: []
|
1874
1874
|
end
|
1875
1875
|
|
@@ -1902,8 +1902,8 @@ module Aws::BedrockAgent
|
|
1902
1902
|
end
|
1903
1903
|
|
1904
1904
|
class MissingNodeInputFlowValidationDetails
|
1905
|
-
attr_accessor input: ::String
|
1906
1905
|
attr_accessor node: ::String
|
1906
|
+
attr_accessor input: ::String
|
1907
1907
|
SENSITIVE: []
|
1908
1908
|
end
|
1909
1909
|
|
@@ -1917,21 +1917,21 @@ module Aws::BedrockAgent
|
|
1917
1917
|
end
|
1918
1918
|
|
1919
1919
|
class MongoDbAtlasConfiguration
|
1920
|
+
attr_accessor endpoint: ::String
|
1921
|
+
attr_accessor database_name: ::String
|
1920
1922
|
attr_accessor collection_name: ::String
|
1923
|
+
attr_accessor vector_index_name: ::String
|
1921
1924
|
attr_accessor credentials_secret_arn: ::String
|
1922
|
-
attr_accessor database_name: ::String
|
1923
|
-
attr_accessor endpoint: ::String
|
1924
|
-
attr_accessor endpoint_service_name: ::String
|
1925
1925
|
attr_accessor field_mapping: Types::MongoDbAtlasFieldMapping
|
1926
|
+
attr_accessor endpoint_service_name: ::String
|
1926
1927
|
attr_accessor text_index_name: ::String
|
1927
|
-
attr_accessor vector_index_name: ::String
|
1928
1928
|
SENSITIVE: []
|
1929
1929
|
end
|
1930
1930
|
|
1931
1931
|
class MongoDbAtlasFieldMapping
|
1932
|
-
attr_accessor metadata_field: ::String
|
1933
|
-
attr_accessor text_field: ::String
|
1934
1932
|
attr_accessor vector_field: ::String
|
1933
|
+
attr_accessor text_field: ::String
|
1934
|
+
attr_accessor metadata_field: ::String
|
1935
1935
|
SENSITIVE: []
|
1936
1936
|
end
|
1937
1937
|
|
@@ -1946,49 +1946,49 @@ module Aws::BedrockAgent
|
|
1946
1946
|
end
|
1947
1947
|
|
1948
1948
|
class MultipleNodeInputConnectionsFlowValidationDetails
|
1949
|
-
attr_accessor input: ::String
|
1950
1949
|
attr_accessor node: ::String
|
1950
|
+
attr_accessor input: ::String
|
1951
1951
|
SENSITIVE: []
|
1952
1952
|
end
|
1953
1953
|
|
1954
1954
|
class NeptuneAnalyticsConfiguration
|
1955
|
-
attr_accessor field_mapping: Types::NeptuneAnalyticsFieldMapping
|
1956
1955
|
attr_accessor graph_arn: ::String
|
1956
|
+
attr_accessor field_mapping: Types::NeptuneAnalyticsFieldMapping
|
1957
1957
|
SENSITIVE: [:graph_arn]
|
1958
1958
|
end
|
1959
1959
|
|
1960
1960
|
class NeptuneAnalyticsFieldMapping
|
1961
|
-
attr_accessor metadata_field: ::String
|
1962
1961
|
attr_accessor text_field: ::String
|
1962
|
+
attr_accessor metadata_field: ::String
|
1963
1963
|
SENSITIVE: []
|
1964
1964
|
end
|
1965
1965
|
|
1966
1966
|
class OpenSearchManagedClusterConfiguration
|
1967
|
-
attr_accessor domain_arn: ::String
|
1968
1967
|
attr_accessor domain_endpoint: ::String
|
1969
|
-
attr_accessor
|
1968
|
+
attr_accessor domain_arn: ::String
|
1970
1969
|
attr_accessor vector_index_name: ::String
|
1970
|
+
attr_accessor field_mapping: Types::OpenSearchManagedClusterFieldMapping
|
1971
1971
|
SENSITIVE: [:vector_index_name]
|
1972
1972
|
end
|
1973
1973
|
|
1974
1974
|
class OpenSearchManagedClusterFieldMapping
|
1975
|
-
attr_accessor metadata_field: ::String
|
1976
|
-
attr_accessor text_field: ::String
|
1977
1975
|
attr_accessor vector_field: ::String
|
1976
|
+
attr_accessor text_field: ::String
|
1977
|
+
attr_accessor metadata_field: ::String
|
1978
1978
|
SENSITIVE: []
|
1979
1979
|
end
|
1980
1980
|
|
1981
1981
|
class OpenSearchServerlessConfiguration
|
1982
1982
|
attr_accessor collection_arn: ::String
|
1983
|
-
attr_accessor field_mapping: Types::OpenSearchServerlessFieldMapping
|
1984
1983
|
attr_accessor vector_index_name: ::String
|
1984
|
+
attr_accessor field_mapping: Types::OpenSearchServerlessFieldMapping
|
1985
1985
|
SENSITIVE: []
|
1986
1986
|
end
|
1987
1987
|
|
1988
1988
|
class OpenSearchServerlessFieldMapping
|
1989
|
-
attr_accessor metadata_field: ::String
|
1990
|
-
attr_accessor text_field: ::String
|
1991
1989
|
attr_accessor vector_field: ::String
|
1990
|
+
attr_accessor text_field: ::String
|
1991
|
+
attr_accessor metadata_field: ::String
|
1992
1992
|
SENSITIVE: []
|
1993
1993
|
end
|
1994
1994
|
|
@@ -2008,15 +2008,15 @@ module Aws::BedrockAgent
|
|
2008
2008
|
|
2009
2009
|
class ParameterDetail
|
2010
2010
|
attr_accessor description: ::String
|
2011
|
-
attr_accessor required: bool
|
2012
2011
|
attr_accessor type: ("string" | "number" | "integer" | "boolean" | "array")
|
2012
|
+
attr_accessor required: bool
|
2013
2013
|
SENSITIVE: []
|
2014
2014
|
end
|
2015
2015
|
|
2016
2016
|
class ParsingConfiguration
|
2017
|
-
attr_accessor bedrock_data_automation_configuration: Types::BedrockDataAutomationConfiguration
|
2018
|
-
attr_accessor bedrock_foundation_model_configuration: Types::BedrockFoundationModelConfiguration
|
2019
2017
|
attr_accessor parsing_strategy: ("BEDROCK_FOUNDATION_MODEL" | "BEDROCK_DATA_AUTOMATION")
|
2018
|
+
attr_accessor bedrock_foundation_model_configuration: Types::BedrockFoundationModelConfiguration
|
2019
|
+
attr_accessor bedrock_data_automation_configuration: Types::BedrockDataAutomationConfiguration
|
2020
2020
|
SENSITIVE: []
|
2021
2021
|
end
|
2022
2022
|
|
@@ -2026,10 +2026,10 @@ module Aws::BedrockAgent
|
|
2026
2026
|
end
|
2027
2027
|
|
2028
2028
|
class PatternObjectFilter
|
2029
|
-
attr_accessor exclusion_filters: ::Array[::String]
|
2030
|
-
attr_accessor inclusion_filters: ::Array[::String]
|
2031
2029
|
attr_accessor object_type: ::String
|
2032
|
-
|
2030
|
+
attr_accessor inclusion_filters: ::Array[::String]
|
2031
|
+
attr_accessor exclusion_filters: ::Array[::String]
|
2032
|
+
SENSITIVE: [:object_type, :inclusion_filters, :exclusion_filters]
|
2033
2033
|
end
|
2034
2034
|
|
2035
2035
|
class PatternObjectFilterConfiguration
|
@@ -2045,14 +2045,14 @@ module Aws::BedrockAgent
|
|
2045
2045
|
class PineconeConfiguration
|
2046
2046
|
attr_accessor connection_string: ::String
|
2047
2047
|
attr_accessor credentials_secret_arn: ::String
|
2048
|
-
attr_accessor field_mapping: Types::PineconeFieldMapping
|
2049
2048
|
attr_accessor namespace: ::String
|
2049
|
+
attr_accessor field_mapping: Types::PineconeFieldMapping
|
2050
2050
|
SENSITIVE: []
|
2051
2051
|
end
|
2052
2052
|
|
2053
2053
|
class PineconeFieldMapping
|
2054
|
-
attr_accessor metadata_field: ::String
|
2055
2054
|
attr_accessor text_field: ::String
|
2055
|
+
attr_accessor metadata_field: ::String
|
2056
2056
|
SENSITIVE: []
|
2057
2057
|
end
|
2058
2058
|
|
@@ -2086,29 +2086,29 @@ module Aws::BedrockAgent
|
|
2086
2086
|
end
|
2087
2087
|
|
2088
2088
|
class PromptConfiguration
|
2089
|
-
attr_accessor
|
2089
|
+
attr_accessor prompt_type: ("PRE_PROCESSING" | "ORCHESTRATION" | "POST_PROCESSING" | "KNOWLEDGE_BASE_RESPONSE_GENERATION" | "MEMORY_SUMMARIZATION")
|
2090
|
+
attr_accessor prompt_creation_mode: ("DEFAULT" | "OVERRIDDEN")
|
2091
|
+
attr_accessor prompt_state: ("ENABLED" | "DISABLED")
|
2090
2092
|
attr_accessor base_prompt_template: ::String
|
2091
|
-
attr_accessor foundation_model: ::String
|
2092
2093
|
attr_accessor inference_configuration: Types::InferenceConfiguration
|
2093
2094
|
attr_accessor parser_mode: ("DEFAULT" | "OVERRIDDEN")
|
2094
|
-
attr_accessor
|
2095
|
-
attr_accessor
|
2096
|
-
attr_accessor prompt_type: ("PRE_PROCESSING" | "ORCHESTRATION" | "POST_PROCESSING" | "KNOWLEDGE_BASE_RESPONSE_GENERATION" | "MEMORY_SUMMARIZATION")
|
2095
|
+
attr_accessor foundation_model: ::String
|
2096
|
+
attr_accessor additional_model_request_fields: untyped
|
2097
2097
|
SENSITIVE: [:base_prompt_template]
|
2098
2098
|
end
|
2099
2099
|
|
2100
2100
|
class PromptFlowNodeConfiguration
|
2101
|
-
attr_accessor guardrail_configuration: Types::GuardrailConfiguration
|
2102
2101
|
attr_accessor source_configuration: Types::PromptFlowNodeSourceConfiguration
|
2102
|
+
attr_accessor guardrail_configuration: Types::GuardrailConfiguration
|
2103
2103
|
SENSITIVE: []
|
2104
2104
|
end
|
2105
2105
|
|
2106
2106
|
class PromptFlowNodeInlineConfiguration
|
2107
|
-
attr_accessor additional_model_request_fields: untyped
|
2108
|
-
attr_accessor inference_configuration: Types::PromptInferenceConfiguration
|
2109
|
-
attr_accessor model_id: ::String
|
2110
|
-
attr_accessor template_configuration: Types::PromptTemplateConfiguration
|
2111
2107
|
attr_accessor template_type: ("TEXT" | "CHAT")
|
2108
|
+
attr_accessor template_configuration: Types::PromptTemplateConfiguration
|
2109
|
+
attr_accessor model_id: ::String
|
2110
|
+
attr_accessor inference_configuration: Types::PromptInferenceConfiguration
|
2111
|
+
attr_accessor additional_model_request_fields: untyped
|
2112
2112
|
SENSITIVE: []
|
2113
2113
|
end
|
2114
2114
|
|
@@ -2118,15 +2118,15 @@ module Aws::BedrockAgent
|
|
2118
2118
|
end
|
2119
2119
|
|
2120
2120
|
class PromptFlowNodeSourceConfiguration
|
2121
|
-
attr_accessor inline: Types::PromptFlowNodeInlineConfiguration
|
2122
2121
|
attr_accessor resource: Types::PromptFlowNodeResourceConfiguration
|
2122
|
+
attr_accessor inline: Types::PromptFlowNodeInlineConfiguration
|
2123
2123
|
attr_accessor unknown: untyped
|
2124
2124
|
SENSITIVE: []
|
2125
2125
|
|
2126
|
-
class Inline < PromptFlowNodeSourceConfiguration
|
2127
|
-
end
|
2128
2126
|
class Resource < PromptFlowNodeSourceConfiguration
|
2129
2127
|
end
|
2128
|
+
class Inline < PromptFlowNodeSourceConfiguration
|
2129
|
+
end
|
2130
2130
|
class Unknown < PromptFlowNodeSourceConfiguration
|
2131
2131
|
end
|
2132
2132
|
end
|
@@ -2165,60 +2165,60 @@ module Aws::BedrockAgent
|
|
2165
2165
|
end
|
2166
2166
|
|
2167
2167
|
class PromptModelInferenceConfiguration
|
2168
|
-
attr_accessor max_tokens: ::Integer
|
2169
|
-
attr_accessor stop_sequences: ::Array[::String]
|
2170
2168
|
attr_accessor temperature: ::Float
|
2171
2169
|
attr_accessor top_p: ::Float
|
2170
|
+
attr_accessor max_tokens: ::Integer
|
2171
|
+
attr_accessor stop_sequences: ::Array[::String]
|
2172
2172
|
SENSITIVE: []
|
2173
2173
|
end
|
2174
2174
|
|
2175
2175
|
class PromptOverrideConfiguration
|
2176
|
-
attr_accessor override_lambda: ::String
|
2177
2176
|
attr_accessor prompt_configurations: ::Array[Types::PromptConfiguration]
|
2177
|
+
attr_accessor override_lambda: ::String
|
2178
2178
|
SENSITIVE: []
|
2179
2179
|
end
|
2180
2180
|
|
2181
2181
|
class PromptSummary
|
2182
|
-
attr_accessor
|
2183
|
-
attr_accessor created_at: ::Time
|
2182
|
+
attr_accessor name: ::String
|
2184
2183
|
attr_accessor description: ::String
|
2185
2184
|
attr_accessor id: ::String
|
2186
|
-
attr_accessor
|
2187
|
-
attr_accessor updated_at: ::Time
|
2185
|
+
attr_accessor arn: ::String
|
2188
2186
|
attr_accessor version: ::String
|
2187
|
+
attr_accessor created_at: ::Time
|
2188
|
+
attr_accessor updated_at: ::Time
|
2189
2189
|
SENSITIVE: []
|
2190
2190
|
end
|
2191
2191
|
|
2192
2192
|
class PromptTemplateConfiguration
|
2193
|
-
attr_accessor chat: Types::ChatPromptTemplateConfiguration
|
2194
2193
|
attr_accessor text: Types::TextPromptTemplateConfiguration
|
2194
|
+
attr_accessor chat: Types::ChatPromptTemplateConfiguration
|
2195
2195
|
attr_accessor unknown: untyped
|
2196
|
-
SENSITIVE: [:
|
2196
|
+
SENSITIVE: [:text, :chat]
|
2197
2197
|
|
2198
|
-
class Chat < PromptTemplateConfiguration
|
2199
|
-
end
|
2200
2198
|
class Text < PromptTemplateConfiguration
|
2201
2199
|
end
|
2200
|
+
class Chat < PromptTemplateConfiguration
|
2201
|
+
end
|
2202
2202
|
class Unknown < PromptTemplateConfiguration
|
2203
2203
|
end
|
2204
2204
|
end
|
2205
2205
|
|
2206
2206
|
class PromptVariant
|
2207
|
-
attr_accessor additional_model_request_fields: untyped
|
2208
|
-
attr_accessor gen_ai_resource: Types::PromptGenAiResource
|
2209
|
-
attr_accessor inference_configuration: Types::PromptInferenceConfiguration
|
2210
|
-
attr_accessor metadata: ::Array[Types::PromptMetadataEntry]
|
2211
|
-
attr_accessor model_id: ::String
|
2212
2207
|
attr_accessor name: ::String
|
2213
|
-
attr_accessor template_configuration: Types::PromptTemplateConfiguration
|
2214
2208
|
attr_accessor template_type: ("TEXT" | "CHAT")
|
2215
|
-
|
2209
|
+
attr_accessor template_configuration: Types::PromptTemplateConfiguration
|
2210
|
+
attr_accessor model_id: ::String
|
2211
|
+
attr_accessor inference_configuration: Types::PromptInferenceConfiguration
|
2212
|
+
attr_accessor metadata: ::Array[Types::PromptMetadataEntry]
|
2213
|
+
attr_accessor additional_model_request_fields: untyped
|
2214
|
+
attr_accessor gen_ai_resource: Types::PromptGenAiResource
|
2215
|
+
SENSITIVE: [:metadata, :gen_ai_resource]
|
2216
2216
|
end
|
2217
2217
|
|
2218
2218
|
class QueryGenerationColumn
|
2219
|
+
attr_accessor name: ::String
|
2219
2220
|
attr_accessor description: ::String
|
2220
2221
|
attr_accessor inclusion: ("INCLUDE" | "EXCLUDE")
|
2221
|
-
attr_accessor name: ::String
|
2222
2222
|
SENSITIVE: []
|
2223
2223
|
end
|
2224
2224
|
|
@@ -2229,69 +2229,69 @@ module Aws::BedrockAgent
|
|
2229
2229
|
end
|
2230
2230
|
|
2231
2231
|
class QueryGenerationContext
|
2232
|
-
attr_accessor curated_queries: ::Array[Types::CuratedQuery]
|
2233
2232
|
attr_accessor tables: ::Array[Types::QueryGenerationTable]
|
2233
|
+
attr_accessor curated_queries: ::Array[Types::CuratedQuery]
|
2234
2234
|
SENSITIVE: []
|
2235
2235
|
end
|
2236
2236
|
|
2237
2237
|
class QueryGenerationTable
|
2238
|
-
attr_accessor
|
2238
|
+
attr_accessor name: ::String
|
2239
2239
|
attr_accessor description: ::String
|
2240
2240
|
attr_accessor inclusion: ("INCLUDE" | "EXCLUDE")
|
2241
|
-
attr_accessor
|
2241
|
+
attr_accessor columns: ::Array[Types::QueryGenerationColumn]
|
2242
2242
|
SENSITIVE: []
|
2243
2243
|
end
|
2244
2244
|
|
2245
2245
|
class RdsConfiguration
|
2246
|
+
attr_accessor resource_arn: ::String
|
2246
2247
|
attr_accessor credentials_secret_arn: ::String
|
2247
2248
|
attr_accessor database_name: ::String
|
2248
|
-
attr_accessor field_mapping: Types::RdsFieldMapping
|
2249
|
-
attr_accessor resource_arn: ::String
|
2250
2249
|
attr_accessor table_name: ::String
|
2250
|
+
attr_accessor field_mapping: Types::RdsFieldMapping
|
2251
2251
|
SENSITIVE: []
|
2252
2252
|
end
|
2253
2253
|
|
2254
2254
|
class RdsFieldMapping
|
2255
|
-
attr_accessor custom_metadata_field: ::String
|
2256
|
-
attr_accessor metadata_field: ::String
|
2257
2255
|
attr_accessor primary_key_field: ::String
|
2258
|
-
attr_accessor text_field: ::String
|
2259
2256
|
attr_accessor vector_field: ::String
|
2257
|
+
attr_accessor text_field: ::String
|
2258
|
+
attr_accessor metadata_field: ::String
|
2259
|
+
attr_accessor custom_metadata_field: ::String
|
2260
2260
|
SENSITIVE: []
|
2261
2261
|
end
|
2262
2262
|
|
2263
2263
|
class RedisEnterpriseCloudConfiguration
|
2264
|
-
attr_accessor credentials_secret_arn: ::String
|
2265
2264
|
attr_accessor endpoint: ::String
|
2266
|
-
attr_accessor field_mapping: Types::RedisEnterpriseCloudFieldMapping
|
2267
2265
|
attr_accessor vector_index_name: ::String
|
2266
|
+
attr_accessor credentials_secret_arn: ::String
|
2267
|
+
attr_accessor field_mapping: Types::RedisEnterpriseCloudFieldMapping
|
2268
2268
|
SENSITIVE: []
|
2269
2269
|
end
|
2270
2270
|
|
2271
2271
|
class RedisEnterpriseCloudFieldMapping
|
2272
|
-
attr_accessor metadata_field: ::String
|
2273
|
-
attr_accessor text_field: ::String
|
2274
2272
|
attr_accessor vector_field: ::String
|
2273
|
+
attr_accessor text_field: ::String
|
2274
|
+
attr_accessor metadata_field: ::String
|
2275
2275
|
SENSITIVE: []
|
2276
2276
|
end
|
2277
2277
|
|
2278
2278
|
class RedshiftConfiguration
|
2279
|
+
attr_accessor storage_configurations: ::Array[Types::RedshiftQueryEngineStorageConfiguration]
|
2279
2280
|
attr_accessor query_engine_configuration: Types::RedshiftQueryEngineConfiguration
|
2280
2281
|
attr_accessor query_generation_configuration: Types::QueryGenerationConfiguration
|
2281
|
-
attr_accessor storage_configurations: ::Array[Types::RedshiftQueryEngineStorageConfiguration]
|
2282
2282
|
SENSITIVE: []
|
2283
2283
|
end
|
2284
2284
|
|
2285
2285
|
class RedshiftProvisionedAuthConfiguration
|
2286
|
-
attr_accessor database_user: ::String
|
2287
2286
|
attr_accessor type: ("IAM" | "USERNAME_PASSWORD" | "USERNAME")
|
2287
|
+
attr_accessor database_user: ::String
|
2288
2288
|
attr_accessor username_password_secret_arn: ::String
|
2289
2289
|
SENSITIVE: []
|
2290
2290
|
end
|
2291
2291
|
|
2292
2292
|
class RedshiftProvisionedConfiguration
|
2293
|
-
attr_accessor auth_configuration: Types::RedshiftProvisionedAuthConfiguration
|
2294
2293
|
attr_accessor cluster_identifier: ::String
|
2294
|
+
attr_accessor auth_configuration: Types::RedshiftProvisionedAuthConfiguration
|
2295
2295
|
SENSITIVE: []
|
2296
2296
|
end
|
2297
2297
|
|
@@ -2301,9 +2301,9 @@ module Aws::BedrockAgent
|
|
2301
2301
|
end
|
2302
2302
|
|
2303
2303
|
class RedshiftQueryEngineConfiguration
|
2304
|
-
attr_accessor provisioned_configuration: Types::RedshiftProvisionedConfiguration
|
2305
|
-
attr_accessor serverless_configuration: Types::RedshiftServerlessConfiguration
|
2306
2304
|
attr_accessor type: ("SERVERLESS" | "PROVISIONED")
|
2305
|
+
attr_accessor serverless_configuration: Types::RedshiftServerlessConfiguration
|
2306
|
+
attr_accessor provisioned_configuration: Types::RedshiftProvisionedConfiguration
|
2307
2307
|
SENSITIVE: []
|
2308
2308
|
end
|
2309
2309
|
|
@@ -2313,9 +2313,9 @@ module Aws::BedrockAgent
|
|
2313
2313
|
end
|
2314
2314
|
|
2315
2315
|
class RedshiftQueryEngineStorageConfiguration
|
2316
|
+
attr_accessor type: ("REDSHIFT" | "AWS_DATA_CATALOG")
|
2316
2317
|
attr_accessor aws_data_catalog_configuration: Types::RedshiftQueryEngineAwsDataCatalogStorageConfiguration
|
2317
2318
|
attr_accessor redshift_configuration: Types::RedshiftQueryEngineRedshiftStorageConfiguration
|
2318
|
-
attr_accessor type: ("REDSHIFT" | "AWS_DATA_CATALOG")
|
2319
2319
|
SENSITIVE: []
|
2320
2320
|
end
|
2321
2321
|
|
@@ -2326,21 +2326,21 @@ module Aws::BedrockAgent
|
|
2326
2326
|
end
|
2327
2327
|
|
2328
2328
|
class RedshiftServerlessConfiguration
|
2329
|
-
attr_accessor auth_configuration: Types::RedshiftServerlessAuthConfiguration
|
2330
2329
|
attr_accessor workgroup_arn: ::String
|
2330
|
+
attr_accessor auth_configuration: Types::RedshiftServerlessAuthConfiguration
|
2331
2331
|
SENSITIVE: []
|
2332
2332
|
end
|
2333
2333
|
|
2334
2334
|
class RerankingMetadataSelectiveModeConfiguration
|
2335
|
-
attr_accessor fields_to_exclude: ::Array[Types::FieldForReranking]
|
2336
2335
|
attr_accessor fields_to_include: ::Array[Types::FieldForReranking]
|
2336
|
+
attr_accessor fields_to_exclude: ::Array[Types::FieldForReranking]
|
2337
2337
|
attr_accessor unknown: untyped
|
2338
|
-
SENSITIVE: [:
|
2338
|
+
SENSITIVE: [:fields_to_include, :fields_to_exclude]
|
2339
2339
|
|
2340
|
-
class FieldsToExclude < RerankingMetadataSelectiveModeConfiguration
|
2341
|
-
end
|
2342
2340
|
class FieldsToInclude < RerankingMetadataSelectiveModeConfiguration
|
2343
2341
|
end
|
2342
|
+
class FieldsToExclude < RerankingMetadataSelectiveModeConfiguration
|
2343
|
+
end
|
2344
2344
|
class Unknown < RerankingMetadataSelectiveModeConfiguration
|
2345
2345
|
end
|
2346
2346
|
end
|
@@ -2378,8 +2378,8 @@ module Aws::BedrockAgent
|
|
2378
2378
|
|
2379
2379
|
class S3DataSourceConfiguration
|
2380
2380
|
attr_accessor bucket_arn: ::String
|
2381
|
-
attr_accessor bucket_owner_account_id: ::String
|
2382
2381
|
attr_accessor inclusion_prefixes: ::Array[::String]
|
2382
|
+
attr_accessor bucket_owner_account_id: ::String
|
2383
2383
|
SENSITIVE: []
|
2384
2384
|
end
|
2385
2385
|
|
@@ -2395,10 +2395,10 @@ module Aws::BedrockAgent
|
|
2395
2395
|
end
|
2396
2396
|
|
2397
2397
|
class S3VectorsConfiguration
|
2398
|
+
attr_accessor vector_bucket_arn: ::String
|
2398
2399
|
attr_accessor index_arn: ::String
|
2399
2400
|
attr_accessor index_name: ::String
|
2400
|
-
|
2401
|
-
SENSITIVE: [:index_arn, :index_name, :vector_bucket_arn]
|
2401
|
+
SENSITIVE: [:vector_bucket_arn, :index_arn, :index_name]
|
2402
2402
|
end
|
2403
2403
|
|
2404
2404
|
class SalesforceCrawlerConfiguration
|
@@ -2407,15 +2407,15 @@ module Aws::BedrockAgent
|
|
2407
2407
|
end
|
2408
2408
|
|
2409
2409
|
class SalesforceDataSourceConfiguration
|
2410
|
-
attr_accessor crawler_configuration: Types::SalesforceCrawlerConfiguration
|
2411
2410
|
attr_accessor source_configuration: Types::SalesforceSourceConfiguration
|
2411
|
+
attr_accessor crawler_configuration: Types::SalesforceCrawlerConfiguration
|
2412
2412
|
SENSITIVE: []
|
2413
2413
|
end
|
2414
2414
|
|
2415
2415
|
class SalesforceSourceConfiguration
|
2416
|
+
attr_accessor host_url: ::String
|
2416
2417
|
attr_accessor auth_type: ("OAUTH2_CLIENT_CREDENTIALS")
|
2417
2418
|
attr_accessor credentials_secret_arn: ::String
|
2418
|
-
attr_accessor host_url: ::String
|
2419
2419
|
SENSITIVE: []
|
2420
2420
|
end
|
2421
2421
|
|
@@ -2425,9 +2425,9 @@ module Aws::BedrockAgent
|
|
2425
2425
|
end
|
2426
2426
|
|
2427
2427
|
class SemanticChunkingConfiguration
|
2428
|
-
attr_accessor breakpoint_percentile_threshold: ::Integer
|
2429
|
-
attr_accessor buffer_size: ::Integer
|
2430
2428
|
attr_accessor max_tokens: ::Integer
|
2429
|
+
attr_accessor buffer_size: ::Integer
|
2430
|
+
attr_accessor breakpoint_percentile_threshold: ::Integer
|
2431
2431
|
SENSITIVE: []
|
2432
2432
|
end
|
2433
2433
|
|
@@ -2452,18 +2452,18 @@ module Aws::BedrockAgent
|
|
2452
2452
|
end
|
2453
2453
|
|
2454
2454
|
class SharePointDataSourceConfiguration
|
2455
|
-
attr_accessor crawler_configuration: Types::SharePointCrawlerConfiguration
|
2456
2455
|
attr_accessor source_configuration: Types::SharePointSourceConfiguration
|
2456
|
+
attr_accessor crawler_configuration: Types::SharePointCrawlerConfiguration
|
2457
2457
|
SENSITIVE: []
|
2458
2458
|
end
|
2459
2459
|
|
2460
2460
|
class SharePointSourceConfiguration
|
2461
|
-
attr_accessor
|
2462
|
-
attr_accessor credentials_secret_arn: ::String
|
2461
|
+
attr_accessor tenant_id: ::String
|
2463
2462
|
attr_accessor domain: ::String
|
2464
|
-
attr_accessor host_type: ("ONLINE")
|
2465
2463
|
attr_accessor site_urls: ::Array[::String]
|
2466
|
-
attr_accessor
|
2464
|
+
attr_accessor host_type: ("ONLINE")
|
2465
|
+
attr_accessor auth_type: ("OAUTH2_CLIENT_CREDENTIALS" | "OAUTH2_SHAREPOINT_APP_ONLY_CLIENT_CREDENTIALS")
|
2466
|
+
attr_accessor credentials_secret_arn: ::String
|
2467
2467
|
SENSITIVE: []
|
2468
2468
|
end
|
2469
2469
|
|
@@ -2473,16 +2473,16 @@ module Aws::BedrockAgent
|
|
2473
2473
|
end
|
2474
2474
|
|
2475
2475
|
class SqlKnowledgeBaseConfiguration
|
2476
|
-
attr_accessor redshift_configuration: Types::RedshiftConfiguration
|
2477
2476
|
attr_accessor type: ("REDSHIFT")
|
2477
|
+
attr_accessor redshift_configuration: Types::RedshiftConfiguration
|
2478
2478
|
SENSITIVE: []
|
2479
2479
|
end
|
2480
2480
|
|
2481
2481
|
class StartIngestionJobRequest
|
2482
|
-
attr_accessor
|
2482
|
+
attr_accessor knowledge_base_id: ::String
|
2483
2483
|
attr_accessor data_source_id: ::String
|
2484
|
+
attr_accessor client_token: ::String
|
2484
2485
|
attr_accessor description: ::String
|
2485
|
-
attr_accessor knowledge_base_id: ::String
|
2486
2486
|
SENSITIVE: []
|
2487
2487
|
end
|
2488
2488
|
|
@@ -2492,9 +2492,9 @@ module Aws::BedrockAgent
|
|
2492
2492
|
end
|
2493
2493
|
|
2494
2494
|
class StopIngestionJobRequest
|
2495
|
+
attr_accessor knowledge_base_id: ::String
|
2495
2496
|
attr_accessor data_source_id: ::String
|
2496
2497
|
attr_accessor ingestion_job_id: ::String
|
2497
|
-
attr_accessor knowledge_base_id: ::String
|
2498
2498
|
SENSITIVE: []
|
2499
2499
|
end
|
2500
2500
|
|
@@ -2504,15 +2504,15 @@ module Aws::BedrockAgent
|
|
2504
2504
|
end
|
2505
2505
|
|
2506
2506
|
class StorageConfiguration
|
2507
|
-
attr_accessor
|
2508
|
-
attr_accessor neptune_analytics_configuration: Types::NeptuneAnalyticsConfiguration
|
2509
|
-
attr_accessor opensearch_managed_cluster_configuration: Types::OpenSearchManagedClusterConfiguration
|
2507
|
+
attr_accessor type: ("OPENSEARCH_SERVERLESS" | "PINECONE" | "REDIS_ENTERPRISE_CLOUD" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS" | "OPENSEARCH_MANAGED_CLUSTER" | "S3_VECTORS")
|
2510
2508
|
attr_accessor opensearch_serverless_configuration: Types::OpenSearchServerlessConfiguration
|
2509
|
+
attr_accessor opensearch_managed_cluster_configuration: Types::OpenSearchManagedClusterConfiguration
|
2511
2510
|
attr_accessor pinecone_configuration: Types::PineconeConfiguration
|
2512
|
-
attr_accessor rds_configuration: Types::RdsConfiguration
|
2513
2511
|
attr_accessor redis_enterprise_cloud_configuration: Types::RedisEnterpriseCloudConfiguration
|
2512
|
+
attr_accessor rds_configuration: Types::RdsConfiguration
|
2513
|
+
attr_accessor mongo_db_atlas_configuration: Types::MongoDbAtlasConfiguration
|
2514
|
+
attr_accessor neptune_analytics_configuration: Types::NeptuneAnalyticsConfiguration
|
2514
2515
|
attr_accessor s3_vectors_configuration: Types::S3VectorsConfiguration
|
2515
|
-
attr_accessor type: ("OPENSEARCH_SERVERLESS" | "PINECONE" | "REDIS_ENTERPRISE_CLOUD" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS" | "OPENSEARCH_MANAGED_CLUSTER" | "S3_VECTORS")
|
2516
2516
|
SENSITIVE: []
|
2517
2517
|
end
|
2518
2518
|
|
@@ -2543,21 +2543,21 @@ module Aws::BedrockAgent
|
|
2543
2543
|
end
|
2544
2544
|
|
2545
2545
|
class SupplementalDataStorageLocation
|
2546
|
-
attr_accessor s3_location: Types::S3Location
|
2547
2546
|
attr_accessor type: ("S3")
|
2547
|
+
attr_accessor s3_location: Types::S3Location
|
2548
2548
|
SENSITIVE: []
|
2549
2549
|
end
|
2550
2550
|
|
2551
2551
|
class SystemContentBlock
|
2552
|
-
attr_accessor cache_point: Types::CachePointBlock
|
2553
2552
|
attr_accessor text: ::String
|
2553
|
+
attr_accessor cache_point: Types::CachePointBlock
|
2554
2554
|
attr_accessor unknown: untyped
|
2555
2555
|
SENSITIVE: []
|
2556
2556
|
|
2557
|
-
class CachePoint < SystemContentBlock
|
2558
|
-
end
|
2559
2557
|
class Text < SystemContentBlock
|
2560
2558
|
end
|
2559
|
+
class CachePoint < SystemContentBlock
|
2560
|
+
end
|
2561
2561
|
class Unknown < SystemContentBlock
|
2562
2562
|
end
|
2563
2563
|
end
|
@@ -2577,10 +2577,10 @@ module Aws::BedrockAgent
|
|
2577
2577
|
end
|
2578
2578
|
|
2579
2579
|
class TextPromptTemplateConfiguration
|
2580
|
+
attr_accessor text: ::String
|
2580
2581
|
attr_accessor cache_point: Types::CachePointBlock
|
2581
2582
|
attr_accessor input_variables: ::Array[Types::PromptInputVariable]
|
2582
|
-
|
2583
|
-
SENSITIVE: [:input_variables, :text]
|
2583
|
+
SENSITIVE: [:text, :input_variables]
|
2584
2584
|
end
|
2585
2585
|
|
2586
2586
|
class ThrottlingException
|
@@ -2589,30 +2589,30 @@ module Aws::BedrockAgent
|
|
2589
2589
|
end
|
2590
2590
|
|
2591
2591
|
class Tool
|
2592
|
-
attr_accessor cache_point: Types::CachePointBlock
|
2593
2592
|
attr_accessor tool_spec: Types::ToolSpecification
|
2593
|
+
attr_accessor cache_point: Types::CachePointBlock
|
2594
2594
|
attr_accessor unknown: untyped
|
2595
2595
|
SENSITIVE: []
|
2596
2596
|
|
2597
|
-
class CachePoint < Tool
|
2598
|
-
end
|
2599
2597
|
class ToolSpec < Tool
|
2600
2598
|
end
|
2599
|
+
class CachePoint < Tool
|
2600
|
+
end
|
2601
2601
|
class Unknown < Tool
|
2602
2602
|
end
|
2603
2603
|
end
|
2604
2604
|
|
2605
2605
|
class ToolChoice
|
2606
|
-
attr_accessor any: Types::AnyToolChoice
|
2607
2606
|
attr_accessor auto: Types::AutoToolChoice
|
2607
|
+
attr_accessor any: Types::AnyToolChoice
|
2608
2608
|
attr_accessor tool: Types::SpecificToolChoice
|
2609
2609
|
attr_accessor unknown: untyped
|
2610
2610
|
SENSITIVE: []
|
2611
2611
|
|
2612
|
-
class Any < ToolChoice
|
2613
|
-
end
|
2614
2612
|
class Auto < ToolChoice
|
2615
2613
|
end
|
2614
|
+
class Any < ToolChoice
|
2615
|
+
end
|
2616
2616
|
class Tool < ToolChoice
|
2617
2617
|
end
|
2618
2618
|
class Unknown < ToolChoice
|
@@ -2620,9 +2620,9 @@ module Aws::BedrockAgent
|
|
2620
2620
|
end
|
2621
2621
|
|
2622
2622
|
class ToolConfiguration
|
2623
|
-
attr_accessor tool_choice: Types::ToolChoice
|
2624
2623
|
attr_accessor tools: ::Array[Types::Tool]
|
2625
|
-
|
2624
|
+
attr_accessor tool_choice: Types::ToolChoice
|
2625
|
+
SENSITIVE: [:tools, :tool_choice]
|
2626
2626
|
end
|
2627
2627
|
|
2628
2628
|
class ToolInputSchema
|
@@ -2637,15 +2637,15 @@ module Aws::BedrockAgent
|
|
2637
2637
|
end
|
2638
2638
|
|
2639
2639
|
class ToolSpecification
|
2640
|
+
attr_accessor name: ::String
|
2640
2641
|
attr_accessor description: ::String
|
2641
2642
|
attr_accessor input_schema: Types::ToolInputSchema
|
2642
|
-
attr_accessor name: ::String
|
2643
2643
|
SENSITIVE: []
|
2644
2644
|
end
|
2645
2645
|
|
2646
2646
|
class Transformation
|
2647
|
-
attr_accessor step_to_apply: ("POST_CHUNKING")
|
2648
2647
|
attr_accessor transformation_function: Types::TransformationFunction
|
2648
|
+
attr_accessor step_to_apply: ("POST_CHUNKING")
|
2649
2649
|
SENSITIVE: []
|
2650
2650
|
end
|
2651
2651
|
|
@@ -2660,8 +2660,8 @@ module Aws::BedrockAgent
|
|
2660
2660
|
end
|
2661
2661
|
|
2662
2662
|
class UnfulfilledNodeInputFlowValidationDetails
|
2663
|
-
attr_accessor input: ::String
|
2664
2663
|
attr_accessor node: ::String
|
2664
|
+
attr_accessor input: ::String
|
2665
2665
|
SENSITIVE: []
|
2666
2666
|
end
|
2667
2667
|
|
@@ -2691,8 +2691,8 @@ module Aws::BedrockAgent
|
|
2691
2691
|
end
|
2692
2692
|
|
2693
2693
|
class UnknownNodeInputFlowValidationDetails
|
2694
|
-
attr_accessor input: ::String
|
2695
2694
|
attr_accessor node: ::String
|
2695
|
+
attr_accessor input: ::String
|
2696
2696
|
SENSITIVE: []
|
2697
2697
|
end
|
2698
2698
|
|
@@ -2725,17 +2725,17 @@ module Aws::BedrockAgent
|
|
2725
2725
|
end
|
2726
2726
|
|
2727
2727
|
class UpdateAgentActionGroupRequest
|
2728
|
-
attr_accessor action_group_executor: Types::ActionGroupExecutor
|
2729
|
-
attr_accessor action_group_id: ::String
|
2730
|
-
attr_accessor action_group_name: ::String
|
2731
|
-
attr_accessor action_group_state: ("ENABLED" | "DISABLED")
|
2732
2728
|
attr_accessor agent_id: ::String
|
2733
2729
|
attr_accessor agent_version: ::String
|
2734
|
-
attr_accessor
|
2730
|
+
attr_accessor action_group_id: ::String
|
2731
|
+
attr_accessor action_group_name: ::String
|
2735
2732
|
attr_accessor description: ::String
|
2736
|
-
attr_accessor function_schema: Types::FunctionSchema
|
2737
2733
|
attr_accessor parent_action_group_signature: ("AMAZON.UserInput" | "AMAZON.CodeInterpreter" | "ANTHROPIC.Computer" | "ANTHROPIC.Bash" | "ANTHROPIC.TextEditor")
|
2738
2734
|
attr_accessor parent_action_group_signature_params: ::Hash[::String, ::String]
|
2735
|
+
attr_accessor action_group_executor: Types::ActionGroupExecutor
|
2736
|
+
attr_accessor action_group_state: ("ENABLED" | "DISABLED")
|
2737
|
+
attr_accessor api_schema: Types::APISchema
|
2738
|
+
attr_accessor function_schema: Types::FunctionSchema
|
2739
2739
|
SENSITIVE: []
|
2740
2740
|
end
|
2741
2741
|
|
@@ -2745,12 +2745,12 @@ module Aws::BedrockAgent
|
|
2745
2745
|
end
|
2746
2746
|
|
2747
2747
|
class UpdateAgentAliasRequest
|
2748
|
+
attr_accessor agent_id: ::String
|
2748
2749
|
attr_accessor agent_alias_id: ::String
|
2749
2750
|
attr_accessor agent_alias_name: ::String
|
2750
|
-
attr_accessor agent_id: ::String
|
2751
|
-
attr_accessor alias_invocation_state: ("ACCEPT_INVOCATIONS" | "REJECT_INVOCATIONS")
|
2752
2751
|
attr_accessor description: ::String
|
2753
2752
|
attr_accessor routing_configuration: ::Array[Types::AgentAliasRoutingConfigurationListItem]
|
2753
|
+
attr_accessor alias_invocation_state: ("ACCEPT_INVOCATIONS" | "REJECT_INVOCATIONS")
|
2754
2754
|
SENSITIVE: []
|
2755
2755
|
end
|
2756
2756
|
|
@@ -2760,12 +2760,12 @@ module Aws::BedrockAgent
|
|
2760
2760
|
end
|
2761
2761
|
|
2762
2762
|
class UpdateAgentCollaboratorRequest
|
2763
|
-
attr_accessor agent_descriptor: Types::AgentDescriptor
|
2764
2763
|
attr_accessor agent_id: ::String
|
2765
2764
|
attr_accessor agent_version: ::String
|
2766
|
-
attr_accessor collaboration_instruction: ::String
|
2767
2765
|
attr_accessor collaborator_id: ::String
|
2766
|
+
attr_accessor agent_descriptor: Types::AgentDescriptor
|
2768
2767
|
attr_accessor collaborator_name: ::String
|
2768
|
+
attr_accessor collaboration_instruction: ::String
|
2769
2769
|
attr_accessor relay_conversation_history: ("TO_COLLABORATOR" | "DISABLED")
|
2770
2770
|
SENSITIVE: [:collaboration_instruction]
|
2771
2771
|
end
|
@@ -2778,8 +2778,8 @@ module Aws::BedrockAgent
|
|
2778
2778
|
class UpdateAgentKnowledgeBaseRequest
|
2779
2779
|
attr_accessor agent_id: ::String
|
2780
2780
|
attr_accessor agent_version: ::String
|
2781
|
-
attr_accessor description: ::String
|
2782
2781
|
attr_accessor knowledge_base_id: ::String
|
2782
|
+
attr_accessor description: ::String
|
2783
2783
|
attr_accessor knowledge_base_state: ("ENABLED" | "DISABLED")
|
2784
2784
|
SENSITIVE: []
|
2785
2785
|
end
|
@@ -2790,20 +2790,20 @@ module Aws::BedrockAgent
|
|
2790
2790
|
end
|
2791
2791
|
|
2792
2792
|
class UpdateAgentRequest
|
2793
|
-
attr_accessor agent_collaboration: ("SUPERVISOR" | "SUPERVISOR_ROUTER" | "DISABLED")
|
2794
2793
|
attr_accessor agent_id: ::String
|
2795
2794
|
attr_accessor agent_name: ::String
|
2796
|
-
attr_accessor
|
2795
|
+
attr_accessor instruction: ::String
|
2796
|
+
attr_accessor foundation_model: ::String
|
2797
|
+
attr_accessor description: ::String
|
2798
|
+
attr_accessor orchestration_type: ("DEFAULT" | "CUSTOM_ORCHESTRATION")
|
2797
2799
|
attr_accessor custom_orchestration: Types::CustomOrchestration
|
2800
|
+
attr_accessor idle_session_ttl_in_seconds: ::Integer
|
2801
|
+
attr_accessor agent_resource_role_arn: ::String
|
2798
2802
|
attr_accessor customer_encryption_key_arn: ::String
|
2799
|
-
attr_accessor
|
2800
|
-
attr_accessor foundation_model: ::String
|
2803
|
+
attr_accessor prompt_override_configuration: Types::PromptOverrideConfiguration
|
2801
2804
|
attr_accessor guardrail_configuration: Types::GuardrailConfiguration
|
2802
|
-
attr_accessor idle_session_ttl_in_seconds: ::Integer
|
2803
|
-
attr_accessor instruction: ::String
|
2804
2805
|
attr_accessor memory_configuration: Types::MemoryConfiguration
|
2805
|
-
attr_accessor
|
2806
|
-
attr_accessor prompt_override_configuration: Types::PromptOverrideConfiguration
|
2806
|
+
attr_accessor agent_collaboration: ("SUPERVISOR" | "SUPERVISOR_ROUTER" | "DISABLED")
|
2807
2807
|
SENSITIVE: [:instruction, :prompt_override_configuration]
|
2808
2808
|
end
|
2809
2809
|
|
@@ -2813,12 +2813,12 @@ module Aws::BedrockAgent
|
|
2813
2813
|
end
|
2814
2814
|
|
2815
2815
|
class UpdateDataSourceRequest
|
2816
|
-
attr_accessor data_deletion_policy: ("RETAIN" | "DELETE")
|
2817
|
-
attr_accessor data_source_configuration: Types::DataSourceConfiguration
|
2818
|
-
attr_accessor data_source_id: ::String
|
2819
|
-
attr_accessor description: ::String
|
2820
2816
|
attr_accessor knowledge_base_id: ::String
|
2817
|
+
attr_accessor data_source_id: ::String
|
2821
2818
|
attr_accessor name: ::String
|
2819
|
+
attr_accessor description: ::String
|
2820
|
+
attr_accessor data_source_configuration: Types::DataSourceConfiguration
|
2821
|
+
attr_accessor data_deletion_policy: ("RETAIN" | "DELETE")
|
2822
2822
|
attr_accessor server_side_encryption_configuration: Types::ServerSideEncryptionConfiguration
|
2823
2823
|
attr_accessor vector_ingestion_configuration: Types::VectorIngestionConfiguration
|
2824
2824
|
SENSITIVE: []
|
@@ -2830,59 +2830,59 @@ module Aws::BedrockAgent
|
|
2830
2830
|
end
|
2831
2831
|
|
2832
2832
|
class UpdateFlowAliasRequest
|
2833
|
-
attr_accessor alias_identifier: ::String
|
2834
|
-
attr_accessor concurrency_configuration: Types::FlowAliasConcurrencyConfiguration
|
2835
|
-
attr_accessor description: ::String
|
2836
|
-
attr_accessor flow_identifier: ::String
|
2837
2833
|
attr_accessor name: ::String
|
2834
|
+
attr_accessor description: ::String
|
2838
2835
|
attr_accessor routing_configuration: ::Array[Types::FlowAliasRoutingConfigurationListItem]
|
2836
|
+
attr_accessor concurrency_configuration: Types::FlowAliasConcurrencyConfiguration
|
2837
|
+
attr_accessor flow_identifier: ::String
|
2838
|
+
attr_accessor alias_identifier: ::String
|
2839
2839
|
SENSITIVE: []
|
2840
2840
|
end
|
2841
2841
|
|
2842
2842
|
class UpdateFlowAliasResponse
|
2843
|
-
attr_accessor
|
2844
|
-
attr_accessor concurrency_configuration: Types::FlowAliasConcurrencyConfiguration
|
2845
|
-
attr_accessor created_at: ::Time
|
2843
|
+
attr_accessor name: ::String
|
2846
2844
|
attr_accessor description: ::String
|
2845
|
+
attr_accessor routing_configuration: ::Array[Types::FlowAliasRoutingConfigurationListItem]
|
2846
|
+
attr_accessor concurrency_configuration: Types::FlowAliasConcurrencyConfiguration
|
2847
2847
|
attr_accessor flow_id: ::String
|
2848
2848
|
attr_accessor id: ::String
|
2849
|
-
attr_accessor
|
2850
|
-
attr_accessor
|
2849
|
+
attr_accessor arn: ::String
|
2850
|
+
attr_accessor created_at: ::Time
|
2851
2851
|
attr_accessor updated_at: ::Time
|
2852
2852
|
SENSITIVE: []
|
2853
2853
|
end
|
2854
2854
|
|
2855
2855
|
class UpdateFlowRequest
|
2856
|
-
attr_accessor
|
2857
|
-
attr_accessor definition: Types::FlowDefinition
|
2856
|
+
attr_accessor name: ::String
|
2858
2857
|
attr_accessor description: ::String
|
2859
2858
|
attr_accessor execution_role_arn: ::String
|
2859
|
+
attr_accessor customer_encryption_key_arn: ::String
|
2860
|
+
attr_accessor definition: Types::FlowDefinition
|
2860
2861
|
attr_accessor flow_identifier: ::String
|
2861
|
-
attr_accessor name: ::String
|
2862
2862
|
SENSITIVE: [:definition]
|
2863
2863
|
end
|
2864
2864
|
|
2865
2865
|
class UpdateFlowResponse
|
2866
|
-
attr_accessor
|
2867
|
-
attr_accessor created_at: ::Time
|
2868
|
-
attr_accessor customer_encryption_key_arn: ::String
|
2869
|
-
attr_accessor definition: Types::FlowDefinition
|
2866
|
+
attr_accessor name: ::String
|
2870
2867
|
attr_accessor description: ::String
|
2871
2868
|
attr_accessor execution_role_arn: ::String
|
2869
|
+
attr_accessor customer_encryption_key_arn: ::String
|
2872
2870
|
attr_accessor id: ::String
|
2873
|
-
attr_accessor
|
2871
|
+
attr_accessor arn: ::String
|
2874
2872
|
attr_accessor status: ("Failed" | "Prepared" | "Preparing" | "NotPrepared")
|
2873
|
+
attr_accessor created_at: ::Time
|
2875
2874
|
attr_accessor updated_at: ::Time
|
2876
2875
|
attr_accessor version: ::String
|
2876
|
+
attr_accessor definition: Types::FlowDefinition
|
2877
2877
|
SENSITIVE: [:definition]
|
2878
2878
|
end
|
2879
2879
|
|
2880
2880
|
class UpdateKnowledgeBaseRequest
|
2881
|
-
attr_accessor description: ::String
|
2882
|
-
attr_accessor knowledge_base_configuration: Types::KnowledgeBaseConfiguration
|
2883
2881
|
attr_accessor knowledge_base_id: ::String
|
2884
2882
|
attr_accessor name: ::String
|
2883
|
+
attr_accessor description: ::String
|
2885
2884
|
attr_accessor role_arn: ::String
|
2885
|
+
attr_accessor knowledge_base_configuration: Types::KnowledgeBaseConfiguration
|
2886
2886
|
attr_accessor storage_configuration: Types::StorageConfiguration
|
2887
2887
|
SENSITIVE: []
|
2888
2888
|
end
|
@@ -2893,26 +2893,26 @@ module Aws::BedrockAgent
|
|
2893
2893
|
end
|
2894
2894
|
|
2895
2895
|
class UpdatePromptRequest
|
2896
|
+
attr_accessor name: ::String
|
2897
|
+
attr_accessor description: ::String
|
2896
2898
|
attr_accessor customer_encryption_key_arn: ::String
|
2897
2899
|
attr_accessor default_variant: ::String
|
2898
|
-
attr_accessor description: ::String
|
2899
|
-
attr_accessor name: ::String
|
2900
|
-
attr_accessor prompt_identifier: ::String
|
2901
2900
|
attr_accessor variants: ::Array[Types::PromptVariant]
|
2901
|
+
attr_accessor prompt_identifier: ::String
|
2902
2902
|
SENSITIVE: [:variants]
|
2903
2903
|
end
|
2904
2904
|
|
2905
2905
|
class UpdatePromptResponse
|
2906
|
-
attr_accessor
|
2907
|
-
attr_accessor
|
2906
|
+
attr_accessor name: ::String
|
2907
|
+
attr_accessor description: ::String
|
2908
2908
|
attr_accessor customer_encryption_key_arn: ::String
|
2909
2909
|
attr_accessor default_variant: ::String
|
2910
|
-
attr_accessor description: ::String
|
2911
|
-
attr_accessor id: ::String
|
2912
|
-
attr_accessor name: ::String
|
2913
|
-
attr_accessor updated_at: ::Time
|
2914
2910
|
attr_accessor variants: ::Array[Types::PromptVariant]
|
2911
|
+
attr_accessor id: ::String
|
2912
|
+
attr_accessor arn: ::String
|
2915
2913
|
attr_accessor version: ::String
|
2914
|
+
attr_accessor created_at: ::Time
|
2915
|
+
attr_accessor updated_at: ::Time
|
2916
2916
|
SENSITIVE: [:variants]
|
2917
2917
|
end
|
2918
2918
|
|
@@ -2932,22 +2932,22 @@ module Aws::BedrockAgent
|
|
2932
2932
|
end
|
2933
2933
|
|
2934
2934
|
class ValidationException
|
2935
|
-
attr_accessor field_list: ::Array[Types::ValidationExceptionField]
|
2936
2935
|
attr_accessor message: ::String
|
2936
|
+
attr_accessor field_list: ::Array[Types::ValidationExceptionField]
|
2937
2937
|
SENSITIVE: []
|
2938
2938
|
end
|
2939
2939
|
|
2940
2940
|
class ValidationExceptionField
|
2941
|
-
attr_accessor message: ::String
|
2942
2941
|
attr_accessor name: ::String
|
2942
|
+
attr_accessor message: ::String
|
2943
2943
|
SENSITIVE: []
|
2944
2944
|
end
|
2945
2945
|
|
2946
2946
|
class VectorIngestionConfiguration
|
2947
2947
|
attr_accessor chunking_configuration: Types::ChunkingConfiguration
|
2948
|
-
attr_accessor context_enrichment_configuration: Types::ContextEnrichmentConfiguration
|
2949
2948
|
attr_accessor custom_transformation_configuration: Types::CustomTransformationConfiguration
|
2950
2949
|
attr_accessor parsing_configuration: Types::ParsingConfiguration
|
2950
|
+
attr_accessor context_enrichment_configuration: Types::ContextEnrichmentConfiguration
|
2951
2951
|
SENSITIVE: []
|
2952
2952
|
end
|
2953
2953
|
|
@@ -2959,43 +2959,43 @@ module Aws::BedrockAgent
|
|
2959
2959
|
end
|
2960
2960
|
|
2961
2961
|
class VectorSearchBedrockRerankingConfiguration
|
2962
|
-
attr_accessor metadata_configuration: Types::MetadataConfigurationForReranking
|
2963
2962
|
attr_accessor model_configuration: Types::VectorSearchBedrockRerankingModelConfiguration
|
2964
2963
|
attr_accessor number_of_reranked_results: ::Integer
|
2964
|
+
attr_accessor metadata_configuration: Types::MetadataConfigurationForReranking
|
2965
2965
|
SENSITIVE: []
|
2966
2966
|
end
|
2967
2967
|
|
2968
2968
|
class VectorSearchBedrockRerankingModelConfiguration
|
2969
|
-
attr_accessor additional_model_request_fields: ::Hash[::String, untyped]
|
2970
2969
|
attr_accessor model_arn: ::String
|
2970
|
+
attr_accessor additional_model_request_fields: ::Hash[::String, untyped]
|
2971
2971
|
SENSITIVE: []
|
2972
2972
|
end
|
2973
2973
|
|
2974
2974
|
class VectorSearchRerankingConfiguration
|
2975
|
-
attr_accessor bedrock_reranking_configuration: Types::VectorSearchBedrockRerankingConfiguration
|
2976
2975
|
attr_accessor type: ("BEDROCK_RERANKING_MODEL")
|
2976
|
+
attr_accessor bedrock_reranking_configuration: Types::VectorSearchBedrockRerankingConfiguration
|
2977
2977
|
SENSITIVE: []
|
2978
2978
|
end
|
2979
2979
|
|
2980
2980
|
class WebCrawlerConfiguration
|
2981
2981
|
attr_accessor crawler_limits: Types::WebCrawlerLimits
|
2982
|
-
attr_accessor exclusion_filters: ::Array[::String]
|
2983
2982
|
attr_accessor inclusion_filters: ::Array[::String]
|
2983
|
+
attr_accessor exclusion_filters: ::Array[::String]
|
2984
2984
|
attr_accessor scope: ("HOST_ONLY" | "SUBDOMAINS")
|
2985
2985
|
attr_accessor user_agent: ::String
|
2986
2986
|
attr_accessor user_agent_header: ::String
|
2987
|
-
SENSITIVE: [:
|
2987
|
+
SENSITIVE: [:inclusion_filters, :exclusion_filters, :user_agent, :user_agent_header]
|
2988
2988
|
end
|
2989
2989
|
|
2990
2990
|
class WebCrawlerLimits
|
2991
|
-
attr_accessor max_pages: ::Integer
|
2992
2991
|
attr_accessor rate_limit: ::Integer
|
2992
|
+
attr_accessor max_pages: ::Integer
|
2993
2993
|
SENSITIVE: []
|
2994
2994
|
end
|
2995
2995
|
|
2996
2996
|
class WebDataSourceConfiguration
|
2997
|
-
attr_accessor crawler_configuration: Types::WebCrawlerConfiguration
|
2998
2997
|
attr_accessor source_configuration: Types::WebSourceConfiguration
|
2998
|
+
attr_accessor crawler_configuration: Types::WebCrawlerConfiguration
|
2999
2999
|
SENSITIVE: []
|
3000
3000
|
end
|
3001
3001
|
|