aws-sdk-bedrockagentcorecontrol 1.15.0 → 1.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client.rb +2169 -52
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +1294 -0
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +3803 -196
- data/lib/aws-sdk-bedrockagentcorecontrol/waiters.rb +279 -3
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +790 -6
- data/sig/types.rbs +956 -29
- data/sig/waiters.rbs +53 -0
- metadata +1 -1
data/sig/types.rbs
CHANGED
|
@@ -52,6 +52,33 @@ module Aws::BedrockAgentCoreControl
|
|
|
52
52
|
SENSITIVE: [:name]
|
|
53
53
|
end
|
|
54
54
|
|
|
55
|
+
class ApiGatewayTargetConfiguration
|
|
56
|
+
attr_accessor rest_api_id: ::String
|
|
57
|
+
attr_accessor stage: ::String
|
|
58
|
+
attr_accessor api_gateway_tool_configuration: Types::ApiGatewayToolConfiguration
|
|
59
|
+
SENSITIVE: []
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
class ApiGatewayToolConfiguration
|
|
63
|
+
attr_accessor tool_overrides: ::Array[Types::ApiGatewayToolOverride]
|
|
64
|
+
attr_accessor tool_filters: ::Array[Types::ApiGatewayToolFilter]
|
|
65
|
+
SENSITIVE: []
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
class ApiGatewayToolFilter
|
|
69
|
+
attr_accessor filter_path: ::String
|
|
70
|
+
attr_accessor methods: ::Array[("GET" | "DELETE" | "HEAD" | "OPTIONS" | "PATCH" | "PUT" | "POST")]
|
|
71
|
+
SENSITIVE: []
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
class ApiGatewayToolOverride
|
|
75
|
+
attr_accessor name: ::String
|
|
76
|
+
attr_accessor description: ::String
|
|
77
|
+
attr_accessor path: ::String
|
|
78
|
+
attr_accessor method: ("GET" | "DELETE" | "HEAD" | "OPTIONS" | "PATCH" | "PUT" | "POST")
|
|
79
|
+
SENSITIVE: []
|
|
80
|
+
end
|
|
81
|
+
|
|
55
82
|
class ApiKeyCredentialProvider
|
|
56
83
|
attr_accessor provider_arn: ::String
|
|
57
84
|
attr_accessor credential_parameter_name: ::String
|
|
@@ -105,6 +132,19 @@ module Aws::BedrockAgentCoreControl
|
|
|
105
132
|
end
|
|
106
133
|
end
|
|
107
134
|
|
|
135
|
+
class AuthorizingClaimMatchValueType
|
|
136
|
+
attr_accessor claim_match_value: Types::ClaimMatchValueType
|
|
137
|
+
attr_accessor claim_match_operator: ("EQUALS" | "CONTAINS" | "CONTAINS_ANY")
|
|
138
|
+
SENSITIVE: []
|
|
139
|
+
end
|
|
140
|
+
|
|
141
|
+
class BedrockEvaluatorModelConfig
|
|
142
|
+
attr_accessor model_id: ::String
|
|
143
|
+
attr_accessor inference_config: Types::InferenceConfiguration
|
|
144
|
+
attr_accessor additional_model_request_fields: untyped
|
|
145
|
+
SENSITIVE: []
|
|
146
|
+
end
|
|
147
|
+
|
|
108
148
|
class BrowserNetworkConfiguration
|
|
109
149
|
attr_accessor network_mode: ("PUBLIC" | "VPC")
|
|
110
150
|
attr_accessor vpc_config: Types::VpcConfig
|
|
@@ -132,6 +172,42 @@ module Aws::BedrockAgentCoreControl
|
|
|
132
172
|
SENSITIVE: [:description]
|
|
133
173
|
end
|
|
134
174
|
|
|
175
|
+
class CategoricalScaleDefinition
|
|
176
|
+
attr_accessor definition: ::String
|
|
177
|
+
attr_accessor label: ::String
|
|
178
|
+
SENSITIVE: []
|
|
179
|
+
end
|
|
180
|
+
|
|
181
|
+
class CedarPolicy
|
|
182
|
+
attr_accessor statement: ::String
|
|
183
|
+
SENSITIVE: []
|
|
184
|
+
end
|
|
185
|
+
|
|
186
|
+
class ClaimMatchValueType
|
|
187
|
+
attr_accessor match_value_string: ::String
|
|
188
|
+
attr_accessor match_value_string_list: ::Array[::String]
|
|
189
|
+
attr_accessor unknown: untyped
|
|
190
|
+
SENSITIVE: []
|
|
191
|
+
|
|
192
|
+
class MatchValueString < ClaimMatchValueType
|
|
193
|
+
end
|
|
194
|
+
class MatchValueStringList < ClaimMatchValueType
|
|
195
|
+
end
|
|
196
|
+
class Unknown < ClaimMatchValueType
|
|
197
|
+
end
|
|
198
|
+
end
|
|
199
|
+
|
|
200
|
+
class CloudWatchLogsInputConfig
|
|
201
|
+
attr_accessor log_group_names: ::Array[::String]
|
|
202
|
+
attr_accessor service_names: ::Array[::String]
|
|
203
|
+
SENSITIVE: []
|
|
204
|
+
end
|
|
205
|
+
|
|
206
|
+
class CloudWatchOutputConfig
|
|
207
|
+
attr_accessor log_group_name: ::String
|
|
208
|
+
SENSITIVE: []
|
|
209
|
+
end
|
|
210
|
+
|
|
135
211
|
class Code
|
|
136
212
|
attr_accessor s3: Types::S3Location
|
|
137
213
|
attr_accessor unknown: untyped
|
|
@@ -193,6 +269,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
193
269
|
SENSITIVE: []
|
|
194
270
|
end
|
|
195
271
|
|
|
272
|
+
class Content
|
|
273
|
+
attr_accessor raw_text: ::String
|
|
274
|
+
attr_accessor unknown: untyped
|
|
275
|
+
SENSITIVE: []
|
|
276
|
+
|
|
277
|
+
class RawText < Content
|
|
278
|
+
end
|
|
279
|
+
class Unknown < Content
|
|
280
|
+
end
|
|
281
|
+
end
|
|
282
|
+
|
|
196
283
|
class CreateAgentRuntimeEndpointRequest
|
|
197
284
|
attr_accessor agent_runtime_id: ::String
|
|
198
285
|
attr_accessor name: ::String
|
|
@@ -292,6 +379,23 @@ module Aws::BedrockAgentCoreControl
|
|
|
292
379
|
SENSITIVE: []
|
|
293
380
|
end
|
|
294
381
|
|
|
382
|
+
class CreateEvaluatorRequest
|
|
383
|
+
attr_accessor client_token: ::String
|
|
384
|
+
attr_accessor evaluator_name: ::String
|
|
385
|
+
attr_accessor description: ::String
|
|
386
|
+
attr_accessor evaluator_config: Types::EvaluatorConfig
|
|
387
|
+
attr_accessor level: ("TOOL_CALL" | "TRACE" | "SESSION")
|
|
388
|
+
SENSITIVE: [:description]
|
|
389
|
+
end
|
|
390
|
+
|
|
391
|
+
class CreateEvaluatorResponse
|
|
392
|
+
attr_accessor evaluator_arn: ::String
|
|
393
|
+
attr_accessor evaluator_id: ::String
|
|
394
|
+
attr_accessor created_at: ::Time
|
|
395
|
+
attr_accessor status: ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
|
|
396
|
+
SENSITIVE: []
|
|
397
|
+
end
|
|
398
|
+
|
|
295
399
|
class CreateGatewayRequest
|
|
296
400
|
attr_accessor name: ::String
|
|
297
401
|
attr_accessor description: ::String
|
|
@@ -303,6 +407,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
303
407
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
|
304
408
|
attr_accessor kms_key_arn: ::String
|
|
305
409
|
attr_accessor interceptor_configurations: ::Array[Types::GatewayInterceptorConfiguration]
|
|
410
|
+
attr_accessor policy_engine_configuration: Types::GatewayPolicyEngineConfiguration
|
|
306
411
|
attr_accessor exception_level: ("DEBUG")
|
|
307
412
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
308
413
|
SENSITIVE: [:name, :description]
|
|
@@ -325,6 +430,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
325
430
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
|
326
431
|
attr_accessor kms_key_arn: ::String
|
|
327
432
|
attr_accessor interceptor_configurations: ::Array[Types::GatewayInterceptorConfiguration]
|
|
433
|
+
attr_accessor policy_engine_configuration: Types::GatewayPolicyEngineConfiguration
|
|
328
434
|
attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
|
|
329
435
|
attr_accessor exception_level: ("DEBUG")
|
|
330
436
|
SENSITIVE: [:name, :description]
|
|
@@ -389,6 +495,72 @@ module Aws::BedrockAgentCoreControl
|
|
|
389
495
|
SENSITIVE: []
|
|
390
496
|
end
|
|
391
497
|
|
|
498
|
+
class CreateOnlineEvaluationConfigRequest
|
|
499
|
+
attr_accessor client_token: ::String
|
|
500
|
+
attr_accessor online_evaluation_config_name: ::String
|
|
501
|
+
attr_accessor description: ::String
|
|
502
|
+
attr_accessor rule: Types::Rule
|
|
503
|
+
attr_accessor data_source_config: Types::DataSourceConfig
|
|
504
|
+
attr_accessor evaluators: ::Array[Types::EvaluatorReference]
|
|
505
|
+
attr_accessor evaluation_execution_role_arn: ::String
|
|
506
|
+
attr_accessor enable_on_create: bool
|
|
507
|
+
SENSITIVE: [:description]
|
|
508
|
+
end
|
|
509
|
+
|
|
510
|
+
class CreateOnlineEvaluationConfigResponse
|
|
511
|
+
attr_accessor online_evaluation_config_arn: ::String
|
|
512
|
+
attr_accessor online_evaluation_config_id: ::String
|
|
513
|
+
attr_accessor created_at: ::Time
|
|
514
|
+
attr_accessor output_config: Types::OutputConfig
|
|
515
|
+
attr_accessor status: ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
|
|
516
|
+
attr_accessor execution_status: ("ENABLED" | "DISABLED")
|
|
517
|
+
attr_accessor failure_reason: ::String
|
|
518
|
+
SENSITIVE: []
|
|
519
|
+
end
|
|
520
|
+
|
|
521
|
+
class CreatePolicyEngineRequest
|
|
522
|
+
attr_accessor name: ::String
|
|
523
|
+
attr_accessor description: ::String
|
|
524
|
+
attr_accessor client_token: ::String
|
|
525
|
+
SENSITIVE: [:description]
|
|
526
|
+
end
|
|
527
|
+
|
|
528
|
+
class CreatePolicyEngineResponse
|
|
529
|
+
attr_accessor policy_engine_id: ::String
|
|
530
|
+
attr_accessor name: ::String
|
|
531
|
+
attr_accessor description: ::String
|
|
532
|
+
attr_accessor created_at: ::Time
|
|
533
|
+
attr_accessor updated_at: ::Time
|
|
534
|
+
attr_accessor policy_engine_arn: ::String
|
|
535
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
536
|
+
attr_accessor status_reasons: ::Array[::String]
|
|
537
|
+
SENSITIVE: [:description]
|
|
538
|
+
end
|
|
539
|
+
|
|
540
|
+
class CreatePolicyRequest
|
|
541
|
+
attr_accessor name: ::String
|
|
542
|
+
attr_accessor definition: Types::PolicyDefinition
|
|
543
|
+
attr_accessor description: ::String
|
|
544
|
+
attr_accessor validation_mode: ("FAIL_ON_ANY_FINDINGS" | "IGNORE_ALL_FINDINGS")
|
|
545
|
+
attr_accessor policy_engine_id: ::String
|
|
546
|
+
attr_accessor client_token: ::String
|
|
547
|
+
SENSITIVE: [:description]
|
|
548
|
+
end
|
|
549
|
+
|
|
550
|
+
class CreatePolicyResponse
|
|
551
|
+
attr_accessor policy_id: ::String
|
|
552
|
+
attr_accessor name: ::String
|
|
553
|
+
attr_accessor policy_engine_id: ::String
|
|
554
|
+
attr_accessor definition: Types::PolicyDefinition
|
|
555
|
+
attr_accessor description: ::String
|
|
556
|
+
attr_accessor created_at: ::Time
|
|
557
|
+
attr_accessor updated_at: ::Time
|
|
558
|
+
attr_accessor policy_arn: ::String
|
|
559
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
560
|
+
attr_accessor status_reasons: ::Array[::String]
|
|
561
|
+
SENSITIVE: [:description]
|
|
562
|
+
end
|
|
563
|
+
|
|
392
564
|
class CreateWorkloadIdentityRequest
|
|
393
565
|
attr_accessor name: ::String
|
|
394
566
|
attr_accessor allowed_resource_oauth_2_return_urls: ::Array[::String]
|
|
@@ -423,10 +595,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
423
595
|
SENSITIVE: []
|
|
424
596
|
end
|
|
425
597
|
|
|
598
|
+
class CustomClaimValidationType
|
|
599
|
+
attr_accessor inbound_token_claim_name: ::String
|
|
600
|
+
attr_accessor inbound_token_claim_value_type: ("STRING" | "STRING_ARRAY")
|
|
601
|
+
attr_accessor authorizing_claim_match_value: Types::AuthorizingClaimMatchValueType
|
|
602
|
+
SENSITIVE: []
|
|
603
|
+
end
|
|
604
|
+
|
|
426
605
|
class CustomConfigurationInput
|
|
427
606
|
attr_accessor semantic_override: Types::SemanticOverrideConfigurationInput
|
|
428
607
|
attr_accessor summary_override: Types::SummaryOverrideConfigurationInput
|
|
429
608
|
attr_accessor user_preference_override: Types::UserPreferenceOverrideConfigurationInput
|
|
609
|
+
attr_accessor episodic_override: Types::EpisodicOverrideConfigurationInput
|
|
430
610
|
attr_accessor self_managed_configuration: Types::SelfManagedConfigurationInput
|
|
431
611
|
attr_accessor unknown: untyped
|
|
432
612
|
SENSITIVE: []
|
|
@@ -437,6 +617,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
437
617
|
end
|
|
438
618
|
class UserPreferenceOverride < CustomConfigurationInput
|
|
439
619
|
end
|
|
620
|
+
class EpisodicOverride < CustomConfigurationInput
|
|
621
|
+
end
|
|
440
622
|
class SelfManagedConfiguration < CustomConfigurationInput
|
|
441
623
|
end
|
|
442
624
|
class Unknown < CustomConfigurationInput
|
|
@@ -447,6 +629,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
447
629
|
attr_accessor semantic_consolidation_override: Types::SemanticConsolidationOverride
|
|
448
630
|
attr_accessor summary_consolidation_override: Types::SummaryConsolidationOverride
|
|
449
631
|
attr_accessor user_preference_consolidation_override: Types::UserPreferenceConsolidationOverride
|
|
632
|
+
attr_accessor episodic_consolidation_override: Types::EpisodicConsolidationOverride
|
|
450
633
|
attr_accessor unknown: untyped
|
|
451
634
|
SENSITIVE: []
|
|
452
635
|
|
|
@@ -456,6 +639,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
456
639
|
end
|
|
457
640
|
class UserPreferenceConsolidationOverride < CustomConsolidationConfiguration
|
|
458
641
|
end
|
|
642
|
+
class EpisodicConsolidationOverride < CustomConsolidationConfiguration
|
|
643
|
+
end
|
|
459
644
|
class Unknown < CustomConsolidationConfiguration
|
|
460
645
|
end
|
|
461
646
|
end
|
|
@@ -464,6 +649,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
464
649
|
attr_accessor semantic_consolidation_override: Types::SemanticOverrideConsolidationConfigurationInput
|
|
465
650
|
attr_accessor summary_consolidation_override: Types::SummaryOverrideConsolidationConfigurationInput
|
|
466
651
|
attr_accessor user_preference_consolidation_override: Types::UserPreferenceOverrideConsolidationConfigurationInput
|
|
652
|
+
attr_accessor episodic_consolidation_override: Types::EpisodicOverrideConsolidationConfigurationInput
|
|
467
653
|
attr_accessor unknown: untyped
|
|
468
654
|
SENSITIVE: []
|
|
469
655
|
|
|
@@ -473,6 +659,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
473
659
|
end
|
|
474
660
|
class UserPreferenceConsolidationOverride < CustomConsolidationConfigurationInput
|
|
475
661
|
end
|
|
662
|
+
class EpisodicConsolidationOverride < CustomConsolidationConfigurationInput
|
|
663
|
+
end
|
|
476
664
|
class Unknown < CustomConsolidationConfigurationInput
|
|
477
665
|
end
|
|
478
666
|
end
|
|
@@ -480,6 +668,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
480
668
|
class CustomExtractionConfiguration
|
|
481
669
|
attr_accessor semantic_extraction_override: Types::SemanticExtractionOverride
|
|
482
670
|
attr_accessor user_preference_extraction_override: Types::UserPreferenceExtractionOverride
|
|
671
|
+
attr_accessor episodic_extraction_override: Types::EpisodicExtractionOverride
|
|
483
672
|
attr_accessor unknown: untyped
|
|
484
673
|
SENSITIVE: []
|
|
485
674
|
|
|
@@ -487,6 +676,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
487
676
|
end
|
|
488
677
|
class UserPreferenceExtractionOverride < CustomExtractionConfiguration
|
|
489
678
|
end
|
|
679
|
+
class EpisodicExtractionOverride < CustomExtractionConfiguration
|
|
680
|
+
end
|
|
490
681
|
class Unknown < CustomExtractionConfiguration
|
|
491
682
|
end
|
|
492
683
|
end
|
|
@@ -494,6 +685,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
494
685
|
class CustomExtractionConfigurationInput
|
|
495
686
|
attr_accessor semantic_extraction_override: Types::SemanticOverrideExtractionConfigurationInput
|
|
496
687
|
attr_accessor user_preference_extraction_override: Types::UserPreferenceOverrideExtractionConfigurationInput
|
|
688
|
+
attr_accessor episodic_extraction_override: Types::EpisodicOverrideExtractionConfigurationInput
|
|
497
689
|
attr_accessor unknown: untyped
|
|
498
690
|
SENSITIVE: []
|
|
499
691
|
|
|
@@ -501,6 +693,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
501
693
|
end
|
|
502
694
|
class UserPreferenceExtractionOverride < CustomExtractionConfigurationInput
|
|
503
695
|
end
|
|
696
|
+
class EpisodicExtractionOverride < CustomExtractionConfigurationInput
|
|
697
|
+
end
|
|
504
698
|
class Unknown < CustomExtractionConfigurationInput
|
|
505
699
|
end
|
|
506
700
|
end
|
|
@@ -509,6 +703,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
509
703
|
attr_accessor discovery_url: ::String
|
|
510
704
|
attr_accessor allowed_audience: ::Array[::String]
|
|
511
705
|
attr_accessor allowed_clients: ::Array[::String]
|
|
706
|
+
attr_accessor allowed_scopes: ::Array[::String]
|
|
707
|
+
attr_accessor custom_claims: ::Array[Types::CustomClaimValidationType]
|
|
512
708
|
SENSITIVE: []
|
|
513
709
|
end
|
|
514
710
|
|
|
@@ -533,6 +729,39 @@ module Aws::BedrockAgentCoreControl
|
|
|
533
729
|
SENSITIVE: []
|
|
534
730
|
end
|
|
535
731
|
|
|
732
|
+
class CustomReflectionConfiguration
|
|
733
|
+
attr_accessor episodic_reflection_override: Types::EpisodicReflectionOverride
|
|
734
|
+
attr_accessor unknown: untyped
|
|
735
|
+
SENSITIVE: []
|
|
736
|
+
|
|
737
|
+
class EpisodicReflectionOverride < CustomReflectionConfiguration
|
|
738
|
+
end
|
|
739
|
+
class Unknown < CustomReflectionConfiguration
|
|
740
|
+
end
|
|
741
|
+
end
|
|
742
|
+
|
|
743
|
+
class CustomReflectionConfigurationInput
|
|
744
|
+
attr_accessor episodic_reflection_override: Types::EpisodicOverrideReflectionConfigurationInput
|
|
745
|
+
attr_accessor unknown: untyped
|
|
746
|
+
SENSITIVE: []
|
|
747
|
+
|
|
748
|
+
class EpisodicReflectionOverride < CustomReflectionConfigurationInput
|
|
749
|
+
end
|
|
750
|
+
class Unknown < CustomReflectionConfigurationInput
|
|
751
|
+
end
|
|
752
|
+
end
|
|
753
|
+
|
|
754
|
+
class DataSourceConfig
|
|
755
|
+
attr_accessor cloud_watch_logs: Types::CloudWatchLogsInputConfig
|
|
756
|
+
attr_accessor unknown: untyped
|
|
757
|
+
SENSITIVE: []
|
|
758
|
+
|
|
759
|
+
class CloudWatchLogs < DataSourceConfig
|
|
760
|
+
end
|
|
761
|
+
class Unknown < DataSourceConfig
|
|
762
|
+
end
|
|
763
|
+
end
|
|
764
|
+
|
|
536
765
|
class DecryptionFailure
|
|
537
766
|
attr_accessor message: ::String
|
|
538
767
|
SENSITIVE: []
|
|
@@ -598,6 +827,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
598
827
|
SENSITIVE: []
|
|
599
828
|
end
|
|
600
829
|
|
|
830
|
+
class DeleteEvaluatorRequest
|
|
831
|
+
attr_accessor evaluator_id: ::String
|
|
832
|
+
SENSITIVE: []
|
|
833
|
+
end
|
|
834
|
+
|
|
835
|
+
class DeleteEvaluatorResponse
|
|
836
|
+
attr_accessor evaluator_arn: ::String
|
|
837
|
+
attr_accessor evaluator_id: ::String
|
|
838
|
+
attr_accessor status: ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
|
|
839
|
+
SENSITIVE: []
|
|
840
|
+
end
|
|
841
|
+
|
|
601
842
|
class DeleteGatewayRequest
|
|
602
843
|
attr_accessor gateway_identifier: ::String
|
|
603
844
|
SENSITIVE: []
|
|
@@ -649,6 +890,63 @@ module Aws::BedrockAgentCoreControl
|
|
|
649
890
|
class DeleteOauth2CredentialProviderResponse < Aws::EmptyStructure
|
|
650
891
|
end
|
|
651
892
|
|
|
893
|
+
class DeleteOnlineEvaluationConfigRequest
|
|
894
|
+
attr_accessor online_evaluation_config_id: ::String
|
|
895
|
+
SENSITIVE: []
|
|
896
|
+
end
|
|
897
|
+
|
|
898
|
+
class DeleteOnlineEvaluationConfigResponse
|
|
899
|
+
attr_accessor online_evaluation_config_arn: ::String
|
|
900
|
+
attr_accessor online_evaluation_config_id: ::String
|
|
901
|
+
attr_accessor status: ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
|
|
902
|
+
SENSITIVE: []
|
|
903
|
+
end
|
|
904
|
+
|
|
905
|
+
class DeletePolicyEngineRequest
|
|
906
|
+
attr_accessor policy_engine_id: ::String
|
|
907
|
+
SENSITIVE: []
|
|
908
|
+
end
|
|
909
|
+
|
|
910
|
+
class DeletePolicyEngineResponse
|
|
911
|
+
attr_accessor policy_engine_id: ::String
|
|
912
|
+
attr_accessor name: ::String
|
|
913
|
+
attr_accessor description: ::String
|
|
914
|
+
attr_accessor created_at: ::Time
|
|
915
|
+
attr_accessor updated_at: ::Time
|
|
916
|
+
attr_accessor policy_engine_arn: ::String
|
|
917
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
918
|
+
attr_accessor status_reasons: ::Array[::String]
|
|
919
|
+
SENSITIVE: [:description]
|
|
920
|
+
end
|
|
921
|
+
|
|
922
|
+
class DeletePolicyRequest
|
|
923
|
+
attr_accessor policy_engine_id: ::String
|
|
924
|
+
attr_accessor policy_id: ::String
|
|
925
|
+
SENSITIVE: []
|
|
926
|
+
end
|
|
927
|
+
|
|
928
|
+
class DeletePolicyResponse
|
|
929
|
+
attr_accessor policy_id: ::String
|
|
930
|
+
attr_accessor name: ::String
|
|
931
|
+
attr_accessor policy_engine_id: ::String
|
|
932
|
+
attr_accessor definition: Types::PolicyDefinition
|
|
933
|
+
attr_accessor description: ::String
|
|
934
|
+
attr_accessor created_at: ::Time
|
|
935
|
+
attr_accessor updated_at: ::Time
|
|
936
|
+
attr_accessor policy_arn: ::String
|
|
937
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
938
|
+
attr_accessor status_reasons: ::Array[::String]
|
|
939
|
+
SENSITIVE: [:description]
|
|
940
|
+
end
|
|
941
|
+
|
|
942
|
+
class DeleteResourcePolicyRequest
|
|
943
|
+
attr_accessor resource_arn: ::String
|
|
944
|
+
SENSITIVE: []
|
|
945
|
+
end
|
|
946
|
+
|
|
947
|
+
class DeleteResourcePolicyResponse < Aws::EmptyStructure
|
|
948
|
+
end
|
|
949
|
+
|
|
652
950
|
class DeleteWorkloadIdentityRequest
|
|
653
951
|
attr_accessor name: ::String
|
|
654
952
|
SENSITIVE: []
|
|
@@ -662,6 +960,116 @@ module Aws::BedrockAgentCoreControl
|
|
|
662
960
|
SENSITIVE: []
|
|
663
961
|
end
|
|
664
962
|
|
|
963
|
+
class EpisodicConsolidationOverride
|
|
964
|
+
attr_accessor append_to_prompt: ::String
|
|
965
|
+
attr_accessor model_id: ::String
|
|
966
|
+
SENSITIVE: [:append_to_prompt]
|
|
967
|
+
end
|
|
968
|
+
|
|
969
|
+
class EpisodicExtractionOverride
|
|
970
|
+
attr_accessor append_to_prompt: ::String
|
|
971
|
+
attr_accessor model_id: ::String
|
|
972
|
+
SENSITIVE: [:append_to_prompt]
|
|
973
|
+
end
|
|
974
|
+
|
|
975
|
+
class EpisodicMemoryStrategyInput
|
|
976
|
+
attr_accessor name: ::String
|
|
977
|
+
attr_accessor description: ::String
|
|
978
|
+
attr_accessor namespaces: ::Array[::String]
|
|
979
|
+
attr_accessor reflection_configuration: Types::EpisodicReflectionConfigurationInput
|
|
980
|
+
SENSITIVE: [:description]
|
|
981
|
+
end
|
|
982
|
+
|
|
983
|
+
class EpisodicOverrideConfigurationInput
|
|
984
|
+
attr_accessor extraction: Types::EpisodicOverrideExtractionConfigurationInput
|
|
985
|
+
attr_accessor consolidation: Types::EpisodicOverrideConsolidationConfigurationInput
|
|
986
|
+
attr_accessor reflection: Types::EpisodicOverrideReflectionConfigurationInput
|
|
987
|
+
SENSITIVE: []
|
|
988
|
+
end
|
|
989
|
+
|
|
990
|
+
class EpisodicOverrideConsolidationConfigurationInput
|
|
991
|
+
attr_accessor append_to_prompt: ::String
|
|
992
|
+
attr_accessor model_id: ::String
|
|
993
|
+
SENSITIVE: [:append_to_prompt]
|
|
994
|
+
end
|
|
995
|
+
|
|
996
|
+
class EpisodicOverrideExtractionConfigurationInput
|
|
997
|
+
attr_accessor append_to_prompt: ::String
|
|
998
|
+
attr_accessor model_id: ::String
|
|
999
|
+
SENSITIVE: [:append_to_prompt]
|
|
1000
|
+
end
|
|
1001
|
+
|
|
1002
|
+
class EpisodicOverrideReflectionConfigurationInput
|
|
1003
|
+
attr_accessor append_to_prompt: ::String
|
|
1004
|
+
attr_accessor model_id: ::String
|
|
1005
|
+
attr_accessor namespaces: ::Array[::String]
|
|
1006
|
+
SENSITIVE: [:append_to_prompt]
|
|
1007
|
+
end
|
|
1008
|
+
|
|
1009
|
+
class EpisodicReflectionConfiguration
|
|
1010
|
+
attr_accessor namespaces: ::Array[::String]
|
|
1011
|
+
SENSITIVE: []
|
|
1012
|
+
end
|
|
1013
|
+
|
|
1014
|
+
class EpisodicReflectionConfigurationInput
|
|
1015
|
+
attr_accessor namespaces: ::Array[::String]
|
|
1016
|
+
SENSITIVE: []
|
|
1017
|
+
end
|
|
1018
|
+
|
|
1019
|
+
class EpisodicReflectionOverride
|
|
1020
|
+
attr_accessor append_to_prompt: ::String
|
|
1021
|
+
attr_accessor model_id: ::String
|
|
1022
|
+
attr_accessor namespaces: ::Array[::String]
|
|
1023
|
+
SENSITIVE: [:append_to_prompt]
|
|
1024
|
+
end
|
|
1025
|
+
|
|
1026
|
+
class EvaluatorConfig
|
|
1027
|
+
attr_accessor llm_as_a_judge: Types::LlmAsAJudgeEvaluatorConfig
|
|
1028
|
+
attr_accessor unknown: untyped
|
|
1029
|
+
SENSITIVE: []
|
|
1030
|
+
|
|
1031
|
+
class LlmAsAJudge < EvaluatorConfig
|
|
1032
|
+
end
|
|
1033
|
+
class Unknown < EvaluatorConfig
|
|
1034
|
+
end
|
|
1035
|
+
end
|
|
1036
|
+
|
|
1037
|
+
class EvaluatorModelConfig
|
|
1038
|
+
attr_accessor bedrock_evaluator_model_config: Types::BedrockEvaluatorModelConfig
|
|
1039
|
+
attr_accessor unknown: untyped
|
|
1040
|
+
SENSITIVE: []
|
|
1041
|
+
|
|
1042
|
+
class BedrockEvaluatorModelConfig < EvaluatorModelConfig
|
|
1043
|
+
end
|
|
1044
|
+
class Unknown < EvaluatorModelConfig
|
|
1045
|
+
end
|
|
1046
|
+
end
|
|
1047
|
+
|
|
1048
|
+
class EvaluatorReference
|
|
1049
|
+
attr_accessor evaluator_id: ::String
|
|
1050
|
+
attr_accessor unknown: untyped
|
|
1051
|
+
SENSITIVE: []
|
|
1052
|
+
|
|
1053
|
+
class EvaluatorId < EvaluatorReference
|
|
1054
|
+
end
|
|
1055
|
+
class Unknown < EvaluatorReference
|
|
1056
|
+
end
|
|
1057
|
+
end
|
|
1058
|
+
|
|
1059
|
+
class EvaluatorSummary
|
|
1060
|
+
attr_accessor evaluator_arn: ::String
|
|
1061
|
+
attr_accessor evaluator_id: ::String
|
|
1062
|
+
attr_accessor evaluator_name: ::String
|
|
1063
|
+
attr_accessor description: ::String
|
|
1064
|
+
attr_accessor evaluator_type: ("Builtin" | "Custom")
|
|
1065
|
+
attr_accessor level: ("TOOL_CALL" | "TRACE" | "SESSION")
|
|
1066
|
+
attr_accessor status: ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
|
|
1067
|
+
attr_accessor created_at: ::Time
|
|
1068
|
+
attr_accessor updated_at: ::Time
|
|
1069
|
+
attr_accessor locked_for_modification: bool
|
|
1070
|
+
SENSITIVE: [:description]
|
|
1071
|
+
end
|
|
1072
|
+
|
|
665
1073
|
class ExtractionConfiguration
|
|
666
1074
|
attr_accessor custom_extraction_configuration: Types::CustomExtractionConfiguration
|
|
667
1075
|
attr_accessor unknown: untyped
|
|
@@ -673,6 +1081,36 @@ module Aws::BedrockAgentCoreControl
|
|
|
673
1081
|
end
|
|
674
1082
|
end
|
|
675
1083
|
|
|
1084
|
+
class Filter
|
|
1085
|
+
attr_accessor key: ::String
|
|
1086
|
+
attr_accessor operator: ("Equals" | "NotEquals" | "GreaterThan" | "LessThan" | "GreaterThanOrEqual" | "LessThanOrEqual" | "Contains" | "NotContains")
|
|
1087
|
+
attr_accessor value: Types::FilterValue
|
|
1088
|
+
SENSITIVE: []
|
|
1089
|
+
end
|
|
1090
|
+
|
|
1091
|
+
class FilterValue
|
|
1092
|
+
attr_accessor string_value: ::String
|
|
1093
|
+
attr_accessor double_value: ::Float
|
|
1094
|
+
attr_accessor boolean_value: bool
|
|
1095
|
+
attr_accessor unknown: untyped
|
|
1096
|
+
SENSITIVE: []
|
|
1097
|
+
|
|
1098
|
+
class StringValue < FilterValue
|
|
1099
|
+
end
|
|
1100
|
+
class DoubleValue < FilterValue
|
|
1101
|
+
end
|
|
1102
|
+
class BooleanValue < FilterValue
|
|
1103
|
+
end
|
|
1104
|
+
class Unknown < FilterValue
|
|
1105
|
+
end
|
|
1106
|
+
end
|
|
1107
|
+
|
|
1108
|
+
class Finding
|
|
1109
|
+
attr_accessor type: ("VALID" | "INVALID" | "NOT_TRANSLATABLE" | "ALLOW_ALL" | "ALLOW_NONE" | "DENY_ALL" | "DENY_NONE")
|
|
1110
|
+
attr_accessor description: ::String
|
|
1111
|
+
SENSITIVE: []
|
|
1112
|
+
end
|
|
1113
|
+
|
|
676
1114
|
class GatewayInterceptorConfiguration
|
|
677
1115
|
attr_accessor interceptor: Types::InterceptorConfiguration
|
|
678
1116
|
attr_accessor interception_points: ::Array[("REQUEST" | "RESPONSE")]
|
|
@@ -680,6 +1118,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
680
1118
|
SENSITIVE: []
|
|
681
1119
|
end
|
|
682
1120
|
|
|
1121
|
+
class GatewayPolicyEngineConfiguration
|
|
1122
|
+
attr_accessor arn: ::String
|
|
1123
|
+
attr_accessor mode: ("LOG_ONLY" | "ENFORCE")
|
|
1124
|
+
SENSITIVE: []
|
|
1125
|
+
end
|
|
1126
|
+
|
|
683
1127
|
class GatewayProtocolConfiguration
|
|
684
1128
|
attr_accessor mcp: Types::MCPGatewayConfiguration
|
|
685
1129
|
attr_accessor unknown: untyped
|
|
@@ -756,6 +1200,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
756
1200
|
attr_accessor network_configuration: Types::NetworkConfiguration
|
|
757
1201
|
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
|
758
1202
|
attr_accessor lifecycle_configuration: Types::LifecycleConfiguration
|
|
1203
|
+
attr_accessor failure_reason: ::String
|
|
759
1204
|
attr_accessor description: ::String
|
|
760
1205
|
attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
|
|
761
1206
|
attr_accessor agent_runtime_artifact: Types::AgentRuntimeArtifact
|
|
@@ -820,6 +1265,25 @@ module Aws::BedrockAgentCoreControl
|
|
|
820
1265
|
SENSITIVE: [:description]
|
|
821
1266
|
end
|
|
822
1267
|
|
|
1268
|
+
class GetEvaluatorRequest
|
|
1269
|
+
attr_accessor evaluator_id: ::String
|
|
1270
|
+
SENSITIVE: []
|
|
1271
|
+
end
|
|
1272
|
+
|
|
1273
|
+
class GetEvaluatorResponse
|
|
1274
|
+
attr_accessor evaluator_arn: ::String
|
|
1275
|
+
attr_accessor evaluator_id: ::String
|
|
1276
|
+
attr_accessor evaluator_name: ::String
|
|
1277
|
+
attr_accessor description: ::String
|
|
1278
|
+
attr_accessor evaluator_config: Types::EvaluatorConfig
|
|
1279
|
+
attr_accessor level: ("TOOL_CALL" | "TRACE" | "SESSION")
|
|
1280
|
+
attr_accessor status: ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
|
|
1281
|
+
attr_accessor created_at: ::Time
|
|
1282
|
+
attr_accessor updated_at: ::Time
|
|
1283
|
+
attr_accessor locked_for_modification: bool
|
|
1284
|
+
SENSITIVE: [:description]
|
|
1285
|
+
end
|
|
1286
|
+
|
|
823
1287
|
class GetGatewayRequest
|
|
824
1288
|
attr_accessor gateway_identifier: ::String
|
|
825
1289
|
SENSITIVE: []
|
|
@@ -842,56 +1306,147 @@ module Aws::BedrockAgentCoreControl
|
|
|
842
1306
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
|
843
1307
|
attr_accessor kms_key_arn: ::String
|
|
844
1308
|
attr_accessor interceptor_configurations: ::Array[Types::GatewayInterceptorConfiguration]
|
|
1309
|
+
attr_accessor policy_engine_configuration: Types::GatewayPolicyEngineConfiguration
|
|
845
1310
|
attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
|
|
846
1311
|
attr_accessor exception_level: ("DEBUG")
|
|
847
1312
|
SENSITIVE: [:name, :description]
|
|
848
1313
|
end
|
|
849
1314
|
|
|
850
|
-
class GetGatewayTargetRequest
|
|
851
|
-
attr_accessor gateway_identifier: ::String
|
|
852
|
-
attr_accessor target_id: ::String
|
|
1315
|
+
class GetGatewayTargetRequest
|
|
1316
|
+
attr_accessor gateway_identifier: ::String
|
|
1317
|
+
attr_accessor target_id: ::String
|
|
1318
|
+
SENSITIVE: []
|
|
1319
|
+
end
|
|
1320
|
+
|
|
1321
|
+
class GetGatewayTargetResponse
|
|
1322
|
+
attr_accessor gateway_arn: ::String
|
|
1323
|
+
attr_accessor target_id: ::String
|
|
1324
|
+
attr_accessor created_at: ::Time
|
|
1325
|
+
attr_accessor updated_at: ::Time
|
|
1326
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED" | "SYNCHRONIZING" | "SYNCHRONIZE_UNSUCCESSFUL")
|
|
1327
|
+
attr_accessor status_reasons: ::Array[::String]
|
|
1328
|
+
attr_accessor name: ::String
|
|
1329
|
+
attr_accessor description: ::String
|
|
1330
|
+
attr_accessor target_configuration: Types::TargetConfiguration
|
|
1331
|
+
attr_accessor credential_provider_configurations: ::Array[Types::CredentialProviderConfiguration]
|
|
1332
|
+
attr_accessor last_synchronized_at: ::Time
|
|
1333
|
+
SENSITIVE: [:name, :description]
|
|
1334
|
+
end
|
|
1335
|
+
|
|
1336
|
+
class GetMemoryInput
|
|
1337
|
+
attr_accessor memory_id: ::String
|
|
1338
|
+
SENSITIVE: []
|
|
1339
|
+
end
|
|
1340
|
+
|
|
1341
|
+
class GetMemoryOutput
|
|
1342
|
+
attr_accessor memory: Types::Memory
|
|
1343
|
+
SENSITIVE: []
|
|
1344
|
+
end
|
|
1345
|
+
|
|
1346
|
+
class GetOauth2CredentialProviderRequest
|
|
1347
|
+
attr_accessor name: ::String
|
|
1348
|
+
SENSITIVE: []
|
|
1349
|
+
end
|
|
1350
|
+
|
|
1351
|
+
class GetOauth2CredentialProviderResponse
|
|
1352
|
+
attr_accessor client_secret_arn: Types::Secret
|
|
1353
|
+
attr_accessor name: ::String
|
|
1354
|
+
attr_accessor credential_provider_arn: ::String
|
|
1355
|
+
attr_accessor credential_provider_vendor: ("GoogleOauth2" | "GithubOauth2" | "SlackOauth2" | "SalesforceOauth2" | "MicrosoftOauth2" | "CustomOauth2" | "AtlassianOauth2" | "LinkedinOauth2" | "XOauth2" | "OktaOauth2" | "OneLoginOauth2" | "PingOneOauth2" | "FacebookOauth2" | "YandexOauth2" | "RedditOauth2" | "ZoomOauth2" | "TwitchOauth2" | "SpotifyOauth2" | "DropboxOauth2" | "NotionOauth2" | "HubspotOauth2" | "CyberArkOauth2" | "FusionAuthOauth2" | "Auth0Oauth2" | "CognitoOauth2")
|
|
1356
|
+
attr_accessor callback_url: ::String
|
|
1357
|
+
attr_accessor oauth2_provider_config_output: Types::Oauth2ProviderConfigOutput
|
|
1358
|
+
attr_accessor created_time: ::Time
|
|
1359
|
+
attr_accessor last_updated_time: ::Time
|
|
1360
|
+
SENSITIVE: []
|
|
1361
|
+
end
|
|
1362
|
+
|
|
1363
|
+
class GetOnlineEvaluationConfigRequest
|
|
1364
|
+
attr_accessor online_evaluation_config_id: ::String
|
|
1365
|
+
SENSITIVE: []
|
|
1366
|
+
end
|
|
1367
|
+
|
|
1368
|
+
class GetOnlineEvaluationConfigResponse
|
|
1369
|
+
attr_accessor online_evaluation_config_arn: ::String
|
|
1370
|
+
attr_accessor online_evaluation_config_id: ::String
|
|
1371
|
+
attr_accessor online_evaluation_config_name: ::String
|
|
1372
|
+
attr_accessor description: ::String
|
|
1373
|
+
attr_accessor rule: Types::Rule
|
|
1374
|
+
attr_accessor data_source_config: Types::DataSourceConfig
|
|
1375
|
+
attr_accessor evaluators: ::Array[Types::EvaluatorReference]
|
|
1376
|
+
attr_accessor output_config: Types::OutputConfig
|
|
1377
|
+
attr_accessor evaluation_execution_role_arn: ::String
|
|
1378
|
+
attr_accessor status: ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
|
|
1379
|
+
attr_accessor execution_status: ("ENABLED" | "DISABLED")
|
|
1380
|
+
attr_accessor created_at: ::Time
|
|
1381
|
+
attr_accessor updated_at: ::Time
|
|
1382
|
+
attr_accessor failure_reason: ::String
|
|
1383
|
+
SENSITIVE: [:description]
|
|
1384
|
+
end
|
|
1385
|
+
|
|
1386
|
+
class GetPolicyEngineRequest
|
|
1387
|
+
attr_accessor policy_engine_id: ::String
|
|
853
1388
|
SENSITIVE: []
|
|
854
1389
|
end
|
|
855
1390
|
|
|
856
|
-
class
|
|
857
|
-
attr_accessor
|
|
858
|
-
attr_accessor
|
|
1391
|
+
class GetPolicyEngineResponse
|
|
1392
|
+
attr_accessor policy_engine_id: ::String
|
|
1393
|
+
attr_accessor name: ::String
|
|
1394
|
+
attr_accessor description: ::String
|
|
859
1395
|
attr_accessor created_at: ::Time
|
|
860
1396
|
attr_accessor updated_at: ::Time
|
|
861
|
-
attr_accessor
|
|
1397
|
+
attr_accessor policy_engine_arn: ::String
|
|
1398
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
862
1399
|
attr_accessor status_reasons: ::Array[::String]
|
|
863
|
-
|
|
864
|
-
attr_accessor description: ::String
|
|
865
|
-
attr_accessor target_configuration: Types::TargetConfiguration
|
|
866
|
-
attr_accessor credential_provider_configurations: ::Array[Types::CredentialProviderConfiguration]
|
|
867
|
-
attr_accessor last_synchronized_at: ::Time
|
|
868
|
-
SENSITIVE: [:name, :description]
|
|
1400
|
+
SENSITIVE: [:description]
|
|
869
1401
|
end
|
|
870
1402
|
|
|
871
|
-
class
|
|
872
|
-
attr_accessor
|
|
1403
|
+
class GetPolicyGenerationRequest
|
|
1404
|
+
attr_accessor policy_generation_id: ::String
|
|
1405
|
+
attr_accessor policy_engine_id: ::String
|
|
873
1406
|
SENSITIVE: []
|
|
874
1407
|
end
|
|
875
1408
|
|
|
876
|
-
class
|
|
877
|
-
attr_accessor
|
|
1409
|
+
class GetPolicyGenerationResponse
|
|
1410
|
+
attr_accessor policy_engine_id: ::String
|
|
1411
|
+
attr_accessor policy_generation_id: ::String
|
|
1412
|
+
attr_accessor name: ::String
|
|
1413
|
+
attr_accessor policy_generation_arn: ::String
|
|
1414
|
+
attr_accessor resource: Types::Resource
|
|
1415
|
+
attr_accessor created_at: ::Time
|
|
1416
|
+
attr_accessor updated_at: ::Time
|
|
1417
|
+
attr_accessor status: ("GENERATING" | "GENERATED" | "GENERATE_FAILED" | "DELETE_FAILED")
|
|
1418
|
+
attr_accessor status_reasons: ::Array[::String]
|
|
1419
|
+
attr_accessor findings: ::String
|
|
878
1420
|
SENSITIVE: []
|
|
879
1421
|
end
|
|
880
1422
|
|
|
881
|
-
class
|
|
882
|
-
attr_accessor
|
|
1423
|
+
class GetPolicyRequest
|
|
1424
|
+
attr_accessor policy_engine_id: ::String
|
|
1425
|
+
attr_accessor policy_id: ::String
|
|
883
1426
|
SENSITIVE: []
|
|
884
1427
|
end
|
|
885
1428
|
|
|
886
|
-
class
|
|
887
|
-
attr_accessor
|
|
1429
|
+
class GetPolicyResponse
|
|
1430
|
+
attr_accessor policy_id: ::String
|
|
888
1431
|
attr_accessor name: ::String
|
|
889
|
-
attr_accessor
|
|
890
|
-
attr_accessor
|
|
891
|
-
attr_accessor
|
|
892
|
-
attr_accessor
|
|
893
|
-
attr_accessor
|
|
894
|
-
attr_accessor
|
|
1432
|
+
attr_accessor policy_engine_id: ::String
|
|
1433
|
+
attr_accessor definition: Types::PolicyDefinition
|
|
1434
|
+
attr_accessor description: ::String
|
|
1435
|
+
attr_accessor created_at: ::Time
|
|
1436
|
+
attr_accessor updated_at: ::Time
|
|
1437
|
+
attr_accessor policy_arn: ::String
|
|
1438
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
1439
|
+
attr_accessor status_reasons: ::Array[::String]
|
|
1440
|
+
SENSITIVE: [:description]
|
|
1441
|
+
end
|
|
1442
|
+
|
|
1443
|
+
class GetResourcePolicyRequest
|
|
1444
|
+
attr_accessor resource_arn: ::String
|
|
1445
|
+
SENSITIVE: []
|
|
1446
|
+
end
|
|
1447
|
+
|
|
1448
|
+
class GetResourcePolicyResponse
|
|
1449
|
+
attr_accessor policy: ::String
|
|
895
1450
|
SENSITIVE: []
|
|
896
1451
|
end
|
|
897
1452
|
|
|
@@ -960,6 +1515,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
960
1515
|
SENSITIVE: []
|
|
961
1516
|
end
|
|
962
1517
|
|
|
1518
|
+
class InferenceConfiguration
|
|
1519
|
+
attr_accessor max_tokens: ::Integer
|
|
1520
|
+
attr_accessor temperature: ::Float
|
|
1521
|
+
attr_accessor top_p: ::Float
|
|
1522
|
+
attr_accessor stop_sequences: ::Array[::String]
|
|
1523
|
+
SENSITIVE: []
|
|
1524
|
+
end
|
|
1525
|
+
|
|
963
1526
|
class InterceptorConfiguration
|
|
964
1527
|
attr_accessor lambda: Types::LambdaInterceptorConfiguration
|
|
965
1528
|
attr_accessor unknown: untyped
|
|
@@ -1098,6 +1661,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
1098
1661
|
SENSITIVE: []
|
|
1099
1662
|
end
|
|
1100
1663
|
|
|
1664
|
+
class ListEvaluatorsRequest
|
|
1665
|
+
attr_accessor next_token: ::String
|
|
1666
|
+
attr_accessor max_results: ::Integer
|
|
1667
|
+
SENSITIVE: []
|
|
1668
|
+
end
|
|
1669
|
+
|
|
1670
|
+
class ListEvaluatorsResponse
|
|
1671
|
+
attr_accessor evaluators: ::Array[Types::EvaluatorSummary]
|
|
1672
|
+
attr_accessor next_token: ::String
|
|
1673
|
+
SENSITIVE: []
|
|
1674
|
+
end
|
|
1675
|
+
|
|
1101
1676
|
class ListGatewayTargetsRequest
|
|
1102
1677
|
attr_accessor gateway_identifier: ::String
|
|
1103
1678
|
attr_accessor max_results: ::Integer
|
|
@@ -1147,6 +1722,71 @@ module Aws::BedrockAgentCoreControl
|
|
|
1147
1722
|
SENSITIVE: []
|
|
1148
1723
|
end
|
|
1149
1724
|
|
|
1725
|
+
class ListOnlineEvaluationConfigsRequest
|
|
1726
|
+
attr_accessor next_token: ::String
|
|
1727
|
+
attr_accessor max_results: ::Integer
|
|
1728
|
+
SENSITIVE: []
|
|
1729
|
+
end
|
|
1730
|
+
|
|
1731
|
+
class ListOnlineEvaluationConfigsResponse
|
|
1732
|
+
attr_accessor online_evaluation_configs: ::Array[Types::OnlineEvaluationConfigSummary]
|
|
1733
|
+
attr_accessor next_token: ::String
|
|
1734
|
+
SENSITIVE: []
|
|
1735
|
+
end
|
|
1736
|
+
|
|
1737
|
+
class ListPoliciesRequest
|
|
1738
|
+
attr_accessor next_token: ::String
|
|
1739
|
+
attr_accessor max_results: ::Integer
|
|
1740
|
+
attr_accessor policy_engine_id: ::String
|
|
1741
|
+
attr_accessor target_resource_scope: ::String
|
|
1742
|
+
SENSITIVE: []
|
|
1743
|
+
end
|
|
1744
|
+
|
|
1745
|
+
class ListPoliciesResponse
|
|
1746
|
+
attr_accessor policies: ::Array[Types::Policy]
|
|
1747
|
+
attr_accessor next_token: ::String
|
|
1748
|
+
SENSITIVE: []
|
|
1749
|
+
end
|
|
1750
|
+
|
|
1751
|
+
class ListPolicyEnginesRequest
|
|
1752
|
+
attr_accessor next_token: ::String
|
|
1753
|
+
attr_accessor max_results: ::Integer
|
|
1754
|
+
SENSITIVE: []
|
|
1755
|
+
end
|
|
1756
|
+
|
|
1757
|
+
class ListPolicyEnginesResponse
|
|
1758
|
+
attr_accessor policy_engines: ::Array[Types::PolicyEngine]
|
|
1759
|
+
attr_accessor next_token: ::String
|
|
1760
|
+
SENSITIVE: []
|
|
1761
|
+
end
|
|
1762
|
+
|
|
1763
|
+
class ListPolicyGenerationAssetsRequest
|
|
1764
|
+
attr_accessor policy_generation_id: ::String
|
|
1765
|
+
attr_accessor policy_engine_id: ::String
|
|
1766
|
+
attr_accessor next_token: ::String
|
|
1767
|
+
attr_accessor max_results: ::Integer
|
|
1768
|
+
SENSITIVE: []
|
|
1769
|
+
end
|
|
1770
|
+
|
|
1771
|
+
class ListPolicyGenerationAssetsResponse
|
|
1772
|
+
attr_accessor policy_generation_assets: ::Array[Types::PolicyGenerationAsset]
|
|
1773
|
+
attr_accessor next_token: ::String
|
|
1774
|
+
SENSITIVE: []
|
|
1775
|
+
end
|
|
1776
|
+
|
|
1777
|
+
class ListPolicyGenerationsRequest
|
|
1778
|
+
attr_accessor next_token: ::String
|
|
1779
|
+
attr_accessor max_results: ::Integer
|
|
1780
|
+
attr_accessor policy_engine_id: ::String
|
|
1781
|
+
SENSITIVE: []
|
|
1782
|
+
end
|
|
1783
|
+
|
|
1784
|
+
class ListPolicyGenerationsResponse
|
|
1785
|
+
attr_accessor policy_generations: ::Array[Types::PolicyGeneration]
|
|
1786
|
+
attr_accessor next_token: ::String
|
|
1787
|
+
SENSITIVE: []
|
|
1788
|
+
end
|
|
1789
|
+
|
|
1150
1790
|
class ListTagsForResourceRequest
|
|
1151
1791
|
attr_accessor resource_arn: ::String
|
|
1152
1792
|
SENSITIVE: []
|
|
@@ -1169,6 +1809,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
1169
1809
|
SENSITIVE: []
|
|
1170
1810
|
end
|
|
1171
1811
|
|
|
1812
|
+
class LlmAsAJudgeEvaluatorConfig
|
|
1813
|
+
attr_accessor instructions: ::String
|
|
1814
|
+
attr_accessor rating_scale: Types::RatingScale
|
|
1815
|
+
attr_accessor model_config: Types::EvaluatorModelConfig
|
|
1816
|
+
SENSITIVE: [:instructions]
|
|
1817
|
+
end
|
|
1818
|
+
|
|
1172
1819
|
class MCPGatewayConfiguration
|
|
1173
1820
|
attr_accessor supported_versions: ::Array[::String]
|
|
1174
1821
|
attr_accessor instructions: ::String
|
|
@@ -1192,6 +1839,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1192
1839
|
attr_accessor smithy_model: Types::ApiSchemaConfiguration
|
|
1193
1840
|
attr_accessor lambda: Types::McpLambdaTargetConfiguration
|
|
1194
1841
|
attr_accessor mcp_server: Types::McpServerTargetConfiguration
|
|
1842
|
+
attr_accessor api_gateway: Types::ApiGatewayTargetConfiguration
|
|
1195
1843
|
attr_accessor unknown: untyped
|
|
1196
1844
|
SENSITIVE: []
|
|
1197
1845
|
|
|
@@ -1203,6 +1851,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
1203
1851
|
end
|
|
1204
1852
|
class McpServer < McpTargetConfiguration
|
|
1205
1853
|
end
|
|
1854
|
+
class ApiGateway < McpTargetConfiguration
|
|
1855
|
+
end
|
|
1206
1856
|
class Unknown < McpTargetConfiguration
|
|
1207
1857
|
end
|
|
1208
1858
|
end
|
|
@@ -1228,7 +1878,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1228
1878
|
attr_accessor name: ::String
|
|
1229
1879
|
attr_accessor description: ::String
|
|
1230
1880
|
attr_accessor configuration: Types::StrategyConfiguration
|
|
1231
|
-
attr_accessor type: ("SEMANTIC" | "SUMMARIZATION" | "USER_PREFERENCE" | "CUSTOM")
|
|
1881
|
+
attr_accessor type: ("SEMANTIC" | "SUMMARIZATION" | "USER_PREFERENCE" | "CUSTOM" | "EPISODIC")
|
|
1232
1882
|
attr_accessor namespaces: ::Array[::String]
|
|
1233
1883
|
attr_accessor created_at: ::Time
|
|
1234
1884
|
attr_accessor updated_at: ::Time
|
|
@@ -1241,6 +1891,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1241
1891
|
attr_accessor summary_memory_strategy: Types::SummaryMemoryStrategyInput
|
|
1242
1892
|
attr_accessor user_preference_memory_strategy: Types::UserPreferenceMemoryStrategyInput
|
|
1243
1893
|
attr_accessor custom_memory_strategy: Types::CustomMemoryStrategyInput
|
|
1894
|
+
attr_accessor episodic_memory_strategy: Types::EpisodicMemoryStrategyInput
|
|
1244
1895
|
attr_accessor unknown: untyped
|
|
1245
1896
|
SENSITIVE: []
|
|
1246
1897
|
|
|
@@ -1252,6 +1903,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
1252
1903
|
end
|
|
1253
1904
|
class CustomMemoryStrategy < MemoryStrategyInput
|
|
1254
1905
|
end
|
|
1906
|
+
class EpisodicMemoryStrategy < MemoryStrategyInput
|
|
1907
|
+
end
|
|
1255
1908
|
class Unknown < MemoryStrategyInput
|
|
1256
1909
|
end
|
|
1257
1910
|
end
|
|
@@ -1331,6 +1984,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
1331
1984
|
SENSITIVE: [:description]
|
|
1332
1985
|
end
|
|
1333
1986
|
|
|
1987
|
+
class ModifyReflectionConfiguration
|
|
1988
|
+
attr_accessor episodic_reflection_configuration: Types::EpisodicReflectionConfigurationInput
|
|
1989
|
+
attr_accessor custom_reflection_configuration: Types::CustomReflectionConfigurationInput
|
|
1990
|
+
attr_accessor unknown: untyped
|
|
1991
|
+
SENSITIVE: []
|
|
1992
|
+
|
|
1993
|
+
class EpisodicReflectionConfiguration < ModifyReflectionConfiguration
|
|
1994
|
+
end
|
|
1995
|
+
class CustomReflectionConfiguration < ModifyReflectionConfiguration
|
|
1996
|
+
end
|
|
1997
|
+
class Unknown < ModifyReflectionConfiguration
|
|
1998
|
+
end
|
|
1999
|
+
end
|
|
2000
|
+
|
|
1334
2001
|
class ModifySelfManagedConfiguration
|
|
1335
2002
|
attr_accessor trigger_conditions: ::Array[Types::TriggerConditionInput]
|
|
1336
2003
|
attr_accessor invocation_configuration: Types::ModifyInvocationConfigurationInput
|
|
@@ -1341,6 +2008,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1341
2008
|
class ModifyStrategyConfiguration
|
|
1342
2009
|
attr_accessor extraction: Types::ModifyExtractionConfiguration
|
|
1343
2010
|
attr_accessor consolidation: Types::ModifyConsolidationConfiguration
|
|
2011
|
+
attr_accessor reflection: Types::ModifyReflectionConfiguration
|
|
1344
2012
|
attr_accessor self_managed_configuration: Types::ModifySelfManagedConfiguration
|
|
1345
2013
|
SENSITIVE: []
|
|
1346
2014
|
end
|
|
@@ -1351,10 +2019,19 @@ module Aws::BedrockAgentCoreControl
|
|
|
1351
2019
|
SENSITIVE: []
|
|
1352
2020
|
end
|
|
1353
2021
|
|
|
2022
|
+
class NumericalScaleDefinition
|
|
2023
|
+
attr_accessor definition: ::String
|
|
2024
|
+
attr_accessor value: ::Float
|
|
2025
|
+
attr_accessor label: ::String
|
|
2026
|
+
SENSITIVE: []
|
|
2027
|
+
end
|
|
2028
|
+
|
|
1354
2029
|
class OAuthCredentialProvider
|
|
1355
2030
|
attr_accessor provider_arn: ::String
|
|
1356
2031
|
attr_accessor scopes: ::Array[::String]
|
|
1357
2032
|
attr_accessor custom_parameters: ::Hash[::String, ::String]
|
|
2033
|
+
attr_accessor grant_type: ("CLIENT_CREDENTIALS" | "AUTHORIZATION_CODE")
|
|
2034
|
+
attr_accessor default_return_url: ::String
|
|
1358
2035
|
SENSITIVE: []
|
|
1359
2036
|
end
|
|
1360
2037
|
|
|
@@ -1460,17 +2137,133 @@ module Aws::BedrockAgentCoreControl
|
|
|
1460
2137
|
end
|
|
1461
2138
|
end
|
|
1462
2139
|
|
|
2140
|
+
class OnlineEvaluationConfigSummary
|
|
2141
|
+
attr_accessor online_evaluation_config_arn: ::String
|
|
2142
|
+
attr_accessor online_evaluation_config_id: ::String
|
|
2143
|
+
attr_accessor online_evaluation_config_name: ::String
|
|
2144
|
+
attr_accessor description: ::String
|
|
2145
|
+
attr_accessor status: ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
|
|
2146
|
+
attr_accessor execution_status: ("ENABLED" | "DISABLED")
|
|
2147
|
+
attr_accessor created_at: ::Time
|
|
2148
|
+
attr_accessor updated_at: ::Time
|
|
2149
|
+
attr_accessor failure_reason: ::String
|
|
2150
|
+
SENSITIVE: [:description]
|
|
2151
|
+
end
|
|
2152
|
+
|
|
2153
|
+
class OutputConfig
|
|
2154
|
+
attr_accessor cloud_watch_config: Types::CloudWatchOutputConfig
|
|
2155
|
+
SENSITIVE: []
|
|
2156
|
+
end
|
|
2157
|
+
|
|
2158
|
+
class Policy
|
|
2159
|
+
attr_accessor policy_id: ::String
|
|
2160
|
+
attr_accessor name: ::String
|
|
2161
|
+
attr_accessor policy_engine_id: ::String
|
|
2162
|
+
attr_accessor definition: Types::PolicyDefinition
|
|
2163
|
+
attr_accessor description: ::String
|
|
2164
|
+
attr_accessor created_at: ::Time
|
|
2165
|
+
attr_accessor updated_at: ::Time
|
|
2166
|
+
attr_accessor policy_arn: ::String
|
|
2167
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
2168
|
+
attr_accessor status_reasons: ::Array[::String]
|
|
2169
|
+
SENSITIVE: [:description]
|
|
2170
|
+
end
|
|
2171
|
+
|
|
2172
|
+
class PolicyDefinition
|
|
2173
|
+
attr_accessor cedar: Types::CedarPolicy
|
|
2174
|
+
attr_accessor unknown: untyped
|
|
2175
|
+
SENSITIVE: []
|
|
2176
|
+
|
|
2177
|
+
class Cedar < PolicyDefinition
|
|
2178
|
+
end
|
|
2179
|
+
class Unknown < PolicyDefinition
|
|
2180
|
+
end
|
|
2181
|
+
end
|
|
2182
|
+
|
|
2183
|
+
class PolicyEngine
|
|
2184
|
+
attr_accessor policy_engine_id: ::String
|
|
2185
|
+
attr_accessor name: ::String
|
|
2186
|
+
attr_accessor description: ::String
|
|
2187
|
+
attr_accessor created_at: ::Time
|
|
2188
|
+
attr_accessor updated_at: ::Time
|
|
2189
|
+
attr_accessor policy_engine_arn: ::String
|
|
2190
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
2191
|
+
attr_accessor status_reasons: ::Array[::String]
|
|
2192
|
+
SENSITIVE: [:description]
|
|
2193
|
+
end
|
|
2194
|
+
|
|
2195
|
+
class PolicyGeneration
|
|
2196
|
+
attr_accessor policy_engine_id: ::String
|
|
2197
|
+
attr_accessor policy_generation_id: ::String
|
|
2198
|
+
attr_accessor name: ::String
|
|
2199
|
+
attr_accessor policy_generation_arn: ::String
|
|
2200
|
+
attr_accessor resource: Types::Resource
|
|
2201
|
+
attr_accessor created_at: ::Time
|
|
2202
|
+
attr_accessor updated_at: ::Time
|
|
2203
|
+
attr_accessor status: ("GENERATING" | "GENERATED" | "GENERATE_FAILED" | "DELETE_FAILED")
|
|
2204
|
+
attr_accessor status_reasons: ::Array[::String]
|
|
2205
|
+
attr_accessor findings: ::String
|
|
2206
|
+
SENSITIVE: []
|
|
2207
|
+
end
|
|
2208
|
+
|
|
2209
|
+
class PolicyGenerationAsset
|
|
2210
|
+
attr_accessor policy_generation_asset_id: ::String
|
|
2211
|
+
attr_accessor definition: Types::PolicyDefinition
|
|
2212
|
+
attr_accessor raw_text_fragment: ::String
|
|
2213
|
+
attr_accessor findings: ::Array[Types::Finding]
|
|
2214
|
+
SENSITIVE: []
|
|
2215
|
+
end
|
|
2216
|
+
|
|
1463
2217
|
class ProtocolConfiguration
|
|
1464
2218
|
attr_accessor server_protocol: ("MCP" | "HTTP" | "A2A")
|
|
1465
2219
|
SENSITIVE: []
|
|
1466
2220
|
end
|
|
1467
2221
|
|
|
2222
|
+
class PutResourcePolicyRequest
|
|
2223
|
+
attr_accessor resource_arn: ::String
|
|
2224
|
+
attr_accessor policy: ::String
|
|
2225
|
+
SENSITIVE: []
|
|
2226
|
+
end
|
|
2227
|
+
|
|
2228
|
+
class PutResourcePolicyResponse
|
|
2229
|
+
attr_accessor policy: ::String
|
|
2230
|
+
SENSITIVE: []
|
|
2231
|
+
end
|
|
2232
|
+
|
|
2233
|
+
class RatingScale
|
|
2234
|
+
attr_accessor numerical: ::Array[Types::NumericalScaleDefinition]
|
|
2235
|
+
attr_accessor categorical: ::Array[Types::CategoricalScaleDefinition]
|
|
2236
|
+
attr_accessor unknown: untyped
|
|
2237
|
+
SENSITIVE: []
|
|
2238
|
+
|
|
2239
|
+
class Numerical < RatingScale
|
|
2240
|
+
end
|
|
2241
|
+
class Categorical < RatingScale
|
|
2242
|
+
end
|
|
2243
|
+
class Unknown < RatingScale
|
|
2244
|
+
end
|
|
2245
|
+
end
|
|
2246
|
+
|
|
1468
2247
|
class RecordingConfig
|
|
1469
2248
|
attr_accessor enabled: bool
|
|
1470
2249
|
attr_accessor s3_location: Types::S3Location
|
|
1471
2250
|
SENSITIVE: []
|
|
1472
2251
|
end
|
|
1473
2252
|
|
|
2253
|
+
class ReflectionConfiguration
|
|
2254
|
+
attr_accessor custom_reflection_configuration: Types::CustomReflectionConfiguration
|
|
2255
|
+
attr_accessor episodic_reflection_configuration: Types::EpisodicReflectionConfiguration
|
|
2256
|
+
attr_accessor unknown: untyped
|
|
2257
|
+
SENSITIVE: []
|
|
2258
|
+
|
|
2259
|
+
class CustomReflectionConfiguration < ReflectionConfiguration
|
|
2260
|
+
end
|
|
2261
|
+
class EpisodicReflectionConfiguration < ReflectionConfiguration
|
|
2262
|
+
end
|
|
2263
|
+
class Unknown < ReflectionConfiguration
|
|
2264
|
+
end
|
|
2265
|
+
end
|
|
2266
|
+
|
|
1474
2267
|
class RequestHeaderConfiguration
|
|
1475
2268
|
attr_accessor request_header_allowlist: ::Array[::String]
|
|
1476
2269
|
attr_accessor unknown: untyped
|
|
@@ -1482,6 +2275,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
1482
2275
|
end
|
|
1483
2276
|
end
|
|
1484
2277
|
|
|
2278
|
+
class Resource
|
|
2279
|
+
attr_accessor arn: ::String
|
|
2280
|
+
attr_accessor unknown: untyped
|
|
2281
|
+
SENSITIVE: []
|
|
2282
|
+
|
|
2283
|
+
class Arn < Resource
|
|
2284
|
+
end
|
|
2285
|
+
class Unknown < Resource
|
|
2286
|
+
end
|
|
2287
|
+
end
|
|
2288
|
+
|
|
1485
2289
|
class ResourceLimitExceededException
|
|
1486
2290
|
attr_accessor message: ::String
|
|
1487
2291
|
SENSITIVE: []
|
|
@@ -1492,6 +2296,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
1492
2296
|
SENSITIVE: []
|
|
1493
2297
|
end
|
|
1494
2298
|
|
|
2299
|
+
class Rule
|
|
2300
|
+
attr_accessor sampling_config: Types::SamplingConfig
|
|
2301
|
+
attr_accessor filters: ::Array[Types::Filter]
|
|
2302
|
+
attr_accessor session_config: Types::SessionConfig
|
|
2303
|
+
SENSITIVE: []
|
|
2304
|
+
end
|
|
2305
|
+
|
|
1495
2306
|
class S3Configuration
|
|
1496
2307
|
attr_accessor uri: ::String
|
|
1497
2308
|
attr_accessor bucket_owner_account_id: ::String
|
|
@@ -1517,6 +2328,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
1517
2328
|
SENSITIVE: []
|
|
1518
2329
|
end
|
|
1519
2330
|
|
|
2331
|
+
class SamplingConfig
|
|
2332
|
+
attr_accessor sampling_percentage: ::Float
|
|
2333
|
+
SENSITIVE: []
|
|
2334
|
+
end
|
|
2335
|
+
|
|
1520
2336
|
class SchemaDefinition
|
|
1521
2337
|
attr_accessor type: ("string" | "number" | "object" | "array" | "boolean" | "integer")
|
|
1522
2338
|
attr_accessor properties: ::Hash[::String, Types::SchemaDefinition]
|
|
@@ -1592,6 +2408,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
1592
2408
|
SENSITIVE: []
|
|
1593
2409
|
end
|
|
1594
2410
|
|
|
2411
|
+
class SessionConfig
|
|
2412
|
+
attr_accessor session_timeout_minutes: ::Integer
|
|
2413
|
+
SENSITIVE: []
|
|
2414
|
+
end
|
|
2415
|
+
|
|
1595
2416
|
class SetTokenVaultCMKRequest
|
|
1596
2417
|
attr_accessor token_vault_id: ::String
|
|
1597
2418
|
attr_accessor kms_configuration: Types::KmsConfiguration
|
|
@@ -1617,10 +2438,34 @@ module Aws::BedrockAgentCoreControl
|
|
|
1617
2438
|
SENSITIVE: []
|
|
1618
2439
|
end
|
|
1619
2440
|
|
|
2441
|
+
class StartPolicyGenerationRequest
|
|
2442
|
+
attr_accessor policy_engine_id: ::String
|
|
2443
|
+
attr_accessor resource: Types::Resource
|
|
2444
|
+
attr_accessor content: Types::Content
|
|
2445
|
+
attr_accessor name: ::String
|
|
2446
|
+
attr_accessor client_token: ::String
|
|
2447
|
+
SENSITIVE: []
|
|
2448
|
+
end
|
|
2449
|
+
|
|
2450
|
+
class StartPolicyGenerationResponse
|
|
2451
|
+
attr_accessor policy_engine_id: ::String
|
|
2452
|
+
attr_accessor policy_generation_id: ::String
|
|
2453
|
+
attr_accessor name: ::String
|
|
2454
|
+
attr_accessor policy_generation_arn: ::String
|
|
2455
|
+
attr_accessor resource: Types::Resource
|
|
2456
|
+
attr_accessor created_at: ::Time
|
|
2457
|
+
attr_accessor updated_at: ::Time
|
|
2458
|
+
attr_accessor status: ("GENERATING" | "GENERATED" | "GENERATE_FAILED" | "DELETE_FAILED")
|
|
2459
|
+
attr_accessor status_reasons: ::Array[::String]
|
|
2460
|
+
attr_accessor findings: ::String
|
|
2461
|
+
SENSITIVE: []
|
|
2462
|
+
end
|
|
2463
|
+
|
|
1620
2464
|
class StrategyConfiguration
|
|
1621
|
-
attr_accessor type: ("SEMANTIC_OVERRIDE" | "SUMMARY_OVERRIDE" | "USER_PREFERENCE_OVERRIDE" | "SELF_MANAGED")
|
|
2465
|
+
attr_accessor type: ("SEMANTIC_OVERRIDE" | "SUMMARY_OVERRIDE" | "USER_PREFERENCE_OVERRIDE" | "SELF_MANAGED" | "EPISODIC_OVERRIDE")
|
|
1622
2466
|
attr_accessor extraction: Types::ExtractionConfiguration
|
|
1623
2467
|
attr_accessor consolidation: Types::ConsolidationConfiguration
|
|
2468
|
+
attr_accessor reflection: Types::ReflectionConfiguration
|
|
1624
2469
|
attr_accessor self_managed_configuration: Types::SelfManagedConfiguration
|
|
1625
2470
|
SENSITIVE: []
|
|
1626
2471
|
end
|
|
@@ -1851,6 +2696,23 @@ module Aws::BedrockAgentCoreControl
|
|
|
1851
2696
|
SENSITIVE: []
|
|
1852
2697
|
end
|
|
1853
2698
|
|
|
2699
|
+
class UpdateEvaluatorRequest
|
|
2700
|
+
attr_accessor client_token: ::String
|
|
2701
|
+
attr_accessor evaluator_id: ::String
|
|
2702
|
+
attr_accessor description: ::String
|
|
2703
|
+
attr_accessor evaluator_config: Types::EvaluatorConfig
|
|
2704
|
+
attr_accessor level: ("TOOL_CALL" | "TRACE" | "SESSION")
|
|
2705
|
+
SENSITIVE: [:description]
|
|
2706
|
+
end
|
|
2707
|
+
|
|
2708
|
+
class UpdateEvaluatorResponse
|
|
2709
|
+
attr_accessor evaluator_arn: ::String
|
|
2710
|
+
attr_accessor evaluator_id: ::String
|
|
2711
|
+
attr_accessor updated_at: ::Time
|
|
2712
|
+
attr_accessor status: ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
|
|
2713
|
+
SENSITIVE: []
|
|
2714
|
+
end
|
|
2715
|
+
|
|
1854
2716
|
class UpdateGatewayRequest
|
|
1855
2717
|
attr_accessor gateway_identifier: ::String
|
|
1856
2718
|
attr_accessor name: ::String
|
|
@@ -1862,6 +2724,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1862
2724
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
|
1863
2725
|
attr_accessor kms_key_arn: ::String
|
|
1864
2726
|
attr_accessor interceptor_configurations: ::Array[Types::GatewayInterceptorConfiguration]
|
|
2727
|
+
attr_accessor policy_engine_configuration: Types::GatewayPolicyEngineConfiguration
|
|
1865
2728
|
attr_accessor exception_level: ("DEBUG")
|
|
1866
2729
|
SENSITIVE: [:name, :description]
|
|
1867
2730
|
end
|
|
@@ -1883,6 +2746,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1883
2746
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
|
1884
2747
|
attr_accessor kms_key_arn: ::String
|
|
1885
2748
|
attr_accessor interceptor_configurations: ::Array[Types::GatewayInterceptorConfiguration]
|
|
2749
|
+
attr_accessor policy_engine_configuration: Types::GatewayPolicyEngineConfiguration
|
|
1886
2750
|
attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
|
|
1887
2751
|
attr_accessor exception_level: ("DEBUG")
|
|
1888
2752
|
SENSITIVE: [:name, :description]
|
|
@@ -1947,6 +2811,69 @@ module Aws::BedrockAgentCoreControl
|
|
|
1947
2811
|
SENSITIVE: []
|
|
1948
2812
|
end
|
|
1949
2813
|
|
|
2814
|
+
class UpdateOnlineEvaluationConfigRequest
|
|
2815
|
+
attr_accessor client_token: ::String
|
|
2816
|
+
attr_accessor online_evaluation_config_id: ::String
|
|
2817
|
+
attr_accessor description: ::String
|
|
2818
|
+
attr_accessor rule: Types::Rule
|
|
2819
|
+
attr_accessor data_source_config: Types::DataSourceConfig
|
|
2820
|
+
attr_accessor evaluators: ::Array[Types::EvaluatorReference]
|
|
2821
|
+
attr_accessor evaluation_execution_role_arn: ::String
|
|
2822
|
+
attr_accessor execution_status: ("ENABLED" | "DISABLED")
|
|
2823
|
+
SENSITIVE: [:description]
|
|
2824
|
+
end
|
|
2825
|
+
|
|
2826
|
+
class UpdateOnlineEvaluationConfigResponse
|
|
2827
|
+
attr_accessor online_evaluation_config_arn: ::String
|
|
2828
|
+
attr_accessor online_evaluation_config_id: ::String
|
|
2829
|
+
attr_accessor updated_at: ::Time
|
|
2830
|
+
attr_accessor status: ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
|
|
2831
|
+
attr_accessor execution_status: ("ENABLED" | "DISABLED")
|
|
2832
|
+
attr_accessor failure_reason: ::String
|
|
2833
|
+
SENSITIVE: []
|
|
2834
|
+
end
|
|
2835
|
+
|
|
2836
|
+
class UpdatePolicyEngineRequest
|
|
2837
|
+
attr_accessor policy_engine_id: ::String
|
|
2838
|
+
attr_accessor description: ::String
|
|
2839
|
+
SENSITIVE: [:description]
|
|
2840
|
+
end
|
|
2841
|
+
|
|
2842
|
+
class UpdatePolicyEngineResponse
|
|
2843
|
+
attr_accessor policy_engine_id: ::String
|
|
2844
|
+
attr_accessor name: ::String
|
|
2845
|
+
attr_accessor description: ::String
|
|
2846
|
+
attr_accessor created_at: ::Time
|
|
2847
|
+
attr_accessor updated_at: ::Time
|
|
2848
|
+
attr_accessor policy_engine_arn: ::String
|
|
2849
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
2850
|
+
attr_accessor status_reasons: ::Array[::String]
|
|
2851
|
+
SENSITIVE: [:description]
|
|
2852
|
+
end
|
|
2853
|
+
|
|
2854
|
+
class UpdatePolicyRequest
|
|
2855
|
+
attr_accessor policy_engine_id: ::String
|
|
2856
|
+
attr_accessor policy_id: ::String
|
|
2857
|
+
attr_accessor description: ::String
|
|
2858
|
+
attr_accessor definition: Types::PolicyDefinition
|
|
2859
|
+
attr_accessor validation_mode: ("FAIL_ON_ANY_FINDINGS" | "IGNORE_ALL_FINDINGS")
|
|
2860
|
+
SENSITIVE: [:description]
|
|
2861
|
+
end
|
|
2862
|
+
|
|
2863
|
+
class UpdatePolicyResponse
|
|
2864
|
+
attr_accessor policy_id: ::String
|
|
2865
|
+
attr_accessor name: ::String
|
|
2866
|
+
attr_accessor policy_engine_id: ::String
|
|
2867
|
+
attr_accessor definition: Types::PolicyDefinition
|
|
2868
|
+
attr_accessor description: ::String
|
|
2869
|
+
attr_accessor created_at: ::Time
|
|
2870
|
+
attr_accessor updated_at: ::Time
|
|
2871
|
+
attr_accessor policy_arn: ::String
|
|
2872
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
2873
|
+
attr_accessor status_reasons: ::Array[::String]
|
|
2874
|
+
SENSITIVE: [:description]
|
|
2875
|
+
end
|
|
2876
|
+
|
|
1950
2877
|
class UpdateWorkloadIdentityRequest
|
|
1951
2878
|
attr_accessor name: ::String
|
|
1952
2879
|
attr_accessor allowed_resource_oauth_2_return_urls: ::Array[::String]
|