aws-sdk-bedrockagentcorecontrol 1.53.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client.rb +896 -19
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +427 -2
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +1385 -190
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +110 -6
- data/sig/params.rbs +126 -13
- data/sig/types.rbs +329 -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
|
|
@@ -450,6 +456,33 @@ module Aws::BedrockAgentCoreControl
|
|
|
450
456
|
SENSITIVE: []
|
|
451
457
|
end
|
|
452
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
|
+
|
|
453
486
|
class ConsolidationConfiguration
|
|
454
487
|
attr_accessor custom_consolidation_configuration: Types::CustomConsolidationConfiguration
|
|
455
488
|
attr_accessor unknown: untyped
|
|
@@ -694,7 +727,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
694
727
|
attr_accessor policy_engine_configuration: Types::GatewayPolicyEngineConfiguration
|
|
695
728
|
attr_accessor exception_level: ("DEBUG")
|
|
696
729
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
697
|
-
SENSITIVE: [:
|
|
730
|
+
SENSITIVE: [:description]
|
|
698
731
|
end
|
|
699
732
|
|
|
700
733
|
class CreateGatewayResponse
|
|
@@ -713,11 +746,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
713
746
|
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
|
|
714
747
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
|
715
748
|
attr_accessor kms_key_arn: ::String
|
|
749
|
+
attr_accessor custom_transform_configuration: Types::CustomTransformConfiguration
|
|
716
750
|
attr_accessor interceptor_configurations: ::Array[Types::GatewayInterceptorConfiguration]
|
|
717
751
|
attr_accessor policy_engine_configuration: Types::GatewayPolicyEngineConfiguration
|
|
718
752
|
attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
|
|
719
753
|
attr_accessor exception_level: ("DEBUG")
|
|
720
|
-
|
|
754
|
+
attr_accessor web_acl_arn: ::String
|
|
755
|
+
attr_accessor waf_configuration: Types::WafConfiguration
|
|
756
|
+
SENSITIVE: [:description]
|
|
721
757
|
end
|
|
722
758
|
|
|
723
759
|
class CreateGatewayRuleRequest
|
|
@@ -775,6 +811,21 @@ module Aws::BedrockAgentCoreControl
|
|
|
775
811
|
SENSITIVE: [:name, :description]
|
|
776
812
|
end
|
|
777
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
|
+
|
|
778
829
|
class CreateHarnessRequest
|
|
779
830
|
attr_accessor harness_name: ::String
|
|
780
831
|
attr_accessor client_token: ::String
|
|
@@ -956,6 +1007,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
956
1007
|
attr_accessor definition: Types::PolicyDefinition
|
|
957
1008
|
attr_accessor description: ::String
|
|
958
1009
|
attr_accessor validation_mode: ("FAIL_ON_ANY_FINDINGS" | "IGNORE_ALL_FINDINGS")
|
|
1010
|
+
attr_accessor enforcement_mode: ("ACTIVE" | "LOG_ONLY")
|
|
959
1011
|
attr_accessor policy_engine_id: ::String
|
|
960
1012
|
attr_accessor client_token: ::String
|
|
961
1013
|
SENSITIVE: [:description]
|
|
@@ -969,6 +1021,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
969
1021
|
attr_accessor updated_at: ::Time
|
|
970
1022
|
attr_accessor policy_arn: ::String
|
|
971
1023
|
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
1024
|
+
attr_accessor enforcement_mode: ("ACTIVE" | "LOG_ONLY")
|
|
972
1025
|
attr_accessor definition: Types::PolicyDefinition
|
|
973
1026
|
attr_accessor description: ::String
|
|
974
1027
|
attr_accessor status_reasons: ::Array[::String]
|
|
@@ -1177,6 +1230,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1177
1230
|
attr_accessor custom_claims: ::Array[Types::CustomClaimValidationType]
|
|
1178
1231
|
attr_accessor private_endpoint: Types::PrivateEndpoint
|
|
1179
1232
|
attr_accessor private_endpoint_overrides: ::Array[Types::PrivateEndpointOverride]
|
|
1233
|
+
attr_accessor allowed_workload_configuration: Types::AllowedWorkloadConfiguration
|
|
1180
1234
|
SENSITIVE: []
|
|
1181
1235
|
end
|
|
1182
1236
|
|
|
@@ -1235,6 +1289,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
1235
1289
|
end
|
|
1236
1290
|
end
|
|
1237
1291
|
|
|
1292
|
+
class CustomTransformConfiguration
|
|
1293
|
+
attr_accessor lambda: Types::LambdaTransformConfiguration
|
|
1294
|
+
SENSITIVE: []
|
|
1295
|
+
end
|
|
1296
|
+
|
|
1238
1297
|
class DataSourceConfig
|
|
1239
1298
|
attr_accessor cloud_watch_logs: Types::CloudWatchLogsInputConfig
|
|
1240
1299
|
attr_accessor unknown: untyped
|
|
@@ -1453,9 +1512,22 @@ module Aws::BedrockAgentCoreControl
|
|
|
1453
1512
|
SENSITIVE: []
|
|
1454
1513
|
end
|
|
1455
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
|
+
|
|
1456
1527
|
class DeleteHarnessRequest
|
|
1457
1528
|
attr_accessor harness_id: ::String
|
|
1458
1529
|
attr_accessor client_token: ::String
|
|
1530
|
+
attr_accessor delete_managed_memory: bool
|
|
1459
1531
|
SENSITIVE: []
|
|
1460
1532
|
end
|
|
1461
1533
|
|
|
@@ -1566,6 +1638,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1566
1638
|
attr_accessor updated_at: ::Time
|
|
1567
1639
|
attr_accessor policy_arn: ::String
|
|
1568
1640
|
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
1641
|
+
attr_accessor enforcement_mode: ("ACTIVE" | "LOG_ONLY")
|
|
1569
1642
|
attr_accessor definition: Types::PolicyDefinition
|
|
1570
1643
|
attr_accessor description: ::String
|
|
1571
1644
|
attr_accessor status_reasons: ::Array[::String]
|
|
@@ -1872,7 +1945,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1872
1945
|
attr_accessor updated_at: ::Time
|
|
1873
1946
|
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
|
|
1874
1947
|
attr_accessor protocol_type: ("MCP")
|
|
1875
|
-
SENSITIVE: [:
|
|
1948
|
+
SENSITIVE: [:description]
|
|
1876
1949
|
end
|
|
1877
1950
|
|
|
1878
1951
|
class GatewayTarget
|
|
@@ -2132,11 +2205,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
2132
2205
|
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
|
|
2133
2206
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
|
2134
2207
|
attr_accessor kms_key_arn: ::String
|
|
2208
|
+
attr_accessor custom_transform_configuration: Types::CustomTransformConfiguration
|
|
2135
2209
|
attr_accessor interceptor_configurations: ::Array[Types::GatewayInterceptorConfiguration]
|
|
2136
2210
|
attr_accessor policy_engine_configuration: Types::GatewayPolicyEngineConfiguration
|
|
2137
2211
|
attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
|
|
2138
2212
|
attr_accessor exception_level: ("DEBUG")
|
|
2139
|
-
|
|
2213
|
+
attr_accessor web_acl_arn: ::String
|
|
2214
|
+
attr_accessor waf_configuration: Types::WafConfiguration
|
|
2215
|
+
SENSITIVE: [:description]
|
|
2140
2216
|
end
|
|
2141
2217
|
|
|
2142
2218
|
class GetGatewayRuleRequest
|
|
@@ -2185,8 +2261,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
2185
2261
|
SENSITIVE: [:name, :description]
|
|
2186
2262
|
end
|
|
2187
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
|
+
|
|
2188
2275
|
class GetHarnessRequest
|
|
2189
2276
|
attr_accessor harness_id: ::String
|
|
2277
|
+
attr_accessor harness_version: ::String
|
|
2190
2278
|
SENSITIVE: []
|
|
2191
2279
|
end
|
|
2192
2280
|
|
|
@@ -2394,6 +2482,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2394
2482
|
attr_accessor updated_at: ::Time
|
|
2395
2483
|
attr_accessor policy_arn: ::String
|
|
2396
2484
|
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
2485
|
+
attr_accessor enforcement_mode: ("ACTIVE" | "LOG_ONLY")
|
|
2397
2486
|
attr_accessor definition: Types::PolicyDefinition
|
|
2398
2487
|
attr_accessor description: ::String
|
|
2399
2488
|
attr_accessor status_reasons: ::Array[::String]
|
|
@@ -2414,6 +2503,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2414
2503
|
attr_accessor updated_at: ::Time
|
|
2415
2504
|
attr_accessor policy_arn: ::String
|
|
2416
2505
|
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
2506
|
+
attr_accessor enforcement_mode: ("ACTIVE" | "LOG_ONLY")
|
|
2417
2507
|
SENSITIVE: []
|
|
2418
2508
|
end
|
|
2419
2509
|
|
|
@@ -2530,6 +2620,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2530
2620
|
attr_accessor harness_name: ::String
|
|
2531
2621
|
attr_accessor arn: ::String
|
|
2532
2622
|
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED")
|
|
2623
|
+
attr_accessor harness_version: ::String
|
|
2533
2624
|
attr_accessor execution_role_arn: ::String
|
|
2534
2625
|
attr_accessor created_at: ::Time
|
|
2535
2626
|
attr_accessor updated_at: ::Time
|
|
@@ -2609,6 +2700,24 @@ module Aws::BedrockAgentCoreControl
|
|
|
2609
2700
|
SENSITIVE: []
|
|
2610
2701
|
end
|
|
2611
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
|
+
|
|
2612
2721
|
class HarnessEnvironmentArtifact
|
|
2613
2722
|
attr_accessor container_configuration: Types::ContainerConfiguration
|
|
2614
2723
|
attr_accessor unknown: untyped
|
|
@@ -2686,13 +2795,27 @@ module Aws::BedrockAgentCoreControl
|
|
|
2686
2795
|
SENSITIVE: [:api_base]
|
|
2687
2796
|
end
|
|
2688
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
|
+
|
|
2689
2806
|
class HarnessMemoryConfiguration
|
|
2690
2807
|
attr_accessor agent_core_memory_configuration: Types::HarnessAgentCoreMemoryConfiguration
|
|
2808
|
+
attr_accessor managed_memory_configuration: Types::HarnessManagedMemoryConfiguration
|
|
2809
|
+
attr_accessor disabled: Types::HarnessDisabledMemoryConfiguration
|
|
2691
2810
|
attr_accessor unknown: untyped
|
|
2692
2811
|
SENSITIVE: []
|
|
2693
2812
|
|
|
2694
2813
|
class AgentCoreMemoryConfiguration < HarnessMemoryConfiguration
|
|
2695
2814
|
end
|
|
2815
|
+
class ManagedMemoryConfiguration < HarnessMemoryConfiguration
|
|
2816
|
+
end
|
|
2817
|
+
class Disabled < HarnessMemoryConfiguration
|
|
2818
|
+
end
|
|
2696
2819
|
class Unknown < HarnessMemoryConfiguration
|
|
2697
2820
|
end
|
|
2698
2821
|
end
|
|
@@ -2738,6 +2861,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2738
2861
|
attr_accessor path: ::String
|
|
2739
2862
|
attr_accessor s3: Types::HarnessSkillS3Source
|
|
2740
2863
|
attr_accessor git: Types::HarnessSkillGitSource
|
|
2864
|
+
attr_accessor aws_skills: Types::HarnessSkillAwsSkillsSource
|
|
2741
2865
|
attr_accessor unknown: untyped
|
|
2742
2866
|
SENSITIVE: []
|
|
2743
2867
|
|
|
@@ -2747,10 +2871,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
2747
2871
|
end
|
|
2748
2872
|
class Git < HarnessSkill
|
|
2749
2873
|
end
|
|
2874
|
+
class AwsSkills < HarnessSkill
|
|
2875
|
+
end
|
|
2750
2876
|
class Unknown < HarnessSkill
|
|
2751
2877
|
end
|
|
2752
2878
|
end
|
|
2753
2879
|
|
|
2880
|
+
class HarnessSkillAwsSkillsSource
|
|
2881
|
+
attr_accessor paths: ::Array[::String]
|
|
2882
|
+
SENSITIVE: []
|
|
2883
|
+
end
|
|
2884
|
+
|
|
2754
2885
|
class HarnessSkillGitAuth
|
|
2755
2886
|
attr_accessor credential_arn: ::String
|
|
2756
2887
|
attr_accessor username: ::String
|
|
@@ -2788,6 +2919,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2788
2919
|
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED")
|
|
2789
2920
|
attr_accessor created_at: ::Time
|
|
2790
2921
|
attr_accessor updated_at: ::Time
|
|
2922
|
+
attr_accessor harness_version: ::String
|
|
2791
2923
|
SENSITIVE: []
|
|
2792
2924
|
end
|
|
2793
2925
|
|
|
@@ -2852,13 +2984,38 @@ module Aws::BedrockAgentCoreControl
|
|
|
2852
2984
|
end
|
|
2853
2985
|
end
|
|
2854
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
|
+
|
|
2855
3009
|
class HttpTargetConfiguration
|
|
2856
3010
|
attr_accessor agentcore_runtime: Types::RuntimeTargetConfiguration
|
|
3011
|
+
attr_accessor passthrough: Types::PassthroughTargetConfiguration
|
|
2857
3012
|
attr_accessor unknown: untyped
|
|
2858
3013
|
SENSITIVE: []
|
|
2859
3014
|
|
|
2860
3015
|
class AgentcoreRuntime < HttpTargetConfiguration
|
|
2861
3016
|
end
|
|
3017
|
+
class Passthrough < HttpTargetConfiguration
|
|
3018
|
+
end
|
|
2862
3019
|
class Unknown < HttpTargetConfiguration
|
|
2863
3020
|
end
|
|
2864
3021
|
end
|
|
@@ -2906,6 +3063,44 @@ module Aws::BedrockAgentCoreControl
|
|
|
2906
3063
|
SENSITIVE: []
|
|
2907
3064
|
end
|
|
2908
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
|
+
|
|
2909
3104
|
class InlineExamplesSource
|
|
2910
3105
|
attr_accessor examples: ::Array[untyped]
|
|
2911
3106
|
SENSITIVE: []
|
|
@@ -2929,6 +3124,23 @@ module Aws::BedrockAgentCoreControl
|
|
|
2929
3124
|
|
|
2930
3125
|
class InterceptorInputConfiguration
|
|
2931
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]
|
|
2932
3144
|
SENSITIVE: []
|
|
2933
3145
|
end
|
|
2934
3146
|
|
|
@@ -2972,6 +3184,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
2972
3184
|
SENSITIVE: []
|
|
2973
3185
|
end
|
|
2974
3186
|
|
|
3187
|
+
class LambdaTransformConfiguration
|
|
3188
|
+
attr_accessor arn: ::String
|
|
3189
|
+
SENSITIVE: []
|
|
3190
|
+
end
|
|
3191
|
+
|
|
2975
3192
|
class LifecycleConfiguration
|
|
2976
3193
|
attr_accessor idle_runtime_session_timeout: ::Integer
|
|
2977
3194
|
attr_accessor max_lifetime: ::Integer
|
|
@@ -3199,6 +3416,32 @@ module Aws::BedrockAgentCoreControl
|
|
|
3199
3416
|
SENSITIVE: []
|
|
3200
3417
|
end
|
|
3201
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
|
+
|
|
3202
3445
|
class ListHarnessesRequest
|
|
3203
3446
|
attr_accessor max_results: ::Integer
|
|
3204
3447
|
attr_accessor next_token: ::String
|
|
@@ -3448,7 +3691,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3448
3691
|
attr_accessor search_type: ("SEMANTIC")
|
|
3449
3692
|
attr_accessor session_configuration: Types::SessionConfiguration
|
|
3450
3693
|
attr_accessor streaming_configuration: Types::StreamingConfiguration
|
|
3451
|
-
SENSITIVE: []
|
|
3694
|
+
SENSITIVE: [:instructions]
|
|
3452
3695
|
end
|
|
3453
3696
|
|
|
3454
3697
|
class ManagedResourceDetails
|
|
@@ -3515,6 +3758,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3515
3758
|
attr_accessor lambda: Types::McpLambdaTargetConfiguration
|
|
3516
3759
|
attr_accessor mcp_server: Types::McpServerTargetConfiguration
|
|
3517
3760
|
attr_accessor api_gateway: Types::ApiGatewayTargetConfiguration
|
|
3761
|
+
attr_accessor connector: Types::ConnectorTargetConfiguration
|
|
3518
3762
|
attr_accessor unknown: untyped
|
|
3519
3763
|
SENSITIVE: []
|
|
3520
3764
|
|
|
@@ -3528,6 +3772,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
3528
3772
|
end
|
|
3529
3773
|
class ApiGateway < McpTargetConfiguration
|
|
3530
3774
|
end
|
|
3775
|
+
class Connector < McpTargetConfiguration
|
|
3776
|
+
end
|
|
3531
3777
|
class Unknown < McpTargetConfiguration
|
|
3532
3778
|
end
|
|
3533
3779
|
end
|
|
@@ -3561,6 +3807,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3561
3807
|
attr_accessor strategies: ::Array[Types::MemoryStrategy]
|
|
3562
3808
|
attr_accessor indexed_keys: ::Array[Types::IndexedKey]
|
|
3563
3809
|
attr_accessor stream_delivery_resources: Types::StreamDeliveryResources
|
|
3810
|
+
attr_accessor managed_by_resource_arn: ::String
|
|
3564
3811
|
SENSITIVE: [:description]
|
|
3565
3812
|
end
|
|
3566
3813
|
|
|
@@ -3613,6 +3860,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3613
3860
|
attr_accessor status: ("CREATING" | "ACTIVE" | "FAILED" | "DELETING" | "UPDATING")
|
|
3614
3861
|
attr_accessor created_at: ::Time
|
|
3615
3862
|
attr_accessor updated_at: ::Time
|
|
3863
|
+
attr_accessor managed_by_resource_arn: ::String
|
|
3616
3864
|
SENSITIVE: []
|
|
3617
3865
|
end
|
|
3618
3866
|
|
|
@@ -3656,6 +3904,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
3656
3904
|
SENSITIVE: []
|
|
3657
3905
|
end
|
|
3658
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
|
+
|
|
3659
3917
|
class ModifyConsolidationConfiguration
|
|
3660
3918
|
attr_accessor custom_consolidation_configuration: Types::CustomConsolidationConfigurationInput
|
|
3661
3919
|
attr_accessor unknown: untyped
|
|
@@ -3892,6 +4150,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
3892
4150
|
SENSITIVE: []
|
|
3893
4151
|
end
|
|
3894
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
|
+
|
|
3895
4161
|
class PaymentConnectorSummary
|
|
3896
4162
|
attr_accessor payment_connector_id: ::String
|
|
3897
4163
|
attr_accessor name: ::String
|
|
@@ -3964,6 +4230,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3964
4230
|
attr_accessor updated_at: ::Time
|
|
3965
4231
|
attr_accessor policy_arn: ::String
|
|
3966
4232
|
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
4233
|
+
attr_accessor enforcement_mode: ("ACTIVE" | "LOG_ONLY")
|
|
3967
4234
|
attr_accessor definition: Types::PolicyDefinition
|
|
3968
4235
|
attr_accessor description: ::String
|
|
3969
4236
|
attr_accessor status_reasons: ::Array[::String]
|
|
@@ -3973,6 +4240,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3973
4240
|
class PolicyDefinition
|
|
3974
4241
|
attr_accessor cedar: Types::CedarPolicy
|
|
3975
4242
|
attr_accessor policy_generation: Types::PolicyGenerationDetails
|
|
4243
|
+
attr_accessor policy: Types::PolicyStatement
|
|
3976
4244
|
attr_accessor unknown: untyped
|
|
3977
4245
|
SENSITIVE: []
|
|
3978
4246
|
|
|
@@ -3980,6 +4248,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
3980
4248
|
end
|
|
3981
4249
|
class PolicyGeneration < PolicyDefinition
|
|
3982
4250
|
end
|
|
4251
|
+
class Policy < PolicyDefinition
|
|
4252
|
+
end
|
|
3983
4253
|
class Unknown < PolicyDefinition
|
|
3984
4254
|
end
|
|
3985
4255
|
end
|
|
@@ -4049,6 +4319,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
4049
4319
|
SENSITIVE: []
|
|
4050
4320
|
end
|
|
4051
4321
|
|
|
4322
|
+
class PolicyStatement
|
|
4323
|
+
attr_accessor statement: ::String
|
|
4324
|
+
SENSITIVE: []
|
|
4325
|
+
end
|
|
4326
|
+
|
|
4052
4327
|
class PolicySummary
|
|
4053
4328
|
attr_accessor policy_id: ::String
|
|
4054
4329
|
attr_accessor name: ::String
|
|
@@ -4057,6 +4332,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4057
4332
|
attr_accessor updated_at: ::Time
|
|
4058
4333
|
attr_accessor policy_arn: ::String
|
|
4059
4334
|
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
4335
|
+
attr_accessor enforcement_mode: ("ACTIVE" | "LOG_ONLY")
|
|
4060
4336
|
SENSITIVE: []
|
|
4061
4337
|
end
|
|
4062
4338
|
|
|
@@ -4085,6 +4361,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
4085
4361
|
SENSITIVE: []
|
|
4086
4362
|
end
|
|
4087
4363
|
|
|
4364
|
+
class ProviderPrefix
|
|
4365
|
+
attr_accessor strip: bool
|
|
4366
|
+
attr_accessor separator: ::String
|
|
4367
|
+
SENSITIVE: []
|
|
4368
|
+
end
|
|
4369
|
+
|
|
4088
4370
|
class PutResourcePolicyRequest
|
|
4089
4371
|
attr_accessor resource_arn: ::String
|
|
4090
4372
|
attr_accessor policy: ::String
|
|
@@ -4264,6 +4546,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4264
4546
|
class RuntimeTargetConfiguration
|
|
4265
4547
|
attr_accessor arn: ::String
|
|
4266
4548
|
attr_accessor qualifier: ::String
|
|
4549
|
+
attr_accessor schema: Types::HttpApiSchemaConfiguration
|
|
4267
4550
|
SENSITIVE: []
|
|
4268
4551
|
end
|
|
4269
4552
|
|
|
@@ -4502,6 +4785,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
4502
4785
|
SENSITIVE: [:target_name]
|
|
4503
4786
|
end
|
|
4504
4787
|
|
|
4788
|
+
class StickinessConfiguration
|
|
4789
|
+
attr_accessor identifier: ::String
|
|
4790
|
+
attr_accessor timeout: ::Integer
|
|
4791
|
+
SENSITIVE: []
|
|
4792
|
+
end
|
|
4793
|
+
|
|
4505
4794
|
class StrategyConfiguration
|
|
4506
4795
|
attr_accessor type: ("SEMANTIC_OVERRIDE" | "SUMMARY_OVERRIDE" | "USER_PREFERENCE_OVERRIDE" | "SELF_MANAGED" | "EPISODIC_OVERRIDE")
|
|
4507
4796
|
attr_accessor extraction: Types::ExtractionConfiguration
|
|
@@ -4641,6 +4930,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4641
4930
|
class TargetConfiguration
|
|
4642
4931
|
attr_accessor mcp: Types::McpTargetConfiguration
|
|
4643
4932
|
attr_accessor http: Types::HttpTargetConfiguration
|
|
4933
|
+
attr_accessor inference: Types::InferenceTargetConfiguration
|
|
4644
4934
|
attr_accessor unknown: untyped
|
|
4645
4935
|
SENSITIVE: []
|
|
4646
4936
|
|
|
@@ -4648,6 +4938,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
4648
4938
|
end
|
|
4649
4939
|
class Http < TargetConfiguration
|
|
4650
4940
|
end
|
|
4941
|
+
class Inference < TargetConfiguration
|
|
4942
|
+
end
|
|
4651
4943
|
class Unknown < TargetConfiguration
|
|
4652
4944
|
end
|
|
4653
4945
|
end
|
|
@@ -4660,6 +4952,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
4660
4952
|
attr_accessor created_at: ::Time
|
|
4661
4953
|
attr_accessor updated_at: ::Time
|
|
4662
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")
|
|
4663
4959
|
SENSITIVE: [:name, :description]
|
|
4664
4960
|
end
|
|
4665
4961
|
|
|
@@ -4943,10 +5239,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
4943
5239
|
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
|
|
4944
5240
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
|
4945
5241
|
attr_accessor kms_key_arn: ::String
|
|
5242
|
+
attr_accessor custom_transform_configuration: Types::CustomTransformConfiguration
|
|
4946
5243
|
attr_accessor interceptor_configurations: ::Array[Types::GatewayInterceptorConfiguration]
|
|
4947
5244
|
attr_accessor policy_engine_configuration: Types::GatewayPolicyEngineConfiguration
|
|
4948
5245
|
attr_accessor exception_level: ("DEBUG")
|
|
4949
|
-
|
|
5246
|
+
attr_accessor waf_configuration: Types::WafConfiguration
|
|
5247
|
+
SENSITIVE: [:description]
|
|
4950
5248
|
end
|
|
4951
5249
|
|
|
4952
5250
|
class UpdateGatewayResponse
|
|
@@ -4965,11 +5263,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
4965
5263
|
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
|
|
4966
5264
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
|
4967
5265
|
attr_accessor kms_key_arn: ::String
|
|
5266
|
+
attr_accessor custom_transform_configuration: Types::CustomTransformConfiguration
|
|
4968
5267
|
attr_accessor interceptor_configurations: ::Array[Types::GatewayInterceptorConfiguration]
|
|
4969
5268
|
attr_accessor policy_engine_configuration: Types::GatewayPolicyEngineConfiguration
|
|
4970
5269
|
attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
|
|
4971
5270
|
attr_accessor exception_level: ("DEBUG")
|
|
4972
|
-
|
|
5271
|
+
attr_accessor web_acl_arn: ::String
|
|
5272
|
+
attr_accessor waf_configuration: Types::WafConfiguration
|
|
5273
|
+
SENSITIVE: [:description]
|
|
4973
5274
|
end
|
|
4974
5275
|
|
|
4975
5276
|
class UpdateGatewayRuleRequest
|
|
@@ -5028,6 +5329,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
5028
5329
|
SENSITIVE: [:name, :description]
|
|
5029
5330
|
end
|
|
5030
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
|
+
|
|
5031
5346
|
class UpdateHarnessRequest
|
|
5032
5347
|
attr_accessor harness_id: ::String
|
|
5033
5348
|
attr_accessor client_token: ::String
|
|
@@ -5202,6 +5517,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5202
5517
|
attr_accessor description: Types::UpdatedDescription
|
|
5203
5518
|
attr_accessor definition: Types::PolicyDefinition
|
|
5204
5519
|
attr_accessor validation_mode: ("FAIL_ON_ANY_FINDINGS" | "IGNORE_ALL_FINDINGS")
|
|
5520
|
+
attr_accessor enforcement_mode: ("ACTIVE" | "LOG_ONLY")
|
|
5205
5521
|
SENSITIVE: []
|
|
5206
5522
|
end
|
|
5207
5523
|
|
|
@@ -5213,6 +5529,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5213
5529
|
attr_accessor updated_at: ::Time
|
|
5214
5530
|
attr_accessor policy_arn: ::String
|
|
5215
5531
|
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
5532
|
+
attr_accessor enforcement_mode: ("ACTIVE" | "LOG_ONLY")
|
|
5216
5533
|
attr_accessor definition: Types::PolicyDefinition
|
|
5217
5534
|
attr_accessor description: ::String
|
|
5218
5535
|
attr_accessor status_reasons: ::Array[::String]
|
|
@@ -5505,6 +5822,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
5505
5822
|
SENSITIVE: []
|
|
5506
5823
|
end
|
|
5507
5824
|
|
|
5825
|
+
class WafConfiguration
|
|
5826
|
+
attr_accessor failure_mode: ("FAIL_CLOSE" | "FAIL_OPEN")
|
|
5827
|
+
SENSITIVE: []
|
|
5828
|
+
end
|
|
5829
|
+
|
|
5508
5830
|
class WeightedOverride
|
|
5509
5831
|
attr_accessor traffic_split: ::Array[Types::TrafficSplitEntry]
|
|
5510
5832
|
SENSITIVE: []
|