aws-sdk-bedrockagent 1.17.0 → 1.18.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagent/client.rb +2409 -94
- data/lib/aws-sdk-bedrockagent/client_api.rb +1193 -0
- data/lib/aws-sdk-bedrockagent/endpoints.rb +294 -0
- data/lib/aws-sdk-bedrockagent/plugins/endpoints.rb +42 -0
- data/lib/aws-sdk-bedrockagent/types.rb +3973 -394
- data/lib/aws-sdk-bedrockagent.rb +1 -1
- data/sig/client.rbs +923 -6
- data/sig/types.rbs +906 -5
- metadata +2 -2
data/sig/types.rbs
CHANGED
@@ -66,6 +66,7 @@ module Aws::BedrockAgent
|
|
66
66
|
attr_accessor guardrail_configuration: Types::GuardrailConfiguration
|
67
67
|
attr_accessor idle_session_ttl_in_seconds: ::Integer
|
68
68
|
attr_accessor instruction: ::String
|
69
|
+
attr_accessor memory_configuration: Types::MemoryConfiguration
|
69
70
|
attr_accessor prepared_at: ::Time
|
70
71
|
attr_accessor prompt_override_configuration: Types::PromptOverrideConfiguration
|
71
72
|
attr_accessor recommended_actions: ::Array[::String]
|
@@ -85,7 +86,7 @@ module Aws::BedrockAgent
|
|
85
86
|
attr_accessor created_at: ::Time
|
86
87
|
attr_accessor description: ::String
|
87
88
|
attr_accessor function_schema: Types::FunctionSchema
|
88
|
-
attr_accessor parent_action_signature: ("AMAZON.UserInput")
|
89
|
+
attr_accessor parent_action_signature: ("AMAZON.UserInput" | "AMAZON.CodeInterpreter")
|
89
90
|
attr_accessor updated_at: ::Time
|
90
91
|
SENSITIVE: []
|
91
92
|
end
|
@@ -130,6 +131,11 @@ module Aws::BedrockAgent
|
|
130
131
|
SENSITIVE: []
|
131
132
|
end
|
132
133
|
|
134
|
+
class AgentFlowNodeConfiguration
|
135
|
+
attr_accessor agent_alias_arn: ::String
|
136
|
+
SENSITIVE: []
|
137
|
+
end
|
138
|
+
|
133
139
|
class AgentKnowledgeBase
|
134
140
|
attr_accessor agent_id: ::String
|
135
141
|
attr_accessor agent_version: ::String
|
@@ -174,6 +180,7 @@ module Aws::BedrockAgent
|
|
174
180
|
attr_accessor guardrail_configuration: Types::GuardrailConfiguration
|
175
181
|
attr_accessor idle_session_ttl_in_seconds: ::Integer
|
176
182
|
attr_accessor instruction: ::String
|
183
|
+
attr_accessor memory_configuration: Types::MemoryConfiguration
|
177
184
|
attr_accessor prompt_override_configuration: Types::PromptOverrideConfiguration
|
178
185
|
attr_accessor recommended_actions: ::Array[::String]
|
179
186
|
attr_accessor updated_at: ::Time
|
@@ -211,17 +218,58 @@ module Aws::BedrockAgent
|
|
211
218
|
SENSITIVE: []
|
212
219
|
end
|
213
220
|
|
221
|
+
class BedrockFoundationModelConfiguration
|
222
|
+
attr_accessor model_arn: ::String
|
223
|
+
attr_accessor parsing_prompt: Types::ParsingPrompt
|
224
|
+
SENSITIVE: []
|
225
|
+
end
|
226
|
+
|
214
227
|
class ChunkingConfiguration
|
215
|
-
attr_accessor chunking_strategy: ("FIXED_SIZE" | "NONE")
|
228
|
+
attr_accessor chunking_strategy: ("FIXED_SIZE" | "NONE" | "HIERARCHICAL" | "SEMANTIC")
|
216
229
|
attr_accessor fixed_size_chunking_configuration: Types::FixedSizeChunkingConfiguration
|
230
|
+
attr_accessor hierarchical_chunking_configuration: Types::HierarchicalChunkingConfiguration
|
231
|
+
attr_accessor semantic_chunking_configuration: Types::SemanticChunkingConfiguration
|
217
232
|
SENSITIVE: []
|
218
233
|
end
|
219
234
|
|
235
|
+
class CollectorFlowNodeConfiguration < Aws::EmptyStructure
|
236
|
+
end
|
237
|
+
|
238
|
+
class ConditionFlowNodeConfiguration
|
239
|
+
attr_accessor conditions: ::Array[Types::FlowCondition]
|
240
|
+
SENSITIVE: [:conditions]
|
241
|
+
end
|
242
|
+
|
220
243
|
class ConflictException
|
221
244
|
attr_accessor message: ::String
|
222
245
|
SENSITIVE: []
|
223
246
|
end
|
224
247
|
|
248
|
+
class ConfluenceCrawlerConfiguration
|
249
|
+
attr_accessor filter_configuration: Types::CrawlFilterConfiguration
|
250
|
+
SENSITIVE: []
|
251
|
+
end
|
252
|
+
|
253
|
+
class ConfluenceDataSourceConfiguration
|
254
|
+
attr_accessor crawler_configuration: Types::ConfluenceCrawlerConfiguration
|
255
|
+
attr_accessor source_configuration: Types::ConfluenceSourceConfiguration
|
256
|
+
SENSITIVE: []
|
257
|
+
end
|
258
|
+
|
259
|
+
class ConfluenceSourceConfiguration
|
260
|
+
attr_accessor auth_type: ("BASIC" | "OAUTH2_CLIENT_CREDENTIALS")
|
261
|
+
attr_accessor credentials_secret_arn: ::String
|
262
|
+
attr_accessor host_type: ("SAAS")
|
263
|
+
attr_accessor host_url: ::String
|
264
|
+
SENSITIVE: []
|
265
|
+
end
|
266
|
+
|
267
|
+
class CrawlFilterConfiguration
|
268
|
+
attr_accessor pattern_object_filter: Types::PatternObjectFilterConfiguration
|
269
|
+
attr_accessor type: ("PATTERN")
|
270
|
+
SENSITIVE: []
|
271
|
+
end
|
272
|
+
|
225
273
|
class CreateAgentActionGroupRequest
|
226
274
|
attr_accessor action_group_executor: Types::ActionGroupExecutor
|
227
275
|
attr_accessor action_group_name: ::String
|
@@ -232,7 +280,7 @@ module Aws::BedrockAgent
|
|
232
280
|
attr_accessor client_token: ::String
|
233
281
|
attr_accessor description: ::String
|
234
282
|
attr_accessor function_schema: Types::FunctionSchema
|
235
|
-
attr_accessor parent_action_group_signature: ("AMAZON.UserInput")
|
283
|
+
attr_accessor parent_action_group_signature: ("AMAZON.UserInput" | "AMAZON.CodeInterpreter")
|
236
284
|
SENSITIVE: []
|
237
285
|
end
|
238
286
|
|
@@ -266,6 +314,7 @@ module Aws::BedrockAgent
|
|
266
314
|
attr_accessor guardrail_configuration: Types::GuardrailConfiguration
|
267
315
|
attr_accessor idle_session_ttl_in_seconds: ::Integer
|
268
316
|
attr_accessor instruction: ::String
|
317
|
+
attr_accessor memory_configuration: Types::MemoryConfiguration
|
269
318
|
attr_accessor prompt_override_configuration: Types::PromptOverrideConfiguration
|
270
319
|
attr_accessor tags: ::Hash[::String, ::String]
|
271
320
|
SENSITIVE: [:instruction, :prompt_override_configuration]
|
@@ -293,6 +342,75 @@ module Aws::BedrockAgent
|
|
293
342
|
SENSITIVE: []
|
294
343
|
end
|
295
344
|
|
345
|
+
class CreateFlowAliasRequest
|
346
|
+
attr_accessor client_token: ::String
|
347
|
+
attr_accessor description: ::String
|
348
|
+
attr_accessor flow_identifier: ::String
|
349
|
+
attr_accessor name: ::String
|
350
|
+
attr_accessor routing_configuration: ::Array[Types::FlowAliasRoutingConfigurationListItem]
|
351
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
352
|
+
SENSITIVE: []
|
353
|
+
end
|
354
|
+
|
355
|
+
class CreateFlowAliasResponse
|
356
|
+
attr_accessor arn: ::String
|
357
|
+
attr_accessor created_at: ::Time
|
358
|
+
attr_accessor description: ::String
|
359
|
+
attr_accessor flow_id: ::String
|
360
|
+
attr_accessor id: ::String
|
361
|
+
attr_accessor name: ::String
|
362
|
+
attr_accessor routing_configuration: ::Array[Types::FlowAliasRoutingConfigurationListItem]
|
363
|
+
attr_accessor updated_at: ::Time
|
364
|
+
SENSITIVE: []
|
365
|
+
end
|
366
|
+
|
367
|
+
class CreateFlowRequest
|
368
|
+
attr_accessor client_token: ::String
|
369
|
+
attr_accessor customer_encryption_key_arn: ::String
|
370
|
+
attr_accessor definition: Types::FlowDefinition
|
371
|
+
attr_accessor description: ::String
|
372
|
+
attr_accessor execution_role_arn: ::String
|
373
|
+
attr_accessor name: ::String
|
374
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
375
|
+
SENSITIVE: []
|
376
|
+
end
|
377
|
+
|
378
|
+
class CreateFlowResponse
|
379
|
+
attr_accessor arn: ::String
|
380
|
+
attr_accessor created_at: ::Time
|
381
|
+
attr_accessor customer_encryption_key_arn: ::String
|
382
|
+
attr_accessor definition: Types::FlowDefinition
|
383
|
+
attr_accessor description: ::String
|
384
|
+
attr_accessor execution_role_arn: ::String
|
385
|
+
attr_accessor id: ::String
|
386
|
+
attr_accessor name: ::String
|
387
|
+
attr_accessor status: ("Failed" | "Prepared" | "Preparing" | "NotPrepared")
|
388
|
+
attr_accessor updated_at: ::Time
|
389
|
+
attr_accessor version: ::String
|
390
|
+
SENSITIVE: []
|
391
|
+
end
|
392
|
+
|
393
|
+
class CreateFlowVersionRequest
|
394
|
+
attr_accessor client_token: ::String
|
395
|
+
attr_accessor description: ::String
|
396
|
+
attr_accessor flow_identifier: ::String
|
397
|
+
SENSITIVE: []
|
398
|
+
end
|
399
|
+
|
400
|
+
class CreateFlowVersionResponse
|
401
|
+
attr_accessor arn: ::String
|
402
|
+
attr_accessor created_at: ::Time
|
403
|
+
attr_accessor customer_encryption_key_arn: ::String
|
404
|
+
attr_accessor definition: Types::FlowDefinition
|
405
|
+
attr_accessor description: ::String
|
406
|
+
attr_accessor execution_role_arn: ::String
|
407
|
+
attr_accessor id: ::String
|
408
|
+
attr_accessor name: ::String
|
409
|
+
attr_accessor status: ("Failed" | "Prepared" | "Preparing" | "NotPrepared")
|
410
|
+
attr_accessor version: ::String
|
411
|
+
SENSITIVE: []
|
412
|
+
end
|
413
|
+
|
296
414
|
class CreateKnowledgeBaseRequest
|
297
415
|
attr_accessor client_token: ::String
|
298
416
|
attr_accessor description: ::String
|
@@ -309,6 +427,59 @@ module Aws::BedrockAgent
|
|
309
427
|
SENSITIVE: []
|
310
428
|
end
|
311
429
|
|
430
|
+
class CreatePromptRequest
|
431
|
+
attr_accessor client_token: ::String
|
432
|
+
attr_accessor customer_encryption_key_arn: ::String
|
433
|
+
attr_accessor default_variant: ::String
|
434
|
+
attr_accessor description: ::String
|
435
|
+
attr_accessor name: ::String
|
436
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
437
|
+
attr_accessor variants: ::Array[Types::PromptVariant]
|
438
|
+
SENSITIVE: [:variants]
|
439
|
+
end
|
440
|
+
|
441
|
+
class CreatePromptResponse
|
442
|
+
attr_accessor arn: ::String
|
443
|
+
attr_accessor created_at: ::Time
|
444
|
+
attr_accessor customer_encryption_key_arn: ::String
|
445
|
+
attr_accessor default_variant: ::String
|
446
|
+
attr_accessor description: ::String
|
447
|
+
attr_accessor id: ::String
|
448
|
+
attr_accessor name: ::String
|
449
|
+
attr_accessor updated_at: ::Time
|
450
|
+
attr_accessor variants: ::Array[Types::PromptVariant]
|
451
|
+
attr_accessor version: ::String
|
452
|
+
SENSITIVE: [:variants]
|
453
|
+
end
|
454
|
+
|
455
|
+
class CreatePromptVersionRequest
|
456
|
+
attr_accessor client_token: ::String
|
457
|
+
attr_accessor description: ::String
|
458
|
+
attr_accessor prompt_identifier: ::String
|
459
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
460
|
+
SENSITIVE: []
|
461
|
+
end
|
462
|
+
|
463
|
+
class CreatePromptVersionResponse
|
464
|
+
attr_accessor arn: ::String
|
465
|
+
attr_accessor created_at: ::Time
|
466
|
+
attr_accessor customer_encryption_key_arn: ::String
|
467
|
+
attr_accessor default_variant: ::String
|
468
|
+
attr_accessor description: ::String
|
469
|
+
attr_accessor id: ::String
|
470
|
+
attr_accessor name: ::String
|
471
|
+
attr_accessor updated_at: ::Time
|
472
|
+
attr_accessor variants: ::Array[Types::PromptVariant]
|
473
|
+
attr_accessor version: ::String
|
474
|
+
SENSITIVE: [:variants]
|
475
|
+
end
|
476
|
+
|
477
|
+
class CustomTransformationConfiguration
|
478
|
+
attr_accessor intermediate_storage: Types::IntermediateStorage
|
479
|
+
attr_accessor transformations: ::Array[Types::Transformation]
|
480
|
+
SENSITIVE: []
|
481
|
+
end
|
482
|
+
|
312
483
|
class DataSource
|
313
484
|
attr_accessor created_at: ::Time
|
314
485
|
attr_accessor data_deletion_policy: ("RETAIN" | "DELETE")
|
@@ -326,8 +497,12 @@ module Aws::BedrockAgent
|
|
326
497
|
end
|
327
498
|
|
328
499
|
class DataSourceConfiguration
|
500
|
+
attr_accessor confluence_configuration: Types::ConfluenceDataSourceConfiguration
|
329
501
|
attr_accessor s3_configuration: Types::S3DataSourceConfiguration
|
330
|
-
attr_accessor
|
502
|
+
attr_accessor salesforce_configuration: Types::SalesforceDataSourceConfiguration
|
503
|
+
attr_accessor share_point_configuration: Types::SharePointDataSourceConfiguration
|
504
|
+
attr_accessor type: ("S3" | "WEB" | "CONFLUENCE" | "SALESFORCE" | "SHAREPOINT")
|
505
|
+
attr_accessor web_configuration: Types::WebDataSourceConfiguration
|
331
506
|
SENSITIVE: []
|
332
507
|
end
|
333
508
|
|
@@ -404,6 +579,42 @@ module Aws::BedrockAgent
|
|
404
579
|
SENSITIVE: []
|
405
580
|
end
|
406
581
|
|
582
|
+
class DeleteFlowAliasRequest
|
583
|
+
attr_accessor alias_identifier: ::String
|
584
|
+
attr_accessor flow_identifier: ::String
|
585
|
+
SENSITIVE: []
|
586
|
+
end
|
587
|
+
|
588
|
+
class DeleteFlowAliasResponse
|
589
|
+
attr_accessor flow_id: ::String
|
590
|
+
attr_accessor id: ::String
|
591
|
+
SENSITIVE: []
|
592
|
+
end
|
593
|
+
|
594
|
+
class DeleteFlowRequest
|
595
|
+
attr_accessor flow_identifier: ::String
|
596
|
+
attr_accessor skip_resource_in_use_check: bool
|
597
|
+
SENSITIVE: []
|
598
|
+
end
|
599
|
+
|
600
|
+
class DeleteFlowResponse
|
601
|
+
attr_accessor id: ::String
|
602
|
+
SENSITIVE: []
|
603
|
+
end
|
604
|
+
|
605
|
+
class DeleteFlowVersionRequest
|
606
|
+
attr_accessor flow_identifier: ::String
|
607
|
+
attr_accessor flow_version: ::String
|
608
|
+
attr_accessor skip_resource_in_use_check: bool
|
609
|
+
SENSITIVE: []
|
610
|
+
end
|
611
|
+
|
612
|
+
class DeleteFlowVersionResponse
|
613
|
+
attr_accessor id: ::String
|
614
|
+
attr_accessor version: ::String
|
615
|
+
SENSITIVE: []
|
616
|
+
end
|
617
|
+
|
407
618
|
class DeleteKnowledgeBaseRequest
|
408
619
|
attr_accessor knowledge_base_id: ::String
|
409
620
|
SENSITIVE: []
|
@@ -415,6 +626,18 @@ module Aws::BedrockAgent
|
|
415
626
|
SENSITIVE: []
|
416
627
|
end
|
417
628
|
|
629
|
+
class DeletePromptRequest
|
630
|
+
attr_accessor prompt_identifier: ::String
|
631
|
+
attr_accessor prompt_version: ::String
|
632
|
+
SENSITIVE: []
|
633
|
+
end
|
634
|
+
|
635
|
+
class DeletePromptResponse
|
636
|
+
attr_accessor id: ::String
|
637
|
+
attr_accessor version: ::String
|
638
|
+
SENSITIVE: []
|
639
|
+
end
|
640
|
+
|
418
641
|
class DisassociateAgentKnowledgeBaseRequest
|
419
642
|
attr_accessor agent_id: ::String
|
420
643
|
attr_accessor agent_version: ::String
|
@@ -436,6 +659,162 @@ module Aws::BedrockAgent
|
|
436
659
|
SENSITIVE: []
|
437
660
|
end
|
438
661
|
|
662
|
+
class FlowAliasRoutingConfigurationListItem
|
663
|
+
attr_accessor flow_version: ::String
|
664
|
+
SENSITIVE: []
|
665
|
+
end
|
666
|
+
|
667
|
+
class FlowAliasSummary
|
668
|
+
attr_accessor arn: ::String
|
669
|
+
attr_accessor created_at: ::Time
|
670
|
+
attr_accessor description: ::String
|
671
|
+
attr_accessor flow_id: ::String
|
672
|
+
attr_accessor id: ::String
|
673
|
+
attr_accessor name: ::String
|
674
|
+
attr_accessor routing_configuration: ::Array[Types::FlowAliasRoutingConfigurationListItem]
|
675
|
+
attr_accessor updated_at: ::Time
|
676
|
+
SENSITIVE: []
|
677
|
+
end
|
678
|
+
|
679
|
+
class FlowCondition
|
680
|
+
attr_accessor expression: ::String
|
681
|
+
attr_accessor name: ::String
|
682
|
+
SENSITIVE: [:expression]
|
683
|
+
end
|
684
|
+
|
685
|
+
class FlowConditionalConnectionConfiguration
|
686
|
+
attr_accessor condition: ::String
|
687
|
+
SENSITIVE: []
|
688
|
+
end
|
689
|
+
|
690
|
+
class FlowConnection
|
691
|
+
attr_accessor configuration: Types::FlowConnectionConfiguration
|
692
|
+
attr_accessor name: ::String
|
693
|
+
attr_accessor source: ::String
|
694
|
+
attr_accessor target: ::String
|
695
|
+
attr_accessor type: ("Data" | "Conditional")
|
696
|
+
SENSITIVE: []
|
697
|
+
end
|
698
|
+
|
699
|
+
class FlowConnectionConfiguration
|
700
|
+
attr_accessor conditional: Types::FlowConditionalConnectionConfiguration
|
701
|
+
attr_accessor data: Types::FlowDataConnectionConfiguration
|
702
|
+
attr_accessor unknown: untyped
|
703
|
+
SENSITIVE: []
|
704
|
+
|
705
|
+
class Conditional < FlowConnectionConfiguration
|
706
|
+
end
|
707
|
+
class Data < FlowConnectionConfiguration
|
708
|
+
end
|
709
|
+
class Unknown < FlowConnectionConfiguration
|
710
|
+
end
|
711
|
+
end
|
712
|
+
|
713
|
+
class FlowDataConnectionConfiguration
|
714
|
+
attr_accessor source_output: ::String
|
715
|
+
attr_accessor target_input: ::String
|
716
|
+
SENSITIVE: []
|
717
|
+
end
|
718
|
+
|
719
|
+
class FlowDefinition
|
720
|
+
attr_accessor connections: ::Array[Types::FlowConnection]
|
721
|
+
attr_accessor nodes: ::Array[Types::FlowNode]
|
722
|
+
SENSITIVE: [:nodes]
|
723
|
+
end
|
724
|
+
|
725
|
+
class FlowNode
|
726
|
+
attr_accessor configuration: Types::FlowNodeConfiguration
|
727
|
+
attr_accessor inputs: ::Array[Types::FlowNodeInput]
|
728
|
+
attr_accessor name: ::String
|
729
|
+
attr_accessor outputs: ::Array[Types::FlowNodeOutput]
|
730
|
+
attr_accessor type: ("Input" | "Output" | "KnowledgeBase" | "Condition" | "Lex" | "Prompt" | "LambdaFunction" | "Storage" | "Agent" | "Retrieval" | "Iterator" | "Collector")
|
731
|
+
SENSITIVE: []
|
732
|
+
end
|
733
|
+
|
734
|
+
class FlowNodeConfiguration
|
735
|
+
attr_accessor agent: Types::AgentFlowNodeConfiguration
|
736
|
+
attr_accessor collector: Types::CollectorFlowNodeConfiguration
|
737
|
+
attr_accessor condition: Types::ConditionFlowNodeConfiguration
|
738
|
+
attr_accessor input: Types::InputFlowNodeConfiguration
|
739
|
+
attr_accessor iterator: Types::IteratorFlowNodeConfiguration
|
740
|
+
attr_accessor knowledge_base: Types::KnowledgeBaseFlowNodeConfiguration
|
741
|
+
attr_accessor lambda_function: Types::LambdaFunctionFlowNodeConfiguration
|
742
|
+
attr_accessor lex: Types::LexFlowNodeConfiguration
|
743
|
+
attr_accessor output: Types::OutputFlowNodeConfiguration
|
744
|
+
attr_accessor prompt: Types::PromptFlowNodeConfiguration
|
745
|
+
attr_accessor retrieval: Types::RetrievalFlowNodeConfiguration
|
746
|
+
attr_accessor storage: Types::StorageFlowNodeConfiguration
|
747
|
+
attr_accessor unknown: untyped
|
748
|
+
SENSITIVE: []
|
749
|
+
|
750
|
+
class Agent < FlowNodeConfiguration
|
751
|
+
end
|
752
|
+
class Collector < FlowNodeConfiguration
|
753
|
+
end
|
754
|
+
class Condition < FlowNodeConfiguration
|
755
|
+
end
|
756
|
+
class Input < FlowNodeConfiguration
|
757
|
+
end
|
758
|
+
class Iterator < FlowNodeConfiguration
|
759
|
+
end
|
760
|
+
class KnowledgeBase < FlowNodeConfiguration
|
761
|
+
end
|
762
|
+
class LambdaFunction < FlowNodeConfiguration
|
763
|
+
end
|
764
|
+
class Lex < FlowNodeConfiguration
|
765
|
+
end
|
766
|
+
class Output < FlowNodeConfiguration
|
767
|
+
end
|
768
|
+
class Prompt < FlowNodeConfiguration
|
769
|
+
end
|
770
|
+
class Retrieval < FlowNodeConfiguration
|
771
|
+
end
|
772
|
+
class Storage < FlowNodeConfiguration
|
773
|
+
end
|
774
|
+
class Unknown < FlowNodeConfiguration
|
775
|
+
end
|
776
|
+
end
|
777
|
+
|
778
|
+
class FlowNodeInput
|
779
|
+
attr_accessor expression: ::String
|
780
|
+
attr_accessor name: ::String
|
781
|
+
attr_accessor type: ("String" | "Number" | "Boolean" | "Object" | "Array")
|
782
|
+
SENSITIVE: [:expression]
|
783
|
+
end
|
784
|
+
|
785
|
+
class FlowNodeOutput
|
786
|
+
attr_accessor name: ::String
|
787
|
+
attr_accessor type: ("String" | "Number" | "Boolean" | "Object" | "Array")
|
788
|
+
SENSITIVE: []
|
789
|
+
end
|
790
|
+
|
791
|
+
class FlowSummary
|
792
|
+
attr_accessor arn: ::String
|
793
|
+
attr_accessor created_at: ::Time
|
794
|
+
attr_accessor description: ::String
|
795
|
+
attr_accessor id: ::String
|
796
|
+
attr_accessor name: ::String
|
797
|
+
attr_accessor status: ("Failed" | "Prepared" | "Preparing" | "NotPrepared")
|
798
|
+
attr_accessor updated_at: ::Time
|
799
|
+
attr_accessor version: ::String
|
800
|
+
SENSITIVE: []
|
801
|
+
end
|
802
|
+
|
803
|
+
class FlowValidation
|
804
|
+
attr_accessor message: ::String
|
805
|
+
attr_accessor severity: ("Warning" | "Error")
|
806
|
+
SENSITIVE: []
|
807
|
+
end
|
808
|
+
|
809
|
+
class FlowVersionSummary
|
810
|
+
attr_accessor arn: ::String
|
811
|
+
attr_accessor created_at: ::Time
|
812
|
+
attr_accessor id: ::String
|
813
|
+
attr_accessor status: ("Failed" | "Prepared" | "Preparing" | "NotPrepared")
|
814
|
+
attr_accessor version: ::String
|
815
|
+
SENSITIVE: []
|
816
|
+
end
|
817
|
+
|
439
818
|
class Function
|
440
819
|
attr_accessor description: ::String
|
441
820
|
attr_accessor name: ::String
|
@@ -521,6 +900,65 @@ module Aws::BedrockAgent
|
|
521
900
|
SENSITIVE: []
|
522
901
|
end
|
523
902
|
|
903
|
+
class GetFlowAliasRequest
|
904
|
+
attr_accessor alias_identifier: ::String
|
905
|
+
attr_accessor flow_identifier: ::String
|
906
|
+
SENSITIVE: []
|
907
|
+
end
|
908
|
+
|
909
|
+
class GetFlowAliasResponse
|
910
|
+
attr_accessor arn: ::String
|
911
|
+
attr_accessor created_at: ::Time
|
912
|
+
attr_accessor description: ::String
|
913
|
+
attr_accessor flow_id: ::String
|
914
|
+
attr_accessor id: ::String
|
915
|
+
attr_accessor name: ::String
|
916
|
+
attr_accessor routing_configuration: ::Array[Types::FlowAliasRoutingConfigurationListItem]
|
917
|
+
attr_accessor updated_at: ::Time
|
918
|
+
SENSITIVE: []
|
919
|
+
end
|
920
|
+
|
921
|
+
class GetFlowRequest
|
922
|
+
attr_accessor flow_identifier: ::String
|
923
|
+
SENSITIVE: []
|
924
|
+
end
|
925
|
+
|
926
|
+
class GetFlowResponse
|
927
|
+
attr_accessor arn: ::String
|
928
|
+
attr_accessor created_at: ::Time
|
929
|
+
attr_accessor customer_encryption_key_arn: ::String
|
930
|
+
attr_accessor definition: Types::FlowDefinition
|
931
|
+
attr_accessor description: ::String
|
932
|
+
attr_accessor execution_role_arn: ::String
|
933
|
+
attr_accessor id: ::String
|
934
|
+
attr_accessor name: ::String
|
935
|
+
attr_accessor status: ("Failed" | "Prepared" | "Preparing" | "NotPrepared")
|
936
|
+
attr_accessor updated_at: ::Time
|
937
|
+
attr_accessor validations: ::Array[Types::FlowValidation]
|
938
|
+
attr_accessor version: ::String
|
939
|
+
SENSITIVE: []
|
940
|
+
end
|
941
|
+
|
942
|
+
class GetFlowVersionRequest
|
943
|
+
attr_accessor flow_identifier: ::String
|
944
|
+
attr_accessor flow_version: ::String
|
945
|
+
SENSITIVE: []
|
946
|
+
end
|
947
|
+
|
948
|
+
class GetFlowVersionResponse
|
949
|
+
attr_accessor arn: ::String
|
950
|
+
attr_accessor created_at: ::Time
|
951
|
+
attr_accessor customer_encryption_key_arn: ::String
|
952
|
+
attr_accessor definition: Types::FlowDefinition
|
953
|
+
attr_accessor description: ::String
|
954
|
+
attr_accessor execution_role_arn: ::String
|
955
|
+
attr_accessor id: ::String
|
956
|
+
attr_accessor name: ::String
|
957
|
+
attr_accessor status: ("Failed" | "Prepared" | "Preparing" | "NotPrepared")
|
958
|
+
attr_accessor version: ::String
|
959
|
+
SENSITIVE: []
|
960
|
+
end
|
961
|
+
|
524
962
|
class GetIngestionJobRequest
|
525
963
|
attr_accessor data_source_id: ::String
|
526
964
|
attr_accessor ingestion_job_id: ::String
|
@@ -543,12 +981,43 @@ module Aws::BedrockAgent
|
|
543
981
|
SENSITIVE: []
|
544
982
|
end
|
545
983
|
|
984
|
+
class GetPromptRequest
|
985
|
+
attr_accessor prompt_identifier: ::String
|
986
|
+
attr_accessor prompt_version: ::String
|
987
|
+
SENSITIVE: []
|
988
|
+
end
|
989
|
+
|
990
|
+
class GetPromptResponse
|
991
|
+
attr_accessor arn: ::String
|
992
|
+
attr_accessor created_at: ::Time
|
993
|
+
attr_accessor customer_encryption_key_arn: ::String
|
994
|
+
attr_accessor default_variant: ::String
|
995
|
+
attr_accessor description: ::String
|
996
|
+
attr_accessor id: ::String
|
997
|
+
attr_accessor name: ::String
|
998
|
+
attr_accessor updated_at: ::Time
|
999
|
+
attr_accessor variants: ::Array[Types::PromptVariant]
|
1000
|
+
attr_accessor version: ::String
|
1001
|
+
SENSITIVE: [:variants]
|
1002
|
+
end
|
1003
|
+
|
546
1004
|
class GuardrailConfiguration
|
547
1005
|
attr_accessor guardrail_identifier: ::String
|
548
1006
|
attr_accessor guardrail_version: ::String
|
549
1007
|
SENSITIVE: []
|
550
1008
|
end
|
551
1009
|
|
1010
|
+
class HierarchicalChunkingConfiguration
|
1011
|
+
attr_accessor level_configurations: ::Array[Types::HierarchicalChunkingLevelConfiguration]
|
1012
|
+
attr_accessor overlap_tokens: ::Integer
|
1013
|
+
SENSITIVE: []
|
1014
|
+
end
|
1015
|
+
|
1016
|
+
class HierarchicalChunkingLevelConfiguration
|
1017
|
+
attr_accessor max_tokens: ::Integer
|
1018
|
+
SENSITIVE: []
|
1019
|
+
end
|
1020
|
+
|
552
1021
|
class InferenceConfiguration
|
553
1022
|
attr_accessor maximum_length: ::Integer
|
554
1023
|
attr_accessor stop_sequences: ::Array[::String]
|
@@ -607,11 +1076,22 @@ module Aws::BedrockAgent
|
|
607
1076
|
SENSITIVE: []
|
608
1077
|
end
|
609
1078
|
|
1079
|
+
class InputFlowNodeConfiguration < Aws::EmptyStructure
|
1080
|
+
end
|
1081
|
+
|
1082
|
+
class IntermediateStorage
|
1083
|
+
attr_accessor s3_location: Types::S3Location
|
1084
|
+
SENSITIVE: []
|
1085
|
+
end
|
1086
|
+
|
610
1087
|
class InternalServerException
|
611
1088
|
attr_accessor message: ::String
|
612
1089
|
SENSITIVE: []
|
613
1090
|
end
|
614
1091
|
|
1092
|
+
class IteratorFlowNodeConfiguration < Aws::EmptyStructure
|
1093
|
+
end
|
1094
|
+
|
615
1095
|
class KnowledgeBase
|
616
1096
|
attr_accessor created_at: ::Time
|
617
1097
|
attr_accessor description: ::String
|
@@ -633,6 +1113,12 @@ module Aws::BedrockAgent
|
|
633
1113
|
SENSITIVE: []
|
634
1114
|
end
|
635
1115
|
|
1116
|
+
class KnowledgeBaseFlowNodeConfiguration
|
1117
|
+
attr_accessor knowledge_base_id: ::String
|
1118
|
+
attr_accessor model_id: ::String
|
1119
|
+
SENSITIVE: []
|
1120
|
+
end
|
1121
|
+
|
636
1122
|
class KnowledgeBaseSummary
|
637
1123
|
attr_accessor description: ::String
|
638
1124
|
attr_accessor knowledge_base_id: ::String
|
@@ -642,6 +1128,17 @@ module Aws::BedrockAgent
|
|
642
1128
|
SENSITIVE: []
|
643
1129
|
end
|
644
1130
|
|
1131
|
+
class LambdaFunctionFlowNodeConfiguration
|
1132
|
+
attr_accessor lambda_arn: ::String
|
1133
|
+
SENSITIVE: []
|
1134
|
+
end
|
1135
|
+
|
1136
|
+
class LexFlowNodeConfiguration
|
1137
|
+
attr_accessor bot_alias_arn: ::String
|
1138
|
+
attr_accessor locale_id: ::String
|
1139
|
+
SENSITIVE: []
|
1140
|
+
end
|
1141
|
+
|
645
1142
|
class ListAgentActionGroupsRequest
|
646
1143
|
attr_accessor agent_id: ::String
|
647
1144
|
attr_accessor agent_version: ::String
|
@@ -721,6 +1218,44 @@ module Aws::BedrockAgent
|
|
721
1218
|
SENSITIVE: []
|
722
1219
|
end
|
723
1220
|
|
1221
|
+
class ListFlowAliasesRequest
|
1222
|
+
attr_accessor flow_identifier: ::String
|
1223
|
+
attr_accessor max_results: ::Integer
|
1224
|
+
attr_accessor next_token: ::String
|
1225
|
+
SENSITIVE: []
|
1226
|
+
end
|
1227
|
+
|
1228
|
+
class ListFlowAliasesResponse
|
1229
|
+
attr_accessor flow_alias_summaries: ::Array[Types::FlowAliasSummary]
|
1230
|
+
attr_accessor next_token: ::String
|
1231
|
+
SENSITIVE: []
|
1232
|
+
end
|
1233
|
+
|
1234
|
+
class ListFlowVersionsRequest
|
1235
|
+
attr_accessor flow_identifier: ::String
|
1236
|
+
attr_accessor max_results: ::Integer
|
1237
|
+
attr_accessor next_token: ::String
|
1238
|
+
SENSITIVE: []
|
1239
|
+
end
|
1240
|
+
|
1241
|
+
class ListFlowVersionsResponse
|
1242
|
+
attr_accessor flow_version_summaries: ::Array[Types::FlowVersionSummary]
|
1243
|
+
attr_accessor next_token: ::String
|
1244
|
+
SENSITIVE: []
|
1245
|
+
end
|
1246
|
+
|
1247
|
+
class ListFlowsRequest
|
1248
|
+
attr_accessor max_results: ::Integer
|
1249
|
+
attr_accessor next_token: ::String
|
1250
|
+
SENSITIVE: []
|
1251
|
+
end
|
1252
|
+
|
1253
|
+
class ListFlowsResponse
|
1254
|
+
attr_accessor flow_summaries: ::Array[Types::FlowSummary]
|
1255
|
+
attr_accessor next_token: ::String
|
1256
|
+
SENSITIVE: []
|
1257
|
+
end
|
1258
|
+
|
724
1259
|
class ListIngestionJobsRequest
|
725
1260
|
attr_accessor data_source_id: ::String
|
726
1261
|
attr_accessor filters: ::Array[Types::IngestionJobFilter]
|
@@ -749,6 +1284,19 @@ module Aws::BedrockAgent
|
|
749
1284
|
SENSITIVE: []
|
750
1285
|
end
|
751
1286
|
|
1287
|
+
class ListPromptsRequest
|
1288
|
+
attr_accessor max_results: ::Integer
|
1289
|
+
attr_accessor next_token: ::String
|
1290
|
+
attr_accessor prompt_identifier: ::String
|
1291
|
+
SENSITIVE: []
|
1292
|
+
end
|
1293
|
+
|
1294
|
+
class ListPromptsResponse
|
1295
|
+
attr_accessor next_token: ::String
|
1296
|
+
attr_accessor prompt_summaries: ::Array[Types::PromptSummary]
|
1297
|
+
SENSITIVE: []
|
1298
|
+
end
|
1299
|
+
|
752
1300
|
class ListTagsForResourceRequest
|
753
1301
|
attr_accessor resource_arn: ::String
|
754
1302
|
SENSITIVE: []
|
@@ -759,6 +1307,12 @@ module Aws::BedrockAgent
|
|
759
1307
|
SENSITIVE: []
|
760
1308
|
end
|
761
1309
|
|
1310
|
+
class MemoryConfiguration
|
1311
|
+
attr_accessor enabled_memory_types: ::Array[("SESSION_SUMMARY")]
|
1312
|
+
attr_accessor storage_days: ::Integer
|
1313
|
+
SENSITIVE: []
|
1314
|
+
end
|
1315
|
+
|
762
1316
|
class MongoDbAtlasConfiguration
|
763
1317
|
attr_accessor collection_name: ::String
|
764
1318
|
attr_accessor credentials_secret_arn: ::String
|
@@ -791,6 +1345,9 @@ module Aws::BedrockAgent
|
|
791
1345
|
SENSITIVE: []
|
792
1346
|
end
|
793
1347
|
|
1348
|
+
class OutputFlowNodeConfiguration < Aws::EmptyStructure
|
1349
|
+
end
|
1350
|
+
|
794
1351
|
class ParameterDetail
|
795
1352
|
attr_accessor description: ::String
|
796
1353
|
attr_accessor required: bool
|
@@ -798,6 +1355,29 @@ module Aws::BedrockAgent
|
|
798
1355
|
SENSITIVE: []
|
799
1356
|
end
|
800
1357
|
|
1358
|
+
class ParsingConfiguration
|
1359
|
+
attr_accessor bedrock_foundation_model_configuration: Types::BedrockFoundationModelConfiguration
|
1360
|
+
attr_accessor parsing_strategy: ("BEDROCK_FOUNDATION_MODEL")
|
1361
|
+
SENSITIVE: []
|
1362
|
+
end
|
1363
|
+
|
1364
|
+
class ParsingPrompt
|
1365
|
+
attr_accessor parsing_prompt_text: ::String
|
1366
|
+
SENSITIVE: []
|
1367
|
+
end
|
1368
|
+
|
1369
|
+
class PatternObjectFilter
|
1370
|
+
attr_accessor exclusion_filters: ::Array[::String]
|
1371
|
+
attr_accessor inclusion_filters: ::Array[::String]
|
1372
|
+
attr_accessor object_type: ::String
|
1373
|
+
SENSITIVE: [:exclusion_filters, :inclusion_filters, :object_type]
|
1374
|
+
end
|
1375
|
+
|
1376
|
+
class PatternObjectFilterConfiguration
|
1377
|
+
attr_accessor filters: ::Array[Types::PatternObjectFilter]
|
1378
|
+
SENSITIVE: [:filters]
|
1379
|
+
end
|
1380
|
+
|
801
1381
|
class PineconeConfiguration
|
802
1382
|
attr_accessor connection_string: ::String
|
803
1383
|
attr_accessor credentials_secret_arn: ::String
|
@@ -825,6 +1405,17 @@ module Aws::BedrockAgent
|
|
825
1405
|
SENSITIVE: []
|
826
1406
|
end
|
827
1407
|
|
1408
|
+
class PrepareFlowRequest
|
1409
|
+
attr_accessor flow_identifier: ::String
|
1410
|
+
SENSITIVE: []
|
1411
|
+
end
|
1412
|
+
|
1413
|
+
class PrepareFlowResponse
|
1414
|
+
attr_accessor id: ::String
|
1415
|
+
attr_accessor status: ("Failed" | "Prepared" | "Preparing" | "NotPrepared")
|
1416
|
+
SENSITIVE: []
|
1417
|
+
end
|
1418
|
+
|
828
1419
|
class PromptConfiguration
|
829
1420
|
attr_accessor base_prompt_template: ::String
|
830
1421
|
attr_accessor inference_configuration: Types::InferenceConfiguration
|
@@ -832,6 +1423,63 @@ module Aws::BedrockAgent
|
|
832
1423
|
attr_accessor prompt_creation_mode: ("DEFAULT" | "OVERRIDDEN")
|
833
1424
|
attr_accessor prompt_state: ("ENABLED" | "DISABLED")
|
834
1425
|
attr_accessor prompt_type: ("PRE_PROCESSING" | "ORCHESTRATION" | "POST_PROCESSING" | "KNOWLEDGE_BASE_RESPONSE_GENERATION")
|
1426
|
+
SENSITIVE: [:base_prompt_template]
|
1427
|
+
end
|
1428
|
+
|
1429
|
+
class PromptFlowNodeConfiguration
|
1430
|
+
attr_accessor source_configuration: Types::PromptFlowNodeSourceConfiguration
|
1431
|
+
SENSITIVE: []
|
1432
|
+
end
|
1433
|
+
|
1434
|
+
class PromptFlowNodeInlineConfiguration
|
1435
|
+
attr_accessor inference_configuration: Types::PromptInferenceConfiguration
|
1436
|
+
attr_accessor model_id: ::String
|
1437
|
+
attr_accessor template_configuration: Types::PromptTemplateConfiguration
|
1438
|
+
attr_accessor template_type: ("TEXT")
|
1439
|
+
SENSITIVE: []
|
1440
|
+
end
|
1441
|
+
|
1442
|
+
class PromptFlowNodeResourceConfiguration
|
1443
|
+
attr_accessor prompt_arn: ::String
|
1444
|
+
SENSITIVE: []
|
1445
|
+
end
|
1446
|
+
|
1447
|
+
class PromptFlowNodeSourceConfiguration
|
1448
|
+
attr_accessor inline: Types::PromptFlowNodeInlineConfiguration
|
1449
|
+
attr_accessor resource: Types::PromptFlowNodeResourceConfiguration
|
1450
|
+
attr_accessor unknown: untyped
|
1451
|
+
SENSITIVE: []
|
1452
|
+
|
1453
|
+
class Inline < PromptFlowNodeSourceConfiguration
|
1454
|
+
end
|
1455
|
+
class Resource < PromptFlowNodeSourceConfiguration
|
1456
|
+
end
|
1457
|
+
class Unknown < PromptFlowNodeSourceConfiguration
|
1458
|
+
end
|
1459
|
+
end
|
1460
|
+
|
1461
|
+
class PromptInferenceConfiguration
|
1462
|
+
attr_accessor text: Types::PromptModelInferenceConfiguration
|
1463
|
+
attr_accessor unknown: untyped
|
1464
|
+
SENSITIVE: []
|
1465
|
+
|
1466
|
+
class Text < PromptInferenceConfiguration
|
1467
|
+
end
|
1468
|
+
class Unknown < PromptInferenceConfiguration
|
1469
|
+
end
|
1470
|
+
end
|
1471
|
+
|
1472
|
+
class PromptInputVariable
|
1473
|
+
attr_accessor name: ::String
|
1474
|
+
SENSITIVE: []
|
1475
|
+
end
|
1476
|
+
|
1477
|
+
class PromptModelInferenceConfiguration
|
1478
|
+
attr_accessor max_tokens: ::Integer
|
1479
|
+
attr_accessor stop_sequences: ::Array[::String]
|
1480
|
+
attr_accessor temperature: ::Float
|
1481
|
+
attr_accessor top_k: ::Integer
|
1482
|
+
attr_accessor top_p: ::Float
|
835
1483
|
SENSITIVE: []
|
836
1484
|
end
|
837
1485
|
|
@@ -841,6 +1489,37 @@ module Aws::BedrockAgent
|
|
841
1489
|
SENSITIVE: []
|
842
1490
|
end
|
843
1491
|
|
1492
|
+
class PromptSummary
|
1493
|
+
attr_accessor arn: ::String
|
1494
|
+
attr_accessor created_at: ::Time
|
1495
|
+
attr_accessor description: ::String
|
1496
|
+
attr_accessor id: ::String
|
1497
|
+
attr_accessor name: ::String
|
1498
|
+
attr_accessor updated_at: ::Time
|
1499
|
+
attr_accessor version: ::String
|
1500
|
+
SENSITIVE: []
|
1501
|
+
end
|
1502
|
+
|
1503
|
+
class PromptTemplateConfiguration
|
1504
|
+
attr_accessor text: Types::TextPromptTemplateConfiguration
|
1505
|
+
attr_accessor unknown: untyped
|
1506
|
+
SENSITIVE: [:text]
|
1507
|
+
|
1508
|
+
class Text < PromptTemplateConfiguration
|
1509
|
+
end
|
1510
|
+
class Unknown < PromptTemplateConfiguration
|
1511
|
+
end
|
1512
|
+
end
|
1513
|
+
|
1514
|
+
class PromptVariant
|
1515
|
+
attr_accessor inference_configuration: Types::PromptInferenceConfiguration
|
1516
|
+
attr_accessor model_id: ::String
|
1517
|
+
attr_accessor name: ::String
|
1518
|
+
attr_accessor template_configuration: Types::PromptTemplateConfiguration
|
1519
|
+
attr_accessor template_type: ("TEXT")
|
1520
|
+
SENSITIVE: []
|
1521
|
+
end
|
1522
|
+
|
844
1523
|
class RdsConfiguration
|
845
1524
|
attr_accessor credentials_secret_arn: ::String
|
846
1525
|
attr_accessor database_name: ::String
|
@@ -878,6 +1557,27 @@ module Aws::BedrockAgent
|
|
878
1557
|
SENSITIVE: []
|
879
1558
|
end
|
880
1559
|
|
1560
|
+
class RetrievalFlowNodeConfiguration
|
1561
|
+
attr_accessor service_configuration: Types::RetrievalFlowNodeServiceConfiguration
|
1562
|
+
SENSITIVE: []
|
1563
|
+
end
|
1564
|
+
|
1565
|
+
class RetrievalFlowNodeS3Configuration
|
1566
|
+
attr_accessor bucket_name: ::String
|
1567
|
+
SENSITIVE: []
|
1568
|
+
end
|
1569
|
+
|
1570
|
+
class RetrievalFlowNodeServiceConfiguration
|
1571
|
+
attr_accessor s3: Types::RetrievalFlowNodeS3Configuration
|
1572
|
+
attr_accessor unknown: untyped
|
1573
|
+
SENSITIVE: []
|
1574
|
+
|
1575
|
+
class S3 < RetrievalFlowNodeServiceConfiguration
|
1576
|
+
end
|
1577
|
+
class Unknown < RetrievalFlowNodeServiceConfiguration
|
1578
|
+
end
|
1579
|
+
end
|
1580
|
+
|
881
1581
|
class S3DataSourceConfiguration
|
882
1582
|
attr_accessor bucket_arn: ::String
|
883
1583
|
attr_accessor bucket_owner_account_id: ::String
|
@@ -891,6 +1591,41 @@ module Aws::BedrockAgent
|
|
891
1591
|
SENSITIVE: []
|
892
1592
|
end
|
893
1593
|
|
1594
|
+
class S3Location
|
1595
|
+
attr_accessor uri: ::String
|
1596
|
+
SENSITIVE: []
|
1597
|
+
end
|
1598
|
+
|
1599
|
+
class SalesforceCrawlerConfiguration
|
1600
|
+
attr_accessor filter_configuration: Types::CrawlFilterConfiguration
|
1601
|
+
SENSITIVE: []
|
1602
|
+
end
|
1603
|
+
|
1604
|
+
class SalesforceDataSourceConfiguration
|
1605
|
+
attr_accessor crawler_configuration: Types::SalesforceCrawlerConfiguration
|
1606
|
+
attr_accessor source_configuration: Types::SalesforceSourceConfiguration
|
1607
|
+
SENSITIVE: []
|
1608
|
+
end
|
1609
|
+
|
1610
|
+
class SalesforceSourceConfiguration
|
1611
|
+
attr_accessor auth_type: ("OAUTH2_CLIENT_CREDENTIALS")
|
1612
|
+
attr_accessor credentials_secret_arn: ::String
|
1613
|
+
attr_accessor host_url: ::String
|
1614
|
+
SENSITIVE: []
|
1615
|
+
end
|
1616
|
+
|
1617
|
+
class SeedUrl
|
1618
|
+
attr_accessor url: ::String
|
1619
|
+
SENSITIVE: []
|
1620
|
+
end
|
1621
|
+
|
1622
|
+
class SemanticChunkingConfiguration
|
1623
|
+
attr_accessor breakpoint_percentile_threshold: ::Integer
|
1624
|
+
attr_accessor buffer_size: ::Integer
|
1625
|
+
attr_accessor max_tokens: ::Integer
|
1626
|
+
SENSITIVE: []
|
1627
|
+
end
|
1628
|
+
|
894
1629
|
class ServerSideEncryptionConfiguration
|
895
1630
|
attr_accessor kms_key_arn: ::String
|
896
1631
|
SENSITIVE: []
|
@@ -901,6 +1636,27 @@ module Aws::BedrockAgent
|
|
901
1636
|
SENSITIVE: []
|
902
1637
|
end
|
903
1638
|
|
1639
|
+
class SharePointCrawlerConfiguration
|
1640
|
+
attr_accessor filter_configuration: Types::CrawlFilterConfiguration
|
1641
|
+
SENSITIVE: []
|
1642
|
+
end
|
1643
|
+
|
1644
|
+
class SharePointDataSourceConfiguration
|
1645
|
+
attr_accessor crawler_configuration: Types::SharePointCrawlerConfiguration
|
1646
|
+
attr_accessor source_configuration: Types::SharePointSourceConfiguration
|
1647
|
+
SENSITIVE: []
|
1648
|
+
end
|
1649
|
+
|
1650
|
+
class SharePointSourceConfiguration
|
1651
|
+
attr_accessor auth_type: ("OAUTH2_CLIENT_CREDENTIALS")
|
1652
|
+
attr_accessor credentials_secret_arn: ::String
|
1653
|
+
attr_accessor domain: ::String
|
1654
|
+
attr_accessor host_type: ("ONLINE")
|
1655
|
+
attr_accessor site_urls: ::Array[::String]
|
1656
|
+
attr_accessor tenant_id: ::String
|
1657
|
+
SENSITIVE: []
|
1658
|
+
end
|
1659
|
+
|
904
1660
|
class StartIngestionJobRequest
|
905
1661
|
attr_accessor client_token: ::String
|
906
1662
|
attr_accessor data_source_id: ::String
|
@@ -924,6 +1680,27 @@ module Aws::BedrockAgent
|
|
924
1680
|
SENSITIVE: []
|
925
1681
|
end
|
926
1682
|
|
1683
|
+
class StorageFlowNodeConfiguration
|
1684
|
+
attr_accessor service_configuration: Types::StorageFlowNodeServiceConfiguration
|
1685
|
+
SENSITIVE: []
|
1686
|
+
end
|
1687
|
+
|
1688
|
+
class StorageFlowNodeS3Configuration
|
1689
|
+
attr_accessor bucket_name: ::String
|
1690
|
+
SENSITIVE: []
|
1691
|
+
end
|
1692
|
+
|
1693
|
+
class StorageFlowNodeServiceConfiguration
|
1694
|
+
attr_accessor s3: Types::StorageFlowNodeS3Configuration
|
1695
|
+
attr_accessor unknown: untyped
|
1696
|
+
SENSITIVE: []
|
1697
|
+
|
1698
|
+
class S3 < StorageFlowNodeServiceConfiguration
|
1699
|
+
end
|
1700
|
+
class Unknown < StorageFlowNodeServiceConfiguration
|
1701
|
+
end
|
1702
|
+
end
|
1703
|
+
|
927
1704
|
class TagResourceRequest
|
928
1705
|
attr_accessor resource_arn: ::String
|
929
1706
|
attr_accessor tags: ::Hash[::String, ::String]
|
@@ -933,11 +1710,33 @@ module Aws::BedrockAgent
|
|
933
1710
|
class TagResourceResponse < Aws::EmptyStructure
|
934
1711
|
end
|
935
1712
|
|
1713
|
+
class TextPromptTemplateConfiguration
|
1714
|
+
attr_accessor input_variables: ::Array[Types::PromptInputVariable]
|
1715
|
+
attr_accessor text: ::String
|
1716
|
+
SENSITIVE: [:input_variables, :text]
|
1717
|
+
end
|
1718
|
+
|
936
1719
|
class ThrottlingException
|
937
1720
|
attr_accessor message: ::String
|
938
1721
|
SENSITIVE: []
|
939
1722
|
end
|
940
1723
|
|
1724
|
+
class Transformation
|
1725
|
+
attr_accessor step_to_apply: ("POST_CHUNKING")
|
1726
|
+
attr_accessor transformation_function: Types::TransformationFunction
|
1727
|
+
SENSITIVE: []
|
1728
|
+
end
|
1729
|
+
|
1730
|
+
class TransformationFunction
|
1731
|
+
attr_accessor transformation_lambda_configuration: Types::TransformationLambdaConfiguration
|
1732
|
+
SENSITIVE: []
|
1733
|
+
end
|
1734
|
+
|
1735
|
+
class TransformationLambdaConfiguration
|
1736
|
+
attr_accessor lambda_arn: ::String
|
1737
|
+
SENSITIVE: []
|
1738
|
+
end
|
1739
|
+
|
941
1740
|
class UntagResourceRequest
|
942
1741
|
attr_accessor resource_arn: ::String
|
943
1742
|
attr_accessor tag_keys: ::Array[::String]
|
@@ -957,7 +1756,7 @@ module Aws::BedrockAgent
|
|
957
1756
|
attr_accessor api_schema: Types::APISchema
|
958
1757
|
attr_accessor description: ::String
|
959
1758
|
attr_accessor function_schema: Types::FunctionSchema
|
960
|
-
attr_accessor parent_action_group_signature: ("AMAZON.UserInput")
|
1759
|
+
attr_accessor parent_action_group_signature: ("AMAZON.UserInput" | "AMAZON.CodeInterpreter")
|
961
1760
|
SENSITIVE: []
|
962
1761
|
end
|
963
1762
|
|
@@ -1004,6 +1803,7 @@ module Aws::BedrockAgent
|
|
1004
1803
|
attr_accessor guardrail_configuration: Types::GuardrailConfiguration
|
1005
1804
|
attr_accessor idle_session_ttl_in_seconds: ::Integer
|
1006
1805
|
attr_accessor instruction: ::String
|
1806
|
+
attr_accessor memory_configuration: Types::MemoryConfiguration
|
1007
1807
|
attr_accessor prompt_override_configuration: Types::PromptOverrideConfiguration
|
1008
1808
|
SENSITIVE: [:instruction, :prompt_override_configuration]
|
1009
1809
|
end
|
@@ -1030,6 +1830,52 @@ module Aws::BedrockAgent
|
|
1030
1830
|
SENSITIVE: []
|
1031
1831
|
end
|
1032
1832
|
|
1833
|
+
class UpdateFlowAliasRequest
|
1834
|
+
attr_accessor alias_identifier: ::String
|
1835
|
+
attr_accessor description: ::String
|
1836
|
+
attr_accessor flow_identifier: ::String
|
1837
|
+
attr_accessor name: ::String
|
1838
|
+
attr_accessor routing_configuration: ::Array[Types::FlowAliasRoutingConfigurationListItem]
|
1839
|
+
SENSITIVE: []
|
1840
|
+
end
|
1841
|
+
|
1842
|
+
class UpdateFlowAliasResponse
|
1843
|
+
attr_accessor arn: ::String
|
1844
|
+
attr_accessor created_at: ::Time
|
1845
|
+
attr_accessor description: ::String
|
1846
|
+
attr_accessor flow_id: ::String
|
1847
|
+
attr_accessor id: ::String
|
1848
|
+
attr_accessor name: ::String
|
1849
|
+
attr_accessor routing_configuration: ::Array[Types::FlowAliasRoutingConfigurationListItem]
|
1850
|
+
attr_accessor updated_at: ::Time
|
1851
|
+
SENSITIVE: []
|
1852
|
+
end
|
1853
|
+
|
1854
|
+
class UpdateFlowRequest
|
1855
|
+
attr_accessor customer_encryption_key_arn: ::String
|
1856
|
+
attr_accessor definition: Types::FlowDefinition
|
1857
|
+
attr_accessor description: ::String
|
1858
|
+
attr_accessor execution_role_arn: ::String
|
1859
|
+
attr_accessor flow_identifier: ::String
|
1860
|
+
attr_accessor name: ::String
|
1861
|
+
SENSITIVE: []
|
1862
|
+
end
|
1863
|
+
|
1864
|
+
class UpdateFlowResponse
|
1865
|
+
attr_accessor arn: ::String
|
1866
|
+
attr_accessor created_at: ::Time
|
1867
|
+
attr_accessor customer_encryption_key_arn: ::String
|
1868
|
+
attr_accessor definition: Types::FlowDefinition
|
1869
|
+
attr_accessor description: ::String
|
1870
|
+
attr_accessor execution_role_arn: ::String
|
1871
|
+
attr_accessor id: ::String
|
1872
|
+
attr_accessor name: ::String
|
1873
|
+
attr_accessor status: ("Failed" | "Prepared" | "Preparing" | "NotPrepared")
|
1874
|
+
attr_accessor updated_at: ::Time
|
1875
|
+
attr_accessor version: ::String
|
1876
|
+
SENSITIVE: []
|
1877
|
+
end
|
1878
|
+
|
1033
1879
|
class UpdateKnowledgeBaseRequest
|
1034
1880
|
attr_accessor description: ::String
|
1035
1881
|
attr_accessor knowledge_base_configuration: Types::KnowledgeBaseConfiguration
|
@@ -1045,6 +1891,35 @@ module Aws::BedrockAgent
|
|
1045
1891
|
SENSITIVE: []
|
1046
1892
|
end
|
1047
1893
|
|
1894
|
+
class UpdatePromptRequest
|
1895
|
+
attr_accessor customer_encryption_key_arn: ::String
|
1896
|
+
attr_accessor default_variant: ::String
|
1897
|
+
attr_accessor description: ::String
|
1898
|
+
attr_accessor name: ::String
|
1899
|
+
attr_accessor prompt_identifier: ::String
|
1900
|
+
attr_accessor variants: ::Array[Types::PromptVariant]
|
1901
|
+
SENSITIVE: [:variants]
|
1902
|
+
end
|
1903
|
+
|
1904
|
+
class UpdatePromptResponse
|
1905
|
+
attr_accessor arn: ::String
|
1906
|
+
attr_accessor created_at: ::Time
|
1907
|
+
attr_accessor customer_encryption_key_arn: ::String
|
1908
|
+
attr_accessor default_variant: ::String
|
1909
|
+
attr_accessor description: ::String
|
1910
|
+
attr_accessor id: ::String
|
1911
|
+
attr_accessor name: ::String
|
1912
|
+
attr_accessor updated_at: ::Time
|
1913
|
+
attr_accessor variants: ::Array[Types::PromptVariant]
|
1914
|
+
attr_accessor version: ::String
|
1915
|
+
SENSITIVE: [:variants]
|
1916
|
+
end
|
1917
|
+
|
1918
|
+
class UrlConfiguration
|
1919
|
+
attr_accessor seed_urls: ::Array[Types::SeedUrl]
|
1920
|
+
SENSITIVE: []
|
1921
|
+
end
|
1922
|
+
|
1048
1923
|
class ValidationException
|
1049
1924
|
attr_accessor field_list: ::Array[Types::ValidationExceptionField]
|
1050
1925
|
attr_accessor message: ::String
|
@@ -1059,6 +1934,8 @@ module Aws::BedrockAgent
|
|
1059
1934
|
|
1060
1935
|
class VectorIngestionConfiguration
|
1061
1936
|
attr_accessor chunking_configuration: Types::ChunkingConfiguration
|
1937
|
+
attr_accessor custom_transformation_configuration: Types::CustomTransformationConfiguration
|
1938
|
+
attr_accessor parsing_configuration: Types::ParsingConfiguration
|
1062
1939
|
SENSITIVE: []
|
1063
1940
|
end
|
1064
1941
|
|
@@ -1067,5 +1944,29 @@ module Aws::BedrockAgent
|
|
1067
1944
|
attr_accessor embedding_model_configuration: Types::EmbeddingModelConfiguration
|
1068
1945
|
SENSITIVE: []
|
1069
1946
|
end
|
1947
|
+
|
1948
|
+
class WebCrawlerConfiguration
|
1949
|
+
attr_accessor crawler_limits: Types::WebCrawlerLimits
|
1950
|
+
attr_accessor exclusion_filters: ::Array[::String]
|
1951
|
+
attr_accessor inclusion_filters: ::Array[::String]
|
1952
|
+
attr_accessor scope: ("HOST_ONLY" | "SUBDOMAINS")
|
1953
|
+
SENSITIVE: [:exclusion_filters, :inclusion_filters]
|
1954
|
+
end
|
1955
|
+
|
1956
|
+
class WebCrawlerLimits
|
1957
|
+
attr_accessor rate_limit: ::Integer
|
1958
|
+
SENSITIVE: []
|
1959
|
+
end
|
1960
|
+
|
1961
|
+
class WebDataSourceConfiguration
|
1962
|
+
attr_accessor crawler_configuration: Types::WebCrawlerConfiguration
|
1963
|
+
attr_accessor source_configuration: Types::WebSourceConfiguration
|
1964
|
+
SENSITIVE: []
|
1965
|
+
end
|
1966
|
+
|
1967
|
+
class WebSourceConfiguration
|
1968
|
+
attr_accessor url_configuration: Types::UrlConfiguration
|
1969
|
+
SENSITIVE: []
|
1970
|
+
end
|
1070
1971
|
end
|
1071
1972
|
end
|