aws-sdk-bedrockagentcorecontrol 1.52.0 → 1.54.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client.rb +951 -21
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +457 -4
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +1464 -172
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +134 -8
- data/sig/params.rbs +126 -13
- data/sig/types.rbs +351 -7
- metadata +1 -1
data/sig/types.rbs
CHANGED
|
@@ -100,6 +100,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
100
100
|
SENSITIVE: []
|
|
101
101
|
end
|
|
102
102
|
|
|
103
|
+
class AllowedWorkloadConfiguration
|
|
104
|
+
attr_accessor hosting_environments: ::Array[Types::HostingEnvironment]
|
|
105
|
+
attr_accessor workload_identities: ::Array[::String]
|
|
106
|
+
SENSITIVE: []
|
|
107
|
+
end
|
|
108
|
+
|
|
103
109
|
class ApiGatewayTargetConfiguration
|
|
104
110
|
attr_accessor rest_api_id: ::String
|
|
105
111
|
attr_accessor stage: ::String
|
|
@@ -310,6 +316,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
310
316
|
SENSITIVE: []
|
|
311
317
|
end
|
|
312
318
|
|
|
319
|
+
class ClusteringConfig
|
|
320
|
+
attr_accessor frequencies: ::Array[("DAILY" | "WEEKLY" | "MONTHLY")]
|
|
321
|
+
SENSITIVE: []
|
|
322
|
+
end
|
|
323
|
+
|
|
313
324
|
class Code
|
|
314
325
|
attr_accessor s3: Types::S3Location
|
|
315
326
|
attr_accessor unknown: untyped
|
|
@@ -445,6 +456,33 @@ module Aws::BedrockAgentCoreControl
|
|
|
445
456
|
SENSITIVE: []
|
|
446
457
|
end
|
|
447
458
|
|
|
459
|
+
class ConnectorConfiguration
|
|
460
|
+
attr_accessor name: ::String
|
|
461
|
+
attr_accessor description: ::String
|
|
462
|
+
attr_accessor parameter_values: untyped
|
|
463
|
+
attr_accessor parameter_overrides: ::Array[Types::ConnectorParameterOverride]
|
|
464
|
+
SENSITIVE: []
|
|
465
|
+
end
|
|
466
|
+
|
|
467
|
+
class ConnectorParameterOverride
|
|
468
|
+
attr_accessor path: ::String
|
|
469
|
+
attr_accessor description: ::String
|
|
470
|
+
attr_accessor visible: bool
|
|
471
|
+
SENSITIVE: []
|
|
472
|
+
end
|
|
473
|
+
|
|
474
|
+
class ConnectorSource
|
|
475
|
+
attr_accessor connector_id: ::String
|
|
476
|
+
SENSITIVE: []
|
|
477
|
+
end
|
|
478
|
+
|
|
479
|
+
class ConnectorTargetConfiguration
|
|
480
|
+
attr_accessor source: Types::ConnectorSource
|
|
481
|
+
attr_accessor enabled: ::Array[::String]
|
|
482
|
+
attr_accessor configurations: ::Array[Types::ConnectorConfiguration]
|
|
483
|
+
SENSITIVE: []
|
|
484
|
+
end
|
|
485
|
+
|
|
448
486
|
class ConsolidationConfiguration
|
|
449
487
|
attr_accessor custom_consolidation_configuration: Types::CustomConsolidationConfiguration
|
|
450
488
|
attr_accessor unknown: untyped
|
|
@@ -609,6 +647,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
609
647
|
attr_accessor branch_name: ::String
|
|
610
648
|
attr_accessor commit_message: ::String
|
|
611
649
|
attr_accessor created_by: Types::VersionCreatedBySource
|
|
650
|
+
attr_accessor kms_key_arn: ::String
|
|
612
651
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
613
652
|
SENSITIVE: [:description]
|
|
614
653
|
end
|
|
@@ -688,7 +727,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
688
727
|
attr_accessor policy_engine_configuration: Types::GatewayPolicyEngineConfiguration
|
|
689
728
|
attr_accessor exception_level: ("DEBUG")
|
|
690
729
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
691
|
-
SENSITIVE: [:
|
|
730
|
+
SENSITIVE: [:description]
|
|
692
731
|
end
|
|
693
732
|
|
|
694
733
|
class CreateGatewayResponse
|
|
@@ -707,11 +746,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
707
746
|
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
|
|
708
747
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
|
709
748
|
attr_accessor kms_key_arn: ::String
|
|
749
|
+
attr_accessor custom_transform_configuration: Types::CustomTransformConfiguration
|
|
710
750
|
attr_accessor interceptor_configurations: ::Array[Types::GatewayInterceptorConfiguration]
|
|
711
751
|
attr_accessor policy_engine_configuration: Types::GatewayPolicyEngineConfiguration
|
|
712
752
|
attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
|
|
713
753
|
attr_accessor exception_level: ("DEBUG")
|
|
714
|
-
|
|
754
|
+
attr_accessor web_acl_arn: ::String
|
|
755
|
+
attr_accessor waf_configuration: Types::WafConfiguration
|
|
756
|
+
SENSITIVE: [:description]
|
|
715
757
|
end
|
|
716
758
|
|
|
717
759
|
class CreateGatewayRuleRequest
|
|
@@ -769,6 +811,21 @@ module Aws::BedrockAgentCoreControl
|
|
|
769
811
|
SENSITIVE: [:name, :description]
|
|
770
812
|
end
|
|
771
813
|
|
|
814
|
+
class CreateHarnessEndpointRequest
|
|
815
|
+
attr_accessor harness_id: ::String
|
|
816
|
+
attr_accessor endpoint_name: ::String
|
|
817
|
+
attr_accessor target_version: ::String
|
|
818
|
+
attr_accessor description: ::String
|
|
819
|
+
attr_accessor client_token: ::String
|
|
820
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
821
|
+
SENSITIVE: []
|
|
822
|
+
end
|
|
823
|
+
|
|
824
|
+
class CreateHarnessEndpointResponse
|
|
825
|
+
attr_accessor endpoint: Types::HarnessEndpoint
|
|
826
|
+
SENSITIVE: []
|
|
827
|
+
end
|
|
828
|
+
|
|
772
829
|
class CreateHarnessRequest
|
|
773
830
|
attr_accessor harness_name: ::String
|
|
774
831
|
attr_accessor client_token: ::String
|
|
@@ -842,6 +899,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
842
899
|
attr_accessor rule: Types::Rule
|
|
843
900
|
attr_accessor data_source_config: Types::DataSourceConfig
|
|
844
901
|
attr_accessor evaluators: ::Array[Types::EvaluatorReference]
|
|
902
|
+
attr_accessor insights: ::Array[Types::Insight]
|
|
903
|
+
attr_accessor clustering_config: Types::ClusteringConfig
|
|
845
904
|
attr_accessor evaluation_execution_role_arn: ::String
|
|
846
905
|
attr_accessor enable_on_create: bool
|
|
847
906
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
@@ -948,6 +1007,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
948
1007
|
attr_accessor definition: Types::PolicyDefinition
|
|
949
1008
|
attr_accessor description: ::String
|
|
950
1009
|
attr_accessor validation_mode: ("FAIL_ON_ANY_FINDINGS" | "IGNORE_ALL_FINDINGS")
|
|
1010
|
+
attr_accessor enforcement_mode: ("ACTIVE" | "LOG_ONLY")
|
|
951
1011
|
attr_accessor policy_engine_id: ::String
|
|
952
1012
|
attr_accessor client_token: ::String
|
|
953
1013
|
SENSITIVE: [:description]
|
|
@@ -961,6 +1021,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
961
1021
|
attr_accessor updated_at: ::Time
|
|
962
1022
|
attr_accessor policy_arn: ::String
|
|
963
1023
|
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
1024
|
+
attr_accessor enforcement_mode: ("ACTIVE" | "LOG_ONLY")
|
|
964
1025
|
attr_accessor definition: Types::PolicyDefinition
|
|
965
1026
|
attr_accessor description: ::String
|
|
966
1027
|
attr_accessor status_reasons: ::Array[::String]
|
|
@@ -1169,6 +1230,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1169
1230
|
attr_accessor custom_claims: ::Array[Types::CustomClaimValidationType]
|
|
1170
1231
|
attr_accessor private_endpoint: Types::PrivateEndpoint
|
|
1171
1232
|
attr_accessor private_endpoint_overrides: ::Array[Types::PrivateEndpointOverride]
|
|
1233
|
+
attr_accessor allowed_workload_configuration: Types::AllowedWorkloadConfiguration
|
|
1172
1234
|
SENSITIVE: []
|
|
1173
1235
|
end
|
|
1174
1236
|
|
|
@@ -1227,6 +1289,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
1227
1289
|
end
|
|
1228
1290
|
end
|
|
1229
1291
|
|
|
1292
|
+
class CustomTransformConfiguration
|
|
1293
|
+
attr_accessor lambda: Types::LambdaTransformConfiguration
|
|
1294
|
+
SENSITIVE: []
|
|
1295
|
+
end
|
|
1296
|
+
|
|
1230
1297
|
class DataSourceConfig
|
|
1231
1298
|
attr_accessor cloud_watch_logs: Types::CloudWatchLogsInputConfig
|
|
1232
1299
|
attr_accessor unknown: untyped
|
|
@@ -1445,9 +1512,22 @@ module Aws::BedrockAgentCoreControl
|
|
|
1445
1512
|
SENSITIVE: []
|
|
1446
1513
|
end
|
|
1447
1514
|
|
|
1515
|
+
class DeleteHarnessEndpointRequest
|
|
1516
|
+
attr_accessor harness_id: ::String
|
|
1517
|
+
attr_accessor endpoint_name: ::String
|
|
1518
|
+
attr_accessor client_token: ::String
|
|
1519
|
+
SENSITIVE: []
|
|
1520
|
+
end
|
|
1521
|
+
|
|
1522
|
+
class DeleteHarnessEndpointResponse
|
|
1523
|
+
attr_accessor endpoint: Types::HarnessEndpoint
|
|
1524
|
+
SENSITIVE: []
|
|
1525
|
+
end
|
|
1526
|
+
|
|
1448
1527
|
class DeleteHarnessRequest
|
|
1449
1528
|
attr_accessor harness_id: ::String
|
|
1450
1529
|
attr_accessor client_token: ::String
|
|
1530
|
+
attr_accessor delete_managed_memory: bool
|
|
1451
1531
|
SENSITIVE: []
|
|
1452
1532
|
end
|
|
1453
1533
|
|
|
@@ -1558,6 +1638,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1558
1638
|
attr_accessor updated_at: ::Time
|
|
1559
1639
|
attr_accessor policy_arn: ::String
|
|
1560
1640
|
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
1641
|
+
attr_accessor enforcement_mode: ("ACTIVE" | "LOG_ONLY")
|
|
1561
1642
|
attr_accessor definition: Types::PolicyDefinition
|
|
1562
1643
|
attr_accessor description: ::String
|
|
1563
1644
|
attr_accessor status_reasons: ::Array[::String]
|
|
@@ -1864,7 +1945,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1864
1945
|
attr_accessor updated_at: ::Time
|
|
1865
1946
|
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
|
|
1866
1947
|
attr_accessor protocol_type: ("MCP")
|
|
1867
|
-
SENSITIVE: [:
|
|
1948
|
+
SENSITIVE: [:description]
|
|
1868
1949
|
end
|
|
1869
1950
|
|
|
1870
1951
|
class GatewayTarget
|
|
@@ -2032,6 +2113,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2032
2113
|
attr_accessor lineage_metadata: Types::VersionLineageMetadata
|
|
2033
2114
|
attr_accessor created_at: ::Time
|
|
2034
2115
|
attr_accessor updated_at: ::Time
|
|
2116
|
+
attr_accessor kms_key_arn: ::String
|
|
2035
2117
|
SENSITIVE: [:description]
|
|
2036
2118
|
end
|
|
2037
2119
|
|
|
@@ -2051,6 +2133,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2051
2133
|
attr_accessor lineage_metadata: Types::VersionLineageMetadata
|
|
2052
2134
|
attr_accessor created_at: ::Time
|
|
2053
2135
|
attr_accessor version_created_at: ::Time
|
|
2136
|
+
attr_accessor kms_key_arn: ::String
|
|
2054
2137
|
SENSITIVE: [:description]
|
|
2055
2138
|
end
|
|
2056
2139
|
|
|
@@ -2122,11 +2205,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
2122
2205
|
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
|
|
2123
2206
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
|
2124
2207
|
attr_accessor kms_key_arn: ::String
|
|
2208
|
+
attr_accessor custom_transform_configuration: Types::CustomTransformConfiguration
|
|
2125
2209
|
attr_accessor interceptor_configurations: ::Array[Types::GatewayInterceptorConfiguration]
|
|
2126
2210
|
attr_accessor policy_engine_configuration: Types::GatewayPolicyEngineConfiguration
|
|
2127
2211
|
attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
|
|
2128
2212
|
attr_accessor exception_level: ("DEBUG")
|
|
2129
|
-
|
|
2213
|
+
attr_accessor web_acl_arn: ::String
|
|
2214
|
+
attr_accessor waf_configuration: Types::WafConfiguration
|
|
2215
|
+
SENSITIVE: [:description]
|
|
2130
2216
|
end
|
|
2131
2217
|
|
|
2132
2218
|
class GetGatewayRuleRequest
|
|
@@ -2175,8 +2261,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
2175
2261
|
SENSITIVE: [:name, :description]
|
|
2176
2262
|
end
|
|
2177
2263
|
|
|
2264
|
+
class GetHarnessEndpointRequest
|
|
2265
|
+
attr_accessor harness_id: ::String
|
|
2266
|
+
attr_accessor endpoint_name: ::String
|
|
2267
|
+
SENSITIVE: []
|
|
2268
|
+
end
|
|
2269
|
+
|
|
2270
|
+
class GetHarnessEndpointResponse
|
|
2271
|
+
attr_accessor endpoint: Types::HarnessEndpoint
|
|
2272
|
+
SENSITIVE: []
|
|
2273
|
+
end
|
|
2274
|
+
|
|
2178
2275
|
class GetHarnessRequest
|
|
2179
2276
|
attr_accessor harness_id: ::String
|
|
2277
|
+
attr_accessor harness_version: ::String
|
|
2180
2278
|
SENSITIVE: []
|
|
2181
2279
|
end
|
|
2182
2280
|
|
|
@@ -2230,6 +2328,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
2230
2328
|
attr_accessor rule: Types::Rule
|
|
2231
2329
|
attr_accessor data_source_config: Types::DataSourceConfig
|
|
2232
2330
|
attr_accessor evaluators: ::Array[Types::EvaluatorReference]
|
|
2331
|
+
attr_accessor insights: ::Array[Types::Insight]
|
|
2332
|
+
attr_accessor clustering_config: Types::ClusteringConfig
|
|
2233
2333
|
attr_accessor output_config: Types::OutputConfig
|
|
2234
2334
|
attr_accessor evaluation_execution_role_arn: ::String
|
|
2235
2335
|
attr_accessor status: ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING" | "ERROR")
|
|
@@ -2382,6 +2482,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2382
2482
|
attr_accessor updated_at: ::Time
|
|
2383
2483
|
attr_accessor policy_arn: ::String
|
|
2384
2484
|
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
2485
|
+
attr_accessor enforcement_mode: ("ACTIVE" | "LOG_ONLY")
|
|
2385
2486
|
attr_accessor definition: Types::PolicyDefinition
|
|
2386
2487
|
attr_accessor description: ::String
|
|
2387
2488
|
attr_accessor status_reasons: ::Array[::String]
|
|
@@ -2402,6 +2503,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2402
2503
|
attr_accessor updated_at: ::Time
|
|
2403
2504
|
attr_accessor policy_arn: ::String
|
|
2404
2505
|
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
2506
|
+
attr_accessor enforcement_mode: ("ACTIVE" | "LOG_ONLY")
|
|
2405
2507
|
SENSITIVE: []
|
|
2406
2508
|
end
|
|
2407
2509
|
|
|
@@ -2518,6 +2620,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2518
2620
|
attr_accessor harness_name: ::String
|
|
2519
2621
|
attr_accessor arn: ::String
|
|
2520
2622
|
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED")
|
|
2623
|
+
attr_accessor harness_version: ::String
|
|
2521
2624
|
attr_accessor execution_role_arn: ::String
|
|
2522
2625
|
attr_accessor created_at: ::Time
|
|
2523
2626
|
attr_accessor updated_at: ::Time
|
|
@@ -2597,6 +2700,24 @@ module Aws::BedrockAgentCoreControl
|
|
|
2597
2700
|
SENSITIVE: []
|
|
2598
2701
|
end
|
|
2599
2702
|
|
|
2703
|
+
class HarnessDisabledMemoryConfiguration < Aws::EmptyStructure
|
|
2704
|
+
end
|
|
2705
|
+
|
|
2706
|
+
class HarnessEndpoint
|
|
2707
|
+
attr_accessor harness_id: ::String
|
|
2708
|
+
attr_accessor harness_name: ::String
|
|
2709
|
+
attr_accessor endpoint_name: ::String
|
|
2710
|
+
attr_accessor arn: ::String
|
|
2711
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED")
|
|
2712
|
+
attr_accessor created_at: ::Time
|
|
2713
|
+
attr_accessor updated_at: ::Time
|
|
2714
|
+
attr_accessor live_version: ::String
|
|
2715
|
+
attr_accessor target_version: ::String
|
|
2716
|
+
attr_accessor description: ::String
|
|
2717
|
+
attr_accessor failure_reason: ::String
|
|
2718
|
+
SENSITIVE: []
|
|
2719
|
+
end
|
|
2720
|
+
|
|
2600
2721
|
class HarnessEnvironmentArtifact
|
|
2601
2722
|
attr_accessor container_configuration: Types::ContainerConfiguration
|
|
2602
2723
|
attr_accessor unknown: untyped
|
|
@@ -2674,13 +2795,27 @@ module Aws::BedrockAgentCoreControl
|
|
|
2674
2795
|
SENSITIVE: [:api_base]
|
|
2675
2796
|
end
|
|
2676
2797
|
|
|
2798
|
+
class HarnessManagedMemoryConfiguration
|
|
2799
|
+
attr_accessor arn: ::String
|
|
2800
|
+
attr_accessor strategies: ::Array[("SEMANTIC" | "SUMMARIZATION" | "USER_PREFERENCE" | "EPISODIC")]
|
|
2801
|
+
attr_accessor event_expiry_duration: ::Integer
|
|
2802
|
+
attr_accessor encryption_key_arn: ::String
|
|
2803
|
+
SENSITIVE: []
|
|
2804
|
+
end
|
|
2805
|
+
|
|
2677
2806
|
class HarnessMemoryConfiguration
|
|
2678
2807
|
attr_accessor agent_core_memory_configuration: Types::HarnessAgentCoreMemoryConfiguration
|
|
2808
|
+
attr_accessor managed_memory_configuration: Types::HarnessManagedMemoryConfiguration
|
|
2809
|
+
attr_accessor disabled: Types::HarnessDisabledMemoryConfiguration
|
|
2679
2810
|
attr_accessor unknown: untyped
|
|
2680
2811
|
SENSITIVE: []
|
|
2681
2812
|
|
|
2682
2813
|
class AgentCoreMemoryConfiguration < HarnessMemoryConfiguration
|
|
2683
2814
|
end
|
|
2815
|
+
class ManagedMemoryConfiguration < HarnessMemoryConfiguration
|
|
2816
|
+
end
|
|
2817
|
+
class Disabled < HarnessMemoryConfiguration
|
|
2818
|
+
end
|
|
2684
2819
|
class Unknown < HarnessMemoryConfiguration
|
|
2685
2820
|
end
|
|
2686
2821
|
end
|
|
@@ -2726,6 +2861,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2726
2861
|
attr_accessor path: ::String
|
|
2727
2862
|
attr_accessor s3: Types::HarnessSkillS3Source
|
|
2728
2863
|
attr_accessor git: Types::HarnessSkillGitSource
|
|
2864
|
+
attr_accessor aws_skills: Types::HarnessSkillAwsSkillsSource
|
|
2729
2865
|
attr_accessor unknown: untyped
|
|
2730
2866
|
SENSITIVE: []
|
|
2731
2867
|
|
|
@@ -2735,10 +2871,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
2735
2871
|
end
|
|
2736
2872
|
class Git < HarnessSkill
|
|
2737
2873
|
end
|
|
2874
|
+
class AwsSkills < HarnessSkill
|
|
2875
|
+
end
|
|
2738
2876
|
class Unknown < HarnessSkill
|
|
2739
2877
|
end
|
|
2740
2878
|
end
|
|
2741
2879
|
|
|
2880
|
+
class HarnessSkillAwsSkillsSource
|
|
2881
|
+
attr_accessor paths: ::Array[::String]
|
|
2882
|
+
SENSITIVE: []
|
|
2883
|
+
end
|
|
2884
|
+
|
|
2742
2885
|
class HarnessSkillGitAuth
|
|
2743
2886
|
attr_accessor credential_arn: ::String
|
|
2744
2887
|
attr_accessor username: ::String
|
|
@@ -2776,6 +2919,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2776
2919
|
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED")
|
|
2777
2920
|
attr_accessor created_at: ::Time
|
|
2778
2921
|
attr_accessor updated_at: ::Time
|
|
2922
|
+
attr_accessor harness_version: ::String
|
|
2779
2923
|
SENSITIVE: []
|
|
2780
2924
|
end
|
|
2781
2925
|
|
|
@@ -2840,13 +2984,38 @@ module Aws::BedrockAgentCoreControl
|
|
|
2840
2984
|
end
|
|
2841
2985
|
end
|
|
2842
2986
|
|
|
2987
|
+
class HarnessVersionSummary
|
|
2988
|
+
attr_accessor harness_id: ::String
|
|
2989
|
+
attr_accessor harness_name: ::String
|
|
2990
|
+
attr_accessor arn: ::String
|
|
2991
|
+
attr_accessor harness_version: ::String
|
|
2992
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED")
|
|
2993
|
+
attr_accessor created_at: ::Time
|
|
2994
|
+
attr_accessor updated_at: ::Time
|
|
2995
|
+
attr_accessor failure_reason: ::String
|
|
2996
|
+
SENSITIVE: []
|
|
2997
|
+
end
|
|
2998
|
+
|
|
2999
|
+
class HostingEnvironment
|
|
3000
|
+
attr_accessor arn: ::String
|
|
3001
|
+
SENSITIVE: []
|
|
3002
|
+
end
|
|
3003
|
+
|
|
3004
|
+
class HttpApiSchemaConfiguration
|
|
3005
|
+
attr_accessor source: Types::ApiSchemaConfiguration
|
|
3006
|
+
SENSITIVE: []
|
|
3007
|
+
end
|
|
3008
|
+
|
|
2843
3009
|
class HttpTargetConfiguration
|
|
2844
3010
|
attr_accessor agentcore_runtime: Types::RuntimeTargetConfiguration
|
|
3011
|
+
attr_accessor passthrough: Types::PassthroughTargetConfiguration
|
|
2845
3012
|
attr_accessor unknown: untyped
|
|
2846
3013
|
SENSITIVE: []
|
|
2847
3014
|
|
|
2848
3015
|
class AgentcoreRuntime < HttpTargetConfiguration
|
|
2849
3016
|
end
|
|
3017
|
+
class Passthrough < HttpTargetConfiguration
|
|
3018
|
+
end
|
|
2850
3019
|
class Unknown < HttpTargetConfiguration
|
|
2851
3020
|
end
|
|
2852
3021
|
end
|
|
@@ -2894,11 +3063,54 @@ module Aws::BedrockAgentCoreControl
|
|
|
2894
3063
|
SENSITIVE: []
|
|
2895
3064
|
end
|
|
2896
3065
|
|
|
3066
|
+
class InferenceConnectorSource
|
|
3067
|
+
attr_accessor connector_id: ::String
|
|
3068
|
+
SENSITIVE: []
|
|
3069
|
+
end
|
|
3070
|
+
|
|
3071
|
+
class InferenceConnectorTargetConfiguration
|
|
3072
|
+
attr_accessor source: Types::InferenceConnectorSource
|
|
3073
|
+
SENSITIVE: []
|
|
3074
|
+
end
|
|
3075
|
+
|
|
3076
|
+
class InferenceOperationConfiguration
|
|
3077
|
+
attr_accessor path: ::String
|
|
3078
|
+
attr_accessor provider_path: ::String
|
|
3079
|
+
attr_accessor models: ::Array[Types::ModelEntry]
|
|
3080
|
+
SENSITIVE: []
|
|
3081
|
+
end
|
|
3082
|
+
|
|
3083
|
+
class InferenceProviderTargetConfiguration
|
|
3084
|
+
attr_accessor endpoint: ::String
|
|
3085
|
+
attr_accessor model_mapping: Types::ModelMapping
|
|
3086
|
+
attr_accessor operations: ::Array[Types::InferenceOperationConfiguration]
|
|
3087
|
+
SENSITIVE: []
|
|
3088
|
+
end
|
|
3089
|
+
|
|
3090
|
+
class InferenceTargetConfiguration
|
|
3091
|
+
attr_accessor connector: Types::InferenceConnectorTargetConfiguration
|
|
3092
|
+
attr_accessor provider: Types::InferenceProviderTargetConfiguration
|
|
3093
|
+
attr_accessor unknown: untyped
|
|
3094
|
+
SENSITIVE: []
|
|
3095
|
+
|
|
3096
|
+
class Connector < InferenceTargetConfiguration
|
|
3097
|
+
end
|
|
3098
|
+
class Provider < InferenceTargetConfiguration
|
|
3099
|
+
end
|
|
3100
|
+
class Unknown < InferenceTargetConfiguration
|
|
3101
|
+
end
|
|
3102
|
+
end
|
|
3103
|
+
|
|
2897
3104
|
class InlineExamplesSource
|
|
2898
3105
|
attr_accessor examples: ::Array[untyped]
|
|
2899
3106
|
SENSITIVE: []
|
|
2900
3107
|
end
|
|
2901
3108
|
|
|
3109
|
+
class Insight
|
|
3110
|
+
attr_accessor insight_id: ::String
|
|
3111
|
+
SENSITIVE: []
|
|
3112
|
+
end
|
|
3113
|
+
|
|
2902
3114
|
class InterceptorConfiguration
|
|
2903
3115
|
attr_accessor lambda: Types::LambdaInterceptorConfiguration
|
|
2904
3116
|
attr_accessor unknown: untyped
|
|
@@ -2912,6 +3124,23 @@ module Aws::BedrockAgentCoreControl
|
|
|
2912
3124
|
|
|
2913
3125
|
class InterceptorInputConfiguration
|
|
2914
3126
|
attr_accessor pass_request_headers: bool
|
|
3127
|
+
attr_accessor payload_filter: Types::InterceptorPayloadFilter
|
|
3128
|
+
SENSITIVE: []
|
|
3129
|
+
end
|
|
3130
|
+
|
|
3131
|
+
class InterceptorPayloadExclusionSelector
|
|
3132
|
+
attr_accessor field: ("RESPONSE_BODY")
|
|
3133
|
+
attr_accessor unknown: untyped
|
|
3134
|
+
SENSITIVE: []
|
|
3135
|
+
|
|
3136
|
+
class Field < InterceptorPayloadExclusionSelector
|
|
3137
|
+
end
|
|
3138
|
+
class Unknown < InterceptorPayloadExclusionSelector
|
|
3139
|
+
end
|
|
3140
|
+
end
|
|
3141
|
+
|
|
3142
|
+
class InterceptorPayloadFilter
|
|
3143
|
+
attr_accessor exclude: ::Array[Types::InterceptorPayloadExclusionSelector]
|
|
2915
3144
|
SENSITIVE: []
|
|
2916
3145
|
end
|
|
2917
3146
|
|
|
@@ -2955,6 +3184,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
2955
3184
|
SENSITIVE: []
|
|
2956
3185
|
end
|
|
2957
3186
|
|
|
3187
|
+
class LambdaTransformConfiguration
|
|
3188
|
+
attr_accessor arn: ::String
|
|
3189
|
+
SENSITIVE: []
|
|
3190
|
+
end
|
|
3191
|
+
|
|
2958
3192
|
class LifecycleConfiguration
|
|
2959
3193
|
attr_accessor idle_runtime_session_timeout: ::Integer
|
|
2960
3194
|
attr_accessor max_lifetime: ::Integer
|
|
@@ -3182,6 +3416,32 @@ module Aws::BedrockAgentCoreControl
|
|
|
3182
3416
|
SENSITIVE: []
|
|
3183
3417
|
end
|
|
3184
3418
|
|
|
3419
|
+
class ListHarnessEndpointsRequest
|
|
3420
|
+
attr_accessor harness_id: ::String
|
|
3421
|
+
attr_accessor max_results: ::Integer
|
|
3422
|
+
attr_accessor next_token: ::String
|
|
3423
|
+
SENSITIVE: []
|
|
3424
|
+
end
|
|
3425
|
+
|
|
3426
|
+
class ListHarnessEndpointsResponse
|
|
3427
|
+
attr_accessor endpoints: ::Array[Types::HarnessEndpoint]
|
|
3428
|
+
attr_accessor next_token: ::String
|
|
3429
|
+
SENSITIVE: []
|
|
3430
|
+
end
|
|
3431
|
+
|
|
3432
|
+
class ListHarnessVersionsRequest
|
|
3433
|
+
attr_accessor harness_id: ::String
|
|
3434
|
+
attr_accessor max_results: ::Integer
|
|
3435
|
+
attr_accessor next_token: ::String
|
|
3436
|
+
SENSITIVE: []
|
|
3437
|
+
end
|
|
3438
|
+
|
|
3439
|
+
class ListHarnessVersionsResponse
|
|
3440
|
+
attr_accessor harness_versions: ::Array[Types::HarnessVersionSummary]
|
|
3441
|
+
attr_accessor next_token: ::String
|
|
3442
|
+
SENSITIVE: []
|
|
3443
|
+
end
|
|
3444
|
+
|
|
3185
3445
|
class ListHarnessesRequest
|
|
3186
3446
|
attr_accessor max_results: ::Integer
|
|
3187
3447
|
attr_accessor next_token: ::String
|
|
@@ -3431,7 +3691,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3431
3691
|
attr_accessor search_type: ("SEMANTIC")
|
|
3432
3692
|
attr_accessor session_configuration: Types::SessionConfiguration
|
|
3433
3693
|
attr_accessor streaming_configuration: Types::StreamingConfiguration
|
|
3434
|
-
SENSITIVE: []
|
|
3694
|
+
SENSITIVE: [:instructions]
|
|
3435
3695
|
end
|
|
3436
3696
|
|
|
3437
3697
|
class ManagedResourceDetails
|
|
@@ -3498,6 +3758,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3498
3758
|
attr_accessor lambda: Types::McpLambdaTargetConfiguration
|
|
3499
3759
|
attr_accessor mcp_server: Types::McpServerTargetConfiguration
|
|
3500
3760
|
attr_accessor api_gateway: Types::ApiGatewayTargetConfiguration
|
|
3761
|
+
attr_accessor connector: Types::ConnectorTargetConfiguration
|
|
3501
3762
|
attr_accessor unknown: untyped
|
|
3502
3763
|
SENSITIVE: []
|
|
3503
3764
|
|
|
@@ -3511,6 +3772,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
3511
3772
|
end
|
|
3512
3773
|
class ApiGateway < McpTargetConfiguration
|
|
3513
3774
|
end
|
|
3775
|
+
class Connector < McpTargetConfiguration
|
|
3776
|
+
end
|
|
3514
3777
|
class Unknown < McpTargetConfiguration
|
|
3515
3778
|
end
|
|
3516
3779
|
end
|
|
@@ -3544,6 +3807,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3544
3807
|
attr_accessor strategies: ::Array[Types::MemoryStrategy]
|
|
3545
3808
|
attr_accessor indexed_keys: ::Array[Types::IndexedKey]
|
|
3546
3809
|
attr_accessor stream_delivery_resources: Types::StreamDeliveryResources
|
|
3810
|
+
attr_accessor managed_by_resource_arn: ::String
|
|
3547
3811
|
SENSITIVE: [:description]
|
|
3548
3812
|
end
|
|
3549
3813
|
|
|
@@ -3596,6 +3860,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3596
3860
|
attr_accessor status: ("CREATING" | "ACTIVE" | "FAILED" | "DELETING" | "UPDATING")
|
|
3597
3861
|
attr_accessor created_at: ::Time
|
|
3598
3862
|
attr_accessor updated_at: ::Time
|
|
3863
|
+
attr_accessor managed_by_resource_arn: ::String
|
|
3599
3864
|
SENSITIVE: []
|
|
3600
3865
|
end
|
|
3601
3866
|
|
|
@@ -3639,6 +3904,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
3639
3904
|
SENSITIVE: []
|
|
3640
3905
|
end
|
|
3641
3906
|
|
|
3907
|
+
class ModelEntry
|
|
3908
|
+
attr_accessor model: ::String
|
|
3909
|
+
SENSITIVE: []
|
|
3910
|
+
end
|
|
3911
|
+
|
|
3912
|
+
class ModelMapping
|
|
3913
|
+
attr_accessor provider_prefix: Types::ProviderPrefix
|
|
3914
|
+
SENSITIVE: []
|
|
3915
|
+
end
|
|
3916
|
+
|
|
3642
3917
|
class ModifyConsolidationConfiguration
|
|
3643
3918
|
attr_accessor custom_consolidation_configuration: Types::CustomConsolidationConfigurationInput
|
|
3644
3919
|
attr_accessor unknown: untyped
|
|
@@ -3865,6 +4140,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
3865
4140
|
attr_accessor created_at: ::Time
|
|
3866
4141
|
attr_accessor updated_at: ::Time
|
|
3867
4142
|
attr_accessor failure_reason: ::String
|
|
4143
|
+
attr_accessor insights: ::Array[Types::Insight]
|
|
4144
|
+
attr_accessor clustering_config: Types::ClusteringConfig
|
|
3868
4145
|
SENSITIVE: [:description]
|
|
3869
4146
|
end
|
|
3870
4147
|
|
|
@@ -3873,6 +4150,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
3873
4150
|
SENSITIVE: []
|
|
3874
4151
|
end
|
|
3875
4152
|
|
|
4153
|
+
class PassthroughTargetConfiguration
|
|
4154
|
+
attr_accessor endpoint: ::String
|
|
4155
|
+
attr_accessor protocol_type: ("MCP" | "A2A" | "INFERENCE" | "CUSTOM")
|
|
4156
|
+
attr_accessor schema: Types::HttpApiSchemaConfiguration
|
|
4157
|
+
attr_accessor stickiness_configuration: Types::StickinessConfiguration
|
|
4158
|
+
SENSITIVE: []
|
|
4159
|
+
end
|
|
4160
|
+
|
|
3876
4161
|
class PaymentConnectorSummary
|
|
3877
4162
|
attr_accessor payment_connector_id: ::String
|
|
3878
4163
|
attr_accessor name: ::String
|
|
@@ -3945,6 +4230,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3945
4230
|
attr_accessor updated_at: ::Time
|
|
3946
4231
|
attr_accessor policy_arn: ::String
|
|
3947
4232
|
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
4233
|
+
attr_accessor enforcement_mode: ("ACTIVE" | "LOG_ONLY")
|
|
3948
4234
|
attr_accessor definition: Types::PolicyDefinition
|
|
3949
4235
|
attr_accessor description: ::String
|
|
3950
4236
|
attr_accessor status_reasons: ::Array[::String]
|
|
@@ -3954,6 +4240,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3954
4240
|
class PolicyDefinition
|
|
3955
4241
|
attr_accessor cedar: Types::CedarPolicy
|
|
3956
4242
|
attr_accessor policy_generation: Types::PolicyGenerationDetails
|
|
4243
|
+
attr_accessor policy: Types::PolicyStatement
|
|
3957
4244
|
attr_accessor unknown: untyped
|
|
3958
4245
|
SENSITIVE: []
|
|
3959
4246
|
|
|
@@ -3961,6 +4248,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
3961
4248
|
end
|
|
3962
4249
|
class PolicyGeneration < PolicyDefinition
|
|
3963
4250
|
end
|
|
4251
|
+
class Policy < PolicyDefinition
|
|
4252
|
+
end
|
|
3964
4253
|
class Unknown < PolicyDefinition
|
|
3965
4254
|
end
|
|
3966
4255
|
end
|
|
@@ -4030,6 +4319,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
4030
4319
|
SENSITIVE: []
|
|
4031
4320
|
end
|
|
4032
4321
|
|
|
4322
|
+
class PolicyStatement
|
|
4323
|
+
attr_accessor statement: ::String
|
|
4324
|
+
SENSITIVE: []
|
|
4325
|
+
end
|
|
4326
|
+
|
|
4033
4327
|
class PolicySummary
|
|
4034
4328
|
attr_accessor policy_id: ::String
|
|
4035
4329
|
attr_accessor name: ::String
|
|
@@ -4038,6 +4332,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4038
4332
|
attr_accessor updated_at: ::Time
|
|
4039
4333
|
attr_accessor policy_arn: ::String
|
|
4040
4334
|
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
4335
|
+
attr_accessor enforcement_mode: ("ACTIVE" | "LOG_ONLY")
|
|
4041
4336
|
SENSITIVE: []
|
|
4042
4337
|
end
|
|
4043
4338
|
|
|
@@ -4066,6 +4361,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
4066
4361
|
SENSITIVE: []
|
|
4067
4362
|
end
|
|
4068
4363
|
|
|
4364
|
+
class ProviderPrefix
|
|
4365
|
+
attr_accessor strip: bool
|
|
4366
|
+
attr_accessor separator: ::String
|
|
4367
|
+
SENSITIVE: []
|
|
4368
|
+
end
|
|
4369
|
+
|
|
4069
4370
|
class PutResourcePolicyRequest
|
|
4070
4371
|
attr_accessor resource_arn: ::String
|
|
4071
4372
|
attr_accessor policy: ::String
|
|
@@ -4245,6 +4546,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4245
4546
|
class RuntimeTargetConfiguration
|
|
4246
4547
|
attr_accessor arn: ::String
|
|
4247
4548
|
attr_accessor qualifier: ::String
|
|
4549
|
+
attr_accessor schema: Types::HttpApiSchemaConfiguration
|
|
4248
4550
|
SENSITIVE: []
|
|
4249
4551
|
end
|
|
4250
4552
|
|
|
@@ -4483,6 +4785,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
4483
4785
|
SENSITIVE: [:target_name]
|
|
4484
4786
|
end
|
|
4485
4787
|
|
|
4788
|
+
class StickinessConfiguration
|
|
4789
|
+
attr_accessor identifier: ::String
|
|
4790
|
+
attr_accessor timeout: ::Integer
|
|
4791
|
+
SENSITIVE: []
|
|
4792
|
+
end
|
|
4793
|
+
|
|
4486
4794
|
class StrategyConfiguration
|
|
4487
4795
|
attr_accessor type: ("SEMANTIC_OVERRIDE" | "SUMMARY_OVERRIDE" | "USER_PREFERENCE_OVERRIDE" | "SELF_MANAGED" | "EPISODIC_OVERRIDE")
|
|
4488
4796
|
attr_accessor extraction: Types::ExtractionConfiguration
|
|
@@ -4622,6 +4930,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4622
4930
|
class TargetConfiguration
|
|
4623
4931
|
attr_accessor mcp: Types::McpTargetConfiguration
|
|
4624
4932
|
attr_accessor http: Types::HttpTargetConfiguration
|
|
4933
|
+
attr_accessor inference: Types::InferenceTargetConfiguration
|
|
4625
4934
|
attr_accessor unknown: untyped
|
|
4626
4935
|
SENSITIVE: []
|
|
4627
4936
|
|
|
@@ -4629,6 +4938,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
4629
4938
|
end
|
|
4630
4939
|
class Http < TargetConfiguration
|
|
4631
4940
|
end
|
|
4941
|
+
class Inference < TargetConfiguration
|
|
4942
|
+
end
|
|
4632
4943
|
class Unknown < TargetConfiguration
|
|
4633
4944
|
end
|
|
4634
4945
|
end
|
|
@@ -4641,6 +4952,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
4641
4952
|
attr_accessor created_at: ::Time
|
|
4642
4953
|
attr_accessor updated_at: ::Time
|
|
4643
4954
|
attr_accessor resource_priority: ::Integer
|
|
4955
|
+
attr_accessor last_synchronized_at: ::Time
|
|
4956
|
+
attr_accessor authorization_data: Types::AuthorizationData
|
|
4957
|
+
attr_accessor target_type: ("OPEN_API_SCHEMA" | "SMITHY_MODEL" | "MCP_SERVER" | "LAMBDA" | "API_GATEWAY" | "CONNECTOR" | "AGENTCORE_RUNTIME" | "PASSTHROUGH" | "PROVIDER")
|
|
4958
|
+
attr_accessor listing_mode: ("DEFAULT" | "DYNAMIC")
|
|
4644
4959
|
SENSITIVE: [:name, :description]
|
|
4645
4960
|
end
|
|
4646
4961
|
|
|
@@ -4854,6 +5169,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4854
5169
|
attr_accessor branch_name: ::String
|
|
4855
5170
|
attr_accessor commit_message: ::String
|
|
4856
5171
|
attr_accessor created_by: Types::VersionCreatedBySource
|
|
5172
|
+
attr_accessor kms_key_arn: ::String
|
|
4857
5173
|
SENSITIVE: [:description]
|
|
4858
5174
|
end
|
|
4859
5175
|
|
|
@@ -4923,10 +5239,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
4923
5239
|
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
|
|
4924
5240
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
|
4925
5241
|
attr_accessor kms_key_arn: ::String
|
|
5242
|
+
attr_accessor custom_transform_configuration: Types::CustomTransformConfiguration
|
|
4926
5243
|
attr_accessor interceptor_configurations: ::Array[Types::GatewayInterceptorConfiguration]
|
|
4927
5244
|
attr_accessor policy_engine_configuration: Types::GatewayPolicyEngineConfiguration
|
|
4928
5245
|
attr_accessor exception_level: ("DEBUG")
|
|
4929
|
-
|
|
5246
|
+
attr_accessor waf_configuration: Types::WafConfiguration
|
|
5247
|
+
SENSITIVE: [:description]
|
|
4930
5248
|
end
|
|
4931
5249
|
|
|
4932
5250
|
class UpdateGatewayResponse
|
|
@@ -4945,11 +5263,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
4945
5263
|
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
|
|
4946
5264
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
|
4947
5265
|
attr_accessor kms_key_arn: ::String
|
|
5266
|
+
attr_accessor custom_transform_configuration: Types::CustomTransformConfiguration
|
|
4948
5267
|
attr_accessor interceptor_configurations: ::Array[Types::GatewayInterceptorConfiguration]
|
|
4949
5268
|
attr_accessor policy_engine_configuration: Types::GatewayPolicyEngineConfiguration
|
|
4950
5269
|
attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
|
|
4951
5270
|
attr_accessor exception_level: ("DEBUG")
|
|
4952
|
-
|
|
5271
|
+
attr_accessor web_acl_arn: ::String
|
|
5272
|
+
attr_accessor waf_configuration: Types::WafConfiguration
|
|
5273
|
+
SENSITIVE: [:description]
|
|
4953
5274
|
end
|
|
4954
5275
|
|
|
4955
5276
|
class UpdateGatewayRuleRequest
|
|
@@ -5008,6 +5329,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
5008
5329
|
SENSITIVE: [:name, :description]
|
|
5009
5330
|
end
|
|
5010
5331
|
|
|
5332
|
+
class UpdateHarnessEndpointRequest
|
|
5333
|
+
attr_accessor harness_id: ::String
|
|
5334
|
+
attr_accessor endpoint_name: ::String
|
|
5335
|
+
attr_accessor target_version: ::String
|
|
5336
|
+
attr_accessor description: ::String
|
|
5337
|
+
attr_accessor client_token: ::String
|
|
5338
|
+
SENSITIVE: []
|
|
5339
|
+
end
|
|
5340
|
+
|
|
5341
|
+
class UpdateHarnessEndpointResponse
|
|
5342
|
+
attr_accessor endpoint: Types::HarnessEndpoint
|
|
5343
|
+
SENSITIVE: []
|
|
5344
|
+
end
|
|
5345
|
+
|
|
5011
5346
|
class UpdateHarnessRequest
|
|
5012
5347
|
attr_accessor harness_id: ::String
|
|
5013
5348
|
attr_accessor client_token: ::String
|
|
@@ -5080,6 +5415,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
5080
5415
|
attr_accessor rule: Types::Rule
|
|
5081
5416
|
attr_accessor data_source_config: Types::DataSourceConfig
|
|
5082
5417
|
attr_accessor evaluators: ::Array[Types::EvaluatorReference]
|
|
5418
|
+
attr_accessor insights: ::Array[Types::Insight]
|
|
5419
|
+
attr_accessor clustering_config: Types::ClusteringConfig
|
|
5083
5420
|
attr_accessor evaluation_execution_role_arn: ::String
|
|
5084
5421
|
attr_accessor execution_status: ("ENABLED" | "DISABLED")
|
|
5085
5422
|
SENSITIVE: [:description]
|
|
@@ -5180,6 +5517,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5180
5517
|
attr_accessor description: Types::UpdatedDescription
|
|
5181
5518
|
attr_accessor definition: Types::PolicyDefinition
|
|
5182
5519
|
attr_accessor validation_mode: ("FAIL_ON_ANY_FINDINGS" | "IGNORE_ALL_FINDINGS")
|
|
5520
|
+
attr_accessor enforcement_mode: ("ACTIVE" | "LOG_ONLY")
|
|
5183
5521
|
SENSITIVE: []
|
|
5184
5522
|
end
|
|
5185
5523
|
|
|
@@ -5191,6 +5529,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5191
5529
|
attr_accessor updated_at: ::Time
|
|
5192
5530
|
attr_accessor policy_arn: ::String
|
|
5193
5531
|
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
5532
|
+
attr_accessor enforcement_mode: ("ACTIVE" | "LOG_ONLY")
|
|
5194
5533
|
attr_accessor definition: Types::PolicyDefinition
|
|
5195
5534
|
attr_accessor description: ::String
|
|
5196
5535
|
attr_accessor status_reasons: ::Array[::String]
|
|
@@ -5483,6 +5822,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
5483
5822
|
SENSITIVE: []
|
|
5484
5823
|
end
|
|
5485
5824
|
|
|
5825
|
+
class WafConfiguration
|
|
5826
|
+
attr_accessor failure_mode: ("FAIL_CLOSE" | "FAIL_OPEN")
|
|
5827
|
+
SENSITIVE: []
|
|
5828
|
+
end
|
|
5829
|
+
|
|
5486
5830
|
class WeightedOverride
|
|
5487
5831
|
attr_accessor traffic_split: ::Array[Types::TrafficSplitEntry]
|
|
5488
5832
|
SENSITIVE: []
|