aws-sdk-bedrockagentcorecontrol 1.44.0 → 1.46.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.
data/sig/types.rbs CHANGED
@@ -337,6 +337,20 @@ module Aws::BedrockAgentCoreControl
337
337
  SENSITIVE: [:description]
338
338
  end
339
339
 
340
+ class CoinbaseCdpConfigurationInput
341
+ attr_accessor api_key_id: ::String
342
+ attr_accessor api_key_secret: ::String
343
+ attr_accessor wallet_secret: ::String
344
+ SENSITIVE: [:api_key_secret, :wallet_secret]
345
+ end
346
+
347
+ class CoinbaseCdpConfigurationOutput
348
+ attr_accessor api_key_id: ::String
349
+ attr_accessor api_key_secret_arn: Types::Secret
350
+ attr_accessor wallet_secret_arn: Types::Secret
351
+ SENSITIVE: []
352
+ end
353
+
340
354
  class ComponentConfiguration
341
355
  attr_accessor configuration: untyped
342
356
  SENSITIVE: []
@@ -777,6 +791,68 @@ module Aws::BedrockAgentCoreControl
777
791
  SENSITIVE: []
778
792
  end
779
793
 
794
+ class CreatePaymentConnectorRequest
795
+ attr_accessor payment_manager_id: ::String
796
+ attr_accessor name: ::String
797
+ attr_accessor description: ::String
798
+ attr_accessor type: ("CoinbaseCDP" | "StripePrivy")
799
+ attr_accessor credential_provider_configurations: ::Array[Types::CredentialsProviderConfiguration]
800
+ attr_accessor client_token: ::String
801
+ SENSITIVE: []
802
+ end
803
+
804
+ class CreatePaymentConnectorResponse
805
+ attr_accessor payment_connector_id: ::String
806
+ attr_accessor payment_manager_id: ::String
807
+ attr_accessor name: ::String
808
+ attr_accessor type: ("CoinbaseCDP" | "StripePrivy")
809
+ attr_accessor credential_provider_configurations: ::Array[Types::CredentialsProviderConfiguration]
810
+ attr_accessor created_at: ::Time
811
+ attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
812
+ SENSITIVE: []
813
+ end
814
+
815
+ class CreatePaymentCredentialProviderRequest
816
+ attr_accessor name: ::String
817
+ attr_accessor credential_provider_vendor: ("CoinbaseCDP" | "StripePrivy")
818
+ attr_accessor provider_configuration_input: Types::PaymentProviderConfigurationInput
819
+ attr_accessor tags: ::Hash[::String, ::String]
820
+ SENSITIVE: []
821
+ end
822
+
823
+ class CreatePaymentCredentialProviderResponse
824
+ attr_accessor name: ::String
825
+ attr_accessor credential_provider_vendor: ("CoinbaseCDP" | "StripePrivy")
826
+ attr_accessor credential_provider_arn: ::String
827
+ attr_accessor provider_configuration_output: Types::PaymentProviderConfigurationOutput
828
+ SENSITIVE: []
829
+ end
830
+
831
+ class CreatePaymentManagerRequest
832
+ attr_accessor name: ::String
833
+ attr_accessor description: ::String
834
+ attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
835
+ attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
836
+ attr_accessor role_arn: ::String
837
+ attr_accessor client_token: ::String
838
+ attr_accessor tags: ::Hash[::String, ::String]
839
+ SENSITIVE: []
840
+ end
841
+
842
+ class CreatePaymentManagerResponse
843
+ attr_accessor payment_manager_arn: ::String
844
+ attr_accessor payment_manager_id: ::String
845
+ attr_accessor name: ::String
846
+ attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
847
+ attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
848
+ attr_accessor role_arn: ::String
849
+ attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
850
+ attr_accessor created_at: ::Time
851
+ attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
852
+ attr_accessor tags: ::Hash[::String, ::String]
853
+ SENSITIVE: []
854
+ end
855
+
780
856
  class CreatePolicyEngineRequest
781
857
  attr_accessor name: ::String
782
858
  attr_accessor description: ::String
@@ -789,13 +865,13 @@ module Aws::BedrockAgentCoreControl
789
865
  class CreatePolicyEngineResponse
790
866
  attr_accessor policy_engine_id: ::String
791
867
  attr_accessor name: ::String
792
- attr_accessor description: ::String
793
868
  attr_accessor created_at: ::Time
794
869
  attr_accessor updated_at: ::Time
795
870
  attr_accessor policy_engine_arn: ::String
796
871
  attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
797
- attr_accessor status_reasons: ::Array[::String]
798
872
  attr_accessor encryption_key_arn: ::String
873
+ attr_accessor description: ::String
874
+ attr_accessor status_reasons: ::Array[::String]
799
875
  SENSITIVE: [:description]
800
876
  end
801
877
 
@@ -813,12 +889,12 @@ module Aws::BedrockAgentCoreControl
813
889
  attr_accessor policy_id: ::String
814
890
  attr_accessor name: ::String
815
891
  attr_accessor policy_engine_id: ::String
816
- attr_accessor definition: Types::PolicyDefinition
817
- attr_accessor description: ::String
818
892
  attr_accessor created_at: ::Time
819
893
  attr_accessor updated_at: ::Time
820
894
  attr_accessor policy_arn: ::String
821
895
  attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
896
+ attr_accessor definition: Types::PolicyDefinition
897
+ attr_accessor description: ::String
822
898
  attr_accessor status_reasons: ::Array[::String]
823
899
  SENSITIVE: [:description]
824
900
  end
@@ -894,6 +970,20 @@ module Aws::BedrockAgentCoreControl
894
970
  SENSITIVE: []
895
971
  end
896
972
 
973
+ class CredentialsProviderConfiguration
974
+ attr_accessor coinbase_cdp: Types::PaymentCredentialProviderConfiguration
975
+ attr_accessor stripe_privy: Types::PaymentCredentialProviderConfiguration
976
+ attr_accessor unknown: untyped
977
+ SENSITIVE: []
978
+
979
+ class CoinbaseCdp < CredentialsProviderConfiguration
980
+ end
981
+ class StripePrivy < CredentialsProviderConfiguration
982
+ end
983
+ class Unknown < CredentialsProviderConfiguration
984
+ end
985
+ end
986
+
897
987
  class CustomClaimValidationType
898
988
  attr_accessor inbound_token_claim_name: ::String
899
989
  attr_accessor inbound_token_claim_value_type: ("STRING" | "STRING_ARRAY")
@@ -1267,6 +1357,39 @@ module Aws::BedrockAgentCoreControl
1267
1357
  SENSITIVE: []
1268
1358
  end
1269
1359
 
1360
+ class DeletePaymentConnectorRequest
1361
+ attr_accessor payment_manager_id: ::String
1362
+ attr_accessor payment_connector_id: ::String
1363
+ attr_accessor client_token: ::String
1364
+ SENSITIVE: []
1365
+ end
1366
+
1367
+ class DeletePaymentConnectorResponse
1368
+ attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
1369
+ attr_accessor payment_connector_id: ::String
1370
+ SENSITIVE: []
1371
+ end
1372
+
1373
+ class DeletePaymentCredentialProviderRequest
1374
+ attr_accessor name: ::String
1375
+ SENSITIVE: []
1376
+ end
1377
+
1378
+ class DeletePaymentCredentialProviderResponse < Aws::EmptyStructure
1379
+ end
1380
+
1381
+ class DeletePaymentManagerRequest
1382
+ attr_accessor payment_manager_id: ::String
1383
+ attr_accessor client_token: ::String
1384
+ SENSITIVE: []
1385
+ end
1386
+
1387
+ class DeletePaymentManagerResponse
1388
+ attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
1389
+ attr_accessor payment_manager_id: ::String
1390
+ SENSITIVE: []
1391
+ end
1392
+
1270
1393
  class DeletePolicyEngineRequest
1271
1394
  attr_accessor policy_engine_id: ::String
1272
1395
  SENSITIVE: []
@@ -1275,13 +1398,13 @@ module Aws::BedrockAgentCoreControl
1275
1398
  class DeletePolicyEngineResponse
1276
1399
  attr_accessor policy_engine_id: ::String
1277
1400
  attr_accessor name: ::String
1278
- attr_accessor description: ::String
1279
1401
  attr_accessor created_at: ::Time
1280
1402
  attr_accessor updated_at: ::Time
1281
1403
  attr_accessor policy_engine_arn: ::String
1282
1404
  attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
1283
- attr_accessor status_reasons: ::Array[::String]
1284
1405
  attr_accessor encryption_key_arn: ::String
1406
+ attr_accessor description: ::String
1407
+ attr_accessor status_reasons: ::Array[::String]
1285
1408
  SENSITIVE: [:description]
1286
1409
  end
1287
1410
 
@@ -1295,12 +1418,12 @@ module Aws::BedrockAgentCoreControl
1295
1418
  attr_accessor policy_id: ::String
1296
1419
  attr_accessor name: ::String
1297
1420
  attr_accessor policy_engine_id: ::String
1298
- attr_accessor definition: Types::PolicyDefinition
1299
- attr_accessor description: ::String
1300
1421
  attr_accessor created_at: ::Time
1301
1422
  attr_accessor updated_at: ::Time
1302
1423
  attr_accessor policy_arn: ::String
1303
1424
  attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
1425
+ attr_accessor definition: Types::PolicyDefinition
1426
+ attr_accessor description: ::String
1304
1427
  attr_accessor status_reasons: ::Array[::String]
1305
1428
  SENSITIVE: [:description]
1306
1429
  end
@@ -1951,6 +2074,61 @@ module Aws::BedrockAgentCoreControl
1951
2074
  SENSITIVE: [:description]
1952
2075
  end
1953
2076
 
2077
+ class GetPaymentConnectorRequest
2078
+ attr_accessor payment_manager_id: ::String
2079
+ attr_accessor payment_connector_id: ::String
2080
+ SENSITIVE: []
2081
+ end
2082
+
2083
+ class GetPaymentConnectorResponse
2084
+ attr_accessor payment_connector_id: ::String
2085
+ attr_accessor name: ::String
2086
+ attr_accessor description: ::String
2087
+ attr_accessor type: ("CoinbaseCDP" | "StripePrivy")
2088
+ attr_accessor credential_provider_configurations: ::Array[Types::CredentialsProviderConfiguration]
2089
+ attr_accessor created_at: ::Time
2090
+ attr_accessor last_updated_at: ::Time
2091
+ attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
2092
+ SENSITIVE: []
2093
+ end
2094
+
2095
+ class GetPaymentCredentialProviderRequest
2096
+ attr_accessor name: ::String
2097
+ SENSITIVE: []
2098
+ end
2099
+
2100
+ class GetPaymentCredentialProviderResponse
2101
+ attr_accessor name: ::String
2102
+ attr_accessor credential_provider_arn: ::String
2103
+ attr_accessor credential_provider_vendor: ("CoinbaseCDP" | "StripePrivy")
2104
+ attr_accessor provider_configuration_output: Types::PaymentProviderConfigurationOutput
2105
+ attr_accessor created_time: ::Time
2106
+ attr_accessor last_updated_time: ::Time
2107
+ attr_accessor tags: ::Hash[::String, ::String]
2108
+ SENSITIVE: []
2109
+ end
2110
+
2111
+ class GetPaymentManagerRequest
2112
+ attr_accessor payment_manager_id: ::String
2113
+ SENSITIVE: []
2114
+ end
2115
+
2116
+ class GetPaymentManagerResponse
2117
+ attr_accessor payment_manager_arn: ::String
2118
+ attr_accessor payment_manager_id: ::String
2119
+ attr_accessor name: ::String
2120
+ attr_accessor description: ::String
2121
+ attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
2122
+ attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
2123
+ attr_accessor role_arn: ::String
2124
+ attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
2125
+ attr_accessor created_at: ::Time
2126
+ attr_accessor last_updated_at: ::Time
2127
+ attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
2128
+ attr_accessor tags: ::Hash[::String, ::String]
2129
+ SENSITIVE: []
2130
+ end
2131
+
1954
2132
  class GetPolicyEngineRequest
1955
2133
  attr_accessor policy_engine_id: ::String
1956
2134
  SENSITIVE: []
@@ -1959,16 +2137,32 @@ module Aws::BedrockAgentCoreControl
1959
2137
  class GetPolicyEngineResponse
1960
2138
  attr_accessor policy_engine_id: ::String
1961
2139
  attr_accessor name: ::String
1962
- attr_accessor description: ::String
1963
2140
  attr_accessor created_at: ::Time
1964
2141
  attr_accessor updated_at: ::Time
1965
2142
  attr_accessor policy_engine_arn: ::String
1966
2143
  attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
1967
- attr_accessor status_reasons: ::Array[::String]
1968
2144
  attr_accessor encryption_key_arn: ::String
2145
+ attr_accessor description: ::String
2146
+ attr_accessor status_reasons: ::Array[::String]
1969
2147
  SENSITIVE: [:description]
1970
2148
  end
1971
2149
 
2150
+ class GetPolicyEngineSummaryRequest
2151
+ attr_accessor policy_engine_id: ::String
2152
+ SENSITIVE: []
2153
+ end
2154
+
2155
+ class GetPolicyEngineSummaryResponse
2156
+ attr_accessor policy_engine_id: ::String
2157
+ attr_accessor name: ::String
2158
+ attr_accessor created_at: ::Time
2159
+ attr_accessor updated_at: ::Time
2160
+ attr_accessor policy_engine_arn: ::String
2161
+ attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
2162
+ attr_accessor encryption_key_arn: ::String
2163
+ SENSITIVE: []
2164
+ end
2165
+
1972
2166
  class GetPolicyGenerationRequest
1973
2167
  attr_accessor policy_generation_id: ::String
1974
2168
  attr_accessor policy_engine_id: ::String
@@ -1984,7 +2178,26 @@ module Aws::BedrockAgentCoreControl
1984
2178
  attr_accessor created_at: ::Time
1985
2179
  attr_accessor updated_at: ::Time
1986
2180
  attr_accessor status: ("GENERATING" | "GENERATED" | "GENERATE_FAILED" | "DELETE_FAILED")
2181
+ attr_accessor findings: ::String
1987
2182
  attr_accessor status_reasons: ::Array[::String]
2183
+ SENSITIVE: []
2184
+ end
2185
+
2186
+ class GetPolicyGenerationSummaryRequest
2187
+ attr_accessor policy_generation_id: ::String
2188
+ attr_accessor policy_engine_id: ::String
2189
+ SENSITIVE: []
2190
+ end
2191
+
2192
+ class GetPolicyGenerationSummaryResponse
2193
+ attr_accessor policy_engine_id: ::String
2194
+ attr_accessor policy_generation_id: ::String
2195
+ attr_accessor name: ::String
2196
+ attr_accessor policy_generation_arn: ::String
2197
+ attr_accessor resource: Types::Resource
2198
+ attr_accessor created_at: ::Time
2199
+ attr_accessor updated_at: ::Time
2200
+ attr_accessor status: ("GENERATING" | "GENERATED" | "GENERATE_FAILED" | "DELETE_FAILED")
1988
2201
  attr_accessor findings: ::String
1989
2202
  SENSITIVE: []
1990
2203
  end
@@ -1999,16 +2212,33 @@ module Aws::BedrockAgentCoreControl
1999
2212
  attr_accessor policy_id: ::String
2000
2213
  attr_accessor name: ::String
2001
2214
  attr_accessor policy_engine_id: ::String
2002
- attr_accessor definition: Types::PolicyDefinition
2003
- attr_accessor description: ::String
2004
2215
  attr_accessor created_at: ::Time
2005
2216
  attr_accessor updated_at: ::Time
2006
2217
  attr_accessor policy_arn: ::String
2007
2218
  attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
2219
+ attr_accessor definition: Types::PolicyDefinition
2220
+ attr_accessor description: ::String
2008
2221
  attr_accessor status_reasons: ::Array[::String]
2009
2222
  SENSITIVE: [:description]
2010
2223
  end
2011
2224
 
2225
+ class GetPolicySummaryRequest
2226
+ attr_accessor policy_engine_id: ::String
2227
+ attr_accessor policy_id: ::String
2228
+ SENSITIVE: []
2229
+ end
2230
+
2231
+ class GetPolicySummaryResponse
2232
+ attr_accessor policy_id: ::String
2233
+ attr_accessor name: ::String
2234
+ attr_accessor policy_engine_id: ::String
2235
+ attr_accessor created_at: ::Time
2236
+ attr_accessor updated_at: ::Time
2237
+ attr_accessor policy_arn: ::String
2238
+ attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
2239
+ SENSITIVE: []
2240
+ end
2241
+
2012
2242
  class GetRegistryRecordRequest
2013
2243
  attr_accessor registry_id: ::String
2014
2244
  attr_accessor record_id: ::String
@@ -2737,6 +2967,43 @@ module Aws::BedrockAgentCoreControl
2737
2967
  SENSITIVE: []
2738
2968
  end
2739
2969
 
2970
+ class ListPaymentConnectorsRequest
2971
+ attr_accessor payment_manager_id: ::String
2972
+ attr_accessor max_results: ::Integer
2973
+ attr_accessor next_token: ::String
2974
+ SENSITIVE: []
2975
+ end
2976
+
2977
+ class ListPaymentConnectorsResponse
2978
+ attr_accessor payment_connectors: ::Array[Types::PaymentConnectorSummary]
2979
+ attr_accessor next_token: ::String
2980
+ SENSITIVE: []
2981
+ end
2982
+
2983
+ class ListPaymentCredentialProvidersRequest
2984
+ attr_accessor next_token: ::String
2985
+ attr_accessor max_results: ::Integer
2986
+ SENSITIVE: []
2987
+ end
2988
+
2989
+ class ListPaymentCredentialProvidersResponse
2990
+ attr_accessor credential_providers: ::Array[Types::PaymentCredentialProviderItem]
2991
+ attr_accessor next_token: ::String
2992
+ SENSITIVE: []
2993
+ end
2994
+
2995
+ class ListPaymentManagersRequest
2996
+ attr_accessor max_results: ::Integer
2997
+ attr_accessor next_token: ::String
2998
+ SENSITIVE: []
2999
+ end
3000
+
3001
+ class ListPaymentManagersResponse
3002
+ attr_accessor payment_managers: ::Array[Types::PaymentManagerSummary]
3003
+ attr_accessor next_token: ::String
3004
+ SENSITIVE: []
3005
+ end
3006
+
2740
3007
  class ListPoliciesRequest
2741
3008
  attr_accessor next_token: ::String
2742
3009
  attr_accessor max_results: ::Integer
@@ -2751,6 +3018,18 @@ module Aws::BedrockAgentCoreControl
2751
3018
  SENSITIVE: []
2752
3019
  end
2753
3020
 
3021
+ class ListPolicyEngineSummariesRequest
3022
+ attr_accessor next_token: ::String
3023
+ attr_accessor max_results: ::Integer
3024
+ SENSITIVE: []
3025
+ end
3026
+
3027
+ class ListPolicyEngineSummariesResponse
3028
+ attr_accessor policy_engines: ::Array[Types::PolicyEngineSummary]
3029
+ attr_accessor next_token: ::String
3030
+ SENSITIVE: []
3031
+ end
3032
+
2754
3033
  class ListPolicyEnginesRequest
2755
3034
  attr_accessor next_token: ::String
2756
3035
  attr_accessor max_results: ::Integer
@@ -2777,6 +3056,19 @@ module Aws::BedrockAgentCoreControl
2777
3056
  SENSITIVE: []
2778
3057
  end
2779
3058
 
3059
+ class ListPolicyGenerationSummariesRequest
3060
+ attr_accessor next_token: ::String
3061
+ attr_accessor max_results: ::Integer
3062
+ attr_accessor policy_engine_id: ::String
3063
+ SENSITIVE: []
3064
+ end
3065
+
3066
+ class ListPolicyGenerationSummariesResponse
3067
+ attr_accessor policy_generations: ::Array[Types::PolicyGenerationSummary]
3068
+ attr_accessor next_token: ::String
3069
+ SENSITIVE: []
3070
+ end
3071
+
2780
3072
  class ListPolicyGenerationsRequest
2781
3073
  attr_accessor next_token: ::String
2782
3074
  attr_accessor max_results: ::Integer
@@ -2790,10 +3082,25 @@ module Aws::BedrockAgentCoreControl
2790
3082
  SENSITIVE: []
2791
3083
  end
2792
3084
 
3085
+ class ListPolicySummariesRequest
3086
+ attr_accessor next_token: ::String
3087
+ attr_accessor max_results: ::Integer
3088
+ attr_accessor policy_engine_id: ::String
3089
+ attr_accessor target_resource_scope: ::String
3090
+ SENSITIVE: []
3091
+ end
3092
+
3093
+ class ListPolicySummariesResponse
3094
+ attr_accessor policies: ::Array[Types::PolicySummary]
3095
+ attr_accessor next_token: ::String
3096
+ SENSITIVE: []
3097
+ end
3098
+
2793
3099
  class ListRegistriesRequest
2794
3100
  attr_accessor max_results: ::Integer
2795
3101
  attr_accessor next_token: ::String
2796
3102
  attr_accessor status: ("CREATING" | "READY" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETING" | "DELETE_FAILED")
3103
+ attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
2797
3104
  SENSITIVE: []
2798
3105
  end
2799
3106
 
@@ -3300,16 +3607,80 @@ module Aws::BedrockAgentCoreControl
3300
3607
  SENSITIVE: []
3301
3608
  end
3302
3609
 
3610
+ class PaymentConnectorSummary
3611
+ attr_accessor payment_connector_id: ::String
3612
+ attr_accessor name: ::String
3613
+ attr_accessor type: ("CoinbaseCDP" | "StripePrivy")
3614
+ attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
3615
+ attr_accessor last_updated_at: ::Time
3616
+ SENSITIVE: []
3617
+ end
3618
+
3619
+ class PaymentCredentialProviderConfiguration
3620
+ attr_accessor credential_provider_arn: ::String
3621
+ SENSITIVE: []
3622
+ end
3623
+
3624
+ class PaymentCredentialProviderItem
3625
+ attr_accessor name: ::String
3626
+ attr_accessor credential_provider_vendor: ("CoinbaseCDP" | "StripePrivy")
3627
+ attr_accessor credential_provider_arn: ::String
3628
+ attr_accessor created_time: ::Time
3629
+ attr_accessor last_updated_time: ::Time
3630
+ SENSITIVE: []
3631
+ end
3632
+
3633
+ class PaymentManagerSummary
3634
+ attr_accessor payment_manager_arn: ::String
3635
+ attr_accessor payment_manager_id: ::String
3636
+ attr_accessor name: ::String
3637
+ attr_accessor description: ::String
3638
+ attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
3639
+ attr_accessor role_arn: ::String
3640
+ attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
3641
+ attr_accessor created_at: ::Time
3642
+ attr_accessor last_updated_at: ::Time
3643
+ SENSITIVE: []
3644
+ end
3645
+
3646
+ class PaymentProviderConfigurationInput
3647
+ attr_accessor coinbase_cdp_configuration: Types::CoinbaseCdpConfigurationInput
3648
+ attr_accessor stripe_privy_configuration: Types::StripePrivyConfigurationInput
3649
+ attr_accessor unknown: untyped
3650
+ SENSITIVE: []
3651
+
3652
+ class CoinbaseCdpConfiguration < PaymentProviderConfigurationInput
3653
+ end
3654
+ class StripePrivyConfiguration < PaymentProviderConfigurationInput
3655
+ end
3656
+ class Unknown < PaymentProviderConfigurationInput
3657
+ end
3658
+ end
3659
+
3660
+ class PaymentProviderConfigurationOutput
3661
+ attr_accessor coinbase_cdp_configuration: Types::CoinbaseCdpConfigurationOutput
3662
+ attr_accessor stripe_privy_configuration: Types::StripePrivyConfigurationOutput
3663
+ attr_accessor unknown: untyped
3664
+ SENSITIVE: []
3665
+
3666
+ class CoinbaseCdpConfiguration < PaymentProviderConfigurationOutput
3667
+ end
3668
+ class StripePrivyConfiguration < PaymentProviderConfigurationOutput
3669
+ end
3670
+ class Unknown < PaymentProviderConfigurationOutput
3671
+ end
3672
+ end
3673
+
3303
3674
  class Policy
3304
3675
  attr_accessor policy_id: ::String
3305
3676
  attr_accessor name: ::String
3306
3677
  attr_accessor policy_engine_id: ::String
3307
- attr_accessor definition: Types::PolicyDefinition
3308
- attr_accessor description: ::String
3309
3678
  attr_accessor created_at: ::Time
3310
3679
  attr_accessor updated_at: ::Time
3311
3680
  attr_accessor policy_arn: ::String
3312
3681
  attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
3682
+ attr_accessor definition: Types::PolicyDefinition
3683
+ attr_accessor description: ::String
3313
3684
  attr_accessor status_reasons: ::Array[::String]
3314
3685
  SENSITIVE: [:description]
3315
3686
  end
@@ -3331,16 +3702,27 @@ module Aws::BedrockAgentCoreControl
3331
3702
  class PolicyEngine
3332
3703
  attr_accessor policy_engine_id: ::String
3333
3704
  attr_accessor name: ::String
3334
- attr_accessor description: ::String
3335
3705
  attr_accessor created_at: ::Time
3336
3706
  attr_accessor updated_at: ::Time
3337
3707
  attr_accessor policy_engine_arn: ::String
3338
3708
  attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
3339
- attr_accessor status_reasons: ::Array[::String]
3340
3709
  attr_accessor encryption_key_arn: ::String
3710
+ attr_accessor description: ::String
3711
+ attr_accessor status_reasons: ::Array[::String]
3341
3712
  SENSITIVE: [:description]
3342
3713
  end
3343
3714
 
3715
+ class PolicyEngineSummary
3716
+ attr_accessor policy_engine_id: ::String
3717
+ attr_accessor name: ::String
3718
+ attr_accessor created_at: ::Time
3719
+ attr_accessor updated_at: ::Time
3720
+ attr_accessor policy_engine_arn: ::String
3721
+ attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
3722
+ attr_accessor encryption_key_arn: ::String
3723
+ SENSITIVE: []
3724
+ end
3725
+
3344
3726
  class PolicyGeneration
3345
3727
  attr_accessor policy_engine_id: ::String
3346
3728
  attr_accessor policy_generation_id: ::String
@@ -3350,8 +3732,8 @@ module Aws::BedrockAgentCoreControl
3350
3732
  attr_accessor created_at: ::Time
3351
3733
  attr_accessor updated_at: ::Time
3352
3734
  attr_accessor status: ("GENERATING" | "GENERATED" | "GENERATE_FAILED" | "DELETE_FAILED")
3353
- attr_accessor status_reasons: ::Array[::String]
3354
3735
  attr_accessor findings: ::String
3736
+ attr_accessor status_reasons: ::Array[::String]
3355
3737
  SENSITIVE: []
3356
3738
  end
3357
3739
 
@@ -3369,6 +3751,30 @@ module Aws::BedrockAgentCoreControl
3369
3751
  SENSITIVE: []
3370
3752
  end
3371
3753
 
3754
+ class PolicyGenerationSummary
3755
+ attr_accessor policy_engine_id: ::String
3756
+ attr_accessor policy_generation_id: ::String
3757
+ attr_accessor name: ::String
3758
+ attr_accessor policy_generation_arn: ::String
3759
+ attr_accessor resource: Types::Resource
3760
+ attr_accessor created_at: ::Time
3761
+ attr_accessor updated_at: ::Time
3762
+ attr_accessor status: ("GENERATING" | "GENERATED" | "GENERATE_FAILED" | "DELETE_FAILED")
3763
+ attr_accessor findings: ::String
3764
+ SENSITIVE: []
3765
+ end
3766
+
3767
+ class PolicySummary
3768
+ attr_accessor policy_id: ::String
3769
+ attr_accessor name: ::String
3770
+ attr_accessor policy_engine_id: ::String
3771
+ attr_accessor created_at: ::Time
3772
+ attr_accessor updated_at: ::Time
3773
+ attr_accessor policy_arn: ::String
3774
+ attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
3775
+ SENSITIVE: []
3776
+ end
3777
+
3372
3778
  class PrivateEndpoint
3373
3779
  attr_accessor self_managed_lattice_resource: Types::SelfManagedLatticeResource
3374
3780
  attr_accessor managed_vpc_resource: Types::ManagedVpcResource
@@ -3780,8 +4186,8 @@ module Aws::BedrockAgentCoreControl
3780
4186
  attr_accessor created_at: ::Time
3781
4187
  attr_accessor updated_at: ::Time
3782
4188
  attr_accessor status: ("GENERATING" | "GENERATED" | "GENERATE_FAILED" | "DELETE_FAILED")
3783
- attr_accessor status_reasons: ::Array[::String]
3784
4189
  attr_accessor findings: ::String
4190
+ attr_accessor status_reasons: ::Array[::String]
3785
4191
  SENSITIVE: []
3786
4192
  end
3787
4193
 
@@ -3837,6 +4243,22 @@ module Aws::BedrockAgentCoreControl
3837
4243
  SENSITIVE: []
3838
4244
  end
3839
4245
 
4246
+ class StripePrivyConfigurationInput
4247
+ attr_accessor app_id: ::String
4248
+ attr_accessor app_secret: ::String
4249
+ attr_accessor authorization_private_key: ::String
4250
+ attr_accessor authorization_id: ::String
4251
+ SENSITIVE: [:app_secret, :authorization_private_key]
4252
+ end
4253
+
4254
+ class StripePrivyConfigurationOutput
4255
+ attr_accessor app_id: ::String
4256
+ attr_accessor app_secret_arn: Types::Secret
4257
+ attr_accessor authorization_private_key_arn: Types::Secret
4258
+ attr_accessor authorization_id: ::String
4259
+ SENSITIVE: []
4260
+ end
4261
+
3840
4262
  class SubmitRegistryRecordForApprovalRequest
3841
4263
  attr_accessor registry_id: ::String
3842
4264
  attr_accessor record_id: ::String
@@ -4348,6 +4770,66 @@ module Aws::BedrockAgentCoreControl
4348
4770
  SENSITIVE: []
4349
4771
  end
4350
4772
 
4773
+ class UpdatePaymentConnectorRequest
4774
+ attr_accessor payment_manager_id: ::String
4775
+ attr_accessor payment_connector_id: ::String
4776
+ attr_accessor description: ::String
4777
+ attr_accessor type: ("CoinbaseCDP" | "StripePrivy")
4778
+ attr_accessor credential_provider_configurations: ::Array[Types::CredentialsProviderConfiguration]
4779
+ attr_accessor client_token: ::String
4780
+ SENSITIVE: []
4781
+ end
4782
+
4783
+ class UpdatePaymentConnectorResponse
4784
+ attr_accessor payment_connector_id: ::String
4785
+ attr_accessor payment_manager_id: ::String
4786
+ attr_accessor name: ::String
4787
+ attr_accessor type: ("CoinbaseCDP" | "StripePrivy")
4788
+ attr_accessor credential_provider_configurations: ::Array[Types::CredentialsProviderConfiguration]
4789
+ attr_accessor last_updated_at: ::Time
4790
+ attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
4791
+ SENSITIVE: []
4792
+ end
4793
+
4794
+ class UpdatePaymentCredentialProviderRequest
4795
+ attr_accessor name: ::String
4796
+ attr_accessor credential_provider_vendor: ("CoinbaseCDP" | "StripePrivy")
4797
+ attr_accessor provider_configuration_input: Types::PaymentProviderConfigurationInput
4798
+ SENSITIVE: []
4799
+ end
4800
+
4801
+ class UpdatePaymentCredentialProviderResponse
4802
+ attr_accessor name: ::String
4803
+ attr_accessor credential_provider_vendor: ("CoinbaseCDP" | "StripePrivy")
4804
+ attr_accessor credential_provider_arn: ::String
4805
+ attr_accessor provider_configuration_output: Types::PaymentProviderConfigurationOutput
4806
+ attr_accessor created_time: ::Time
4807
+ attr_accessor last_updated_time: ::Time
4808
+ SENSITIVE: []
4809
+ end
4810
+
4811
+ class UpdatePaymentManagerRequest
4812
+ attr_accessor payment_manager_id: ::String
4813
+ attr_accessor description: ::String
4814
+ attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
4815
+ attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
4816
+ attr_accessor role_arn: ::String
4817
+ attr_accessor client_token: ::String
4818
+ SENSITIVE: []
4819
+ end
4820
+
4821
+ class UpdatePaymentManagerResponse
4822
+ attr_accessor payment_manager_arn: ::String
4823
+ attr_accessor payment_manager_id: ::String
4824
+ attr_accessor name: ::String
4825
+ attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
4826
+ attr_accessor role_arn: ::String
4827
+ attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
4828
+ attr_accessor last_updated_at: ::Time
4829
+ attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
4830
+ SENSITIVE: []
4831
+ end
4832
+
4351
4833
  class UpdatePolicyEngineRequest
4352
4834
  attr_accessor policy_engine_id: ::String
4353
4835
  attr_accessor description: Types::UpdatedDescription
@@ -4357,13 +4839,13 @@ module Aws::BedrockAgentCoreControl
4357
4839
  class UpdatePolicyEngineResponse
4358
4840
  attr_accessor policy_engine_id: ::String
4359
4841
  attr_accessor name: ::String
4360
- attr_accessor description: ::String
4361
4842
  attr_accessor created_at: ::Time
4362
4843
  attr_accessor updated_at: ::Time
4363
4844
  attr_accessor policy_engine_arn: ::String
4364
4845
  attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
4365
- attr_accessor status_reasons: ::Array[::String]
4366
4846
  attr_accessor encryption_key_arn: ::String
4847
+ attr_accessor description: ::String
4848
+ attr_accessor status_reasons: ::Array[::String]
4367
4849
  SENSITIVE: [:description]
4368
4850
  end
4369
4851
 
@@ -4380,12 +4862,12 @@ module Aws::BedrockAgentCoreControl
4380
4862
  attr_accessor policy_id: ::String
4381
4863
  attr_accessor name: ::String
4382
4864
  attr_accessor policy_engine_id: ::String
4383
- attr_accessor definition: Types::PolicyDefinition
4384
- attr_accessor description: ::String
4385
4865
  attr_accessor created_at: ::Time
4386
4866
  attr_accessor updated_at: ::Time
4387
4867
  attr_accessor policy_arn: ::String
4388
4868
  attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
4869
+ attr_accessor definition: Types::PolicyDefinition
4870
+ attr_accessor description: ::String
4389
4871
  attr_accessor status_reasons: ::Array[::String]
4390
4872
  SENSITIVE: [:description]
4391
4873
  end
@@ -4672,6 +5154,7 @@ module Aws::BedrockAgentCoreControl
4672
5154
  class VpcConfig
4673
5155
  attr_accessor security_groups: ::Array[::String]
4674
5156
  attr_accessor subnets: ::Array[::String]
5157
+ attr_accessor require_service_s3_endpoint: bool
4675
5158
  SENSITIVE: []
4676
5159
  end
4677
5160