aws-sdk-bedrockagentcore 1.31.0 → 1.32.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-bedrockagentcore/client.rb +779 -2
- data/lib/aws-sdk-bedrockagentcore/client_api.rb +545 -0
- data/lib/aws-sdk-bedrockagentcore/types.rb +1430 -39
- data/lib/aws-sdk-bedrockagentcore.rb +1 -1
- data/sig/client.rbs +246 -1
- data/sig/types.rbs +421 -1
- metadata +1 -1
data/sig/types.rbs
CHANGED
|
@@ -83,6 +83,12 @@ module Aws::BedrockAgentCore
|
|
|
83
83
|
end
|
|
84
84
|
end
|
|
85
85
|
|
|
86
|
+
class Amount
|
|
87
|
+
attr_accessor value: ::String
|
|
88
|
+
attr_accessor currency: ("USD")
|
|
89
|
+
SENSITIVE: []
|
|
90
|
+
end
|
|
91
|
+
|
|
86
92
|
class AutomationStream
|
|
87
93
|
attr_accessor stream_endpoint: ::String
|
|
88
94
|
attr_accessor stream_status: ("ENABLED" | "DISABLED")
|
|
@@ -94,6 +100,12 @@ module Aws::BedrockAgentCore
|
|
|
94
100
|
SENSITIVE: []
|
|
95
101
|
end
|
|
96
102
|
|
|
103
|
+
class AvailableLimits
|
|
104
|
+
attr_accessor available_spend_amount: Types::Amount
|
|
105
|
+
attr_accessor updated_at: ::Time
|
|
106
|
+
SENSITIVE: []
|
|
107
|
+
end
|
|
108
|
+
|
|
97
109
|
class BasicAuth
|
|
98
110
|
attr_accessor secret_arn: ::String
|
|
99
111
|
SENSITIVE: []
|
|
@@ -332,6 +344,21 @@ module Aws::BedrockAgentCore
|
|
|
332
344
|
SENSITIVE: []
|
|
333
345
|
end
|
|
334
346
|
|
|
347
|
+
class CoinbaseCdpTokenRequestInput
|
|
348
|
+
attr_accessor request_method: ("GET" | "POST" | "PUT" | "DELETE" | "PATCH")
|
|
349
|
+
attr_accessor request_host: ::String
|
|
350
|
+
attr_accessor request_path: ::String
|
|
351
|
+
attr_accessor include_wallet_auth_token: bool
|
|
352
|
+
attr_accessor request_body: ::String
|
|
353
|
+
SENSITIVE: []
|
|
354
|
+
end
|
|
355
|
+
|
|
356
|
+
class CoinbaseCdpTokenResponseOutput
|
|
357
|
+
attr_accessor bearer_token: ::String
|
|
358
|
+
attr_accessor wallet_auth_token: ::String
|
|
359
|
+
SENSITIVE: [:bearer_token, :wallet_auth_token]
|
|
360
|
+
end
|
|
361
|
+
|
|
335
362
|
class CompleteResourceTokenAuthRequest
|
|
336
363
|
attr_accessor user_identifier: Types::UserIdentifier
|
|
337
364
|
attr_accessor session_uri: ::String
|
|
@@ -468,6 +495,49 @@ module Aws::BedrockAgentCore
|
|
|
468
495
|
SENSITIVE: []
|
|
469
496
|
end
|
|
470
497
|
|
|
498
|
+
class CreatePaymentInstrumentRequest
|
|
499
|
+
attr_accessor user_id: ::String
|
|
500
|
+
attr_accessor agent_name: ::String
|
|
501
|
+
attr_accessor payment_manager_arn: ::String
|
|
502
|
+
attr_accessor payment_connector_id: ::String
|
|
503
|
+
attr_accessor payment_instrument_type: ("EMBEDDED_CRYPTO_WALLET")
|
|
504
|
+
attr_accessor payment_instrument_details: Types::PaymentInstrumentDetails
|
|
505
|
+
attr_accessor client_token: ::String
|
|
506
|
+
SENSITIVE: []
|
|
507
|
+
end
|
|
508
|
+
|
|
509
|
+
class CreatePaymentInstrumentResponse
|
|
510
|
+
attr_accessor payment_instrument: Types::PaymentInstrument
|
|
511
|
+
SENSITIVE: []
|
|
512
|
+
end
|
|
513
|
+
|
|
514
|
+
class CreatePaymentSessionRequest
|
|
515
|
+
attr_accessor user_id: ::String
|
|
516
|
+
attr_accessor agent_name: ::String
|
|
517
|
+
attr_accessor payment_manager_arn: ::String
|
|
518
|
+
attr_accessor limits: Types::SessionLimits
|
|
519
|
+
attr_accessor expiry_time_in_minutes: ::Integer
|
|
520
|
+
attr_accessor client_token: ::String
|
|
521
|
+
SENSITIVE: []
|
|
522
|
+
end
|
|
523
|
+
|
|
524
|
+
class CreatePaymentSessionResponse
|
|
525
|
+
attr_accessor payment_session: Types::PaymentSession
|
|
526
|
+
SENSITIVE: []
|
|
527
|
+
end
|
|
528
|
+
|
|
529
|
+
class CryptoX402PaymentInput
|
|
530
|
+
attr_accessor version: ::String
|
|
531
|
+
attr_accessor payload: untyped
|
|
532
|
+
SENSITIVE: [:payload]
|
|
533
|
+
end
|
|
534
|
+
|
|
535
|
+
class CryptoX402PaymentOutput
|
|
536
|
+
attr_accessor version: ::String
|
|
537
|
+
attr_accessor payload: untyped
|
|
538
|
+
SENSITIVE: [:payload]
|
|
539
|
+
end
|
|
540
|
+
|
|
471
541
|
class CustomDescriptor
|
|
472
542
|
attr_accessor inline_content: ::String
|
|
473
543
|
SENSITIVE: []
|
|
@@ -532,6 +602,31 @@ module Aws::BedrockAgentCore
|
|
|
532
602
|
SENSITIVE: []
|
|
533
603
|
end
|
|
534
604
|
|
|
605
|
+
class DeletePaymentInstrumentRequest
|
|
606
|
+
attr_accessor user_id: ::String
|
|
607
|
+
attr_accessor payment_manager_arn: ::String
|
|
608
|
+
attr_accessor payment_connector_id: ::String
|
|
609
|
+
attr_accessor payment_instrument_id: ::String
|
|
610
|
+
SENSITIVE: []
|
|
611
|
+
end
|
|
612
|
+
|
|
613
|
+
class DeletePaymentInstrumentResponse
|
|
614
|
+
attr_accessor status: ("INITIATED" | "ACTIVE" | "FAILED" | "DELETED")
|
|
615
|
+
SENSITIVE: []
|
|
616
|
+
end
|
|
617
|
+
|
|
618
|
+
class DeletePaymentSessionRequest
|
|
619
|
+
attr_accessor user_id: ::String
|
|
620
|
+
attr_accessor payment_manager_arn: ::String
|
|
621
|
+
attr_accessor payment_session_id: ::String
|
|
622
|
+
SENSITIVE: []
|
|
623
|
+
end
|
|
624
|
+
|
|
625
|
+
class DeletePaymentSessionResponse
|
|
626
|
+
attr_accessor status: ("ACTIVE" | "EXPIRED" | "DELETED")
|
|
627
|
+
SENSITIVE: []
|
|
628
|
+
end
|
|
629
|
+
|
|
535
630
|
class DeleteRecommendationRequest
|
|
536
631
|
attr_accessor recommendation_id: ::String
|
|
537
632
|
SENSITIVE: []
|
|
@@ -556,6 +651,14 @@ module Aws::BedrockAgentCore
|
|
|
556
651
|
SENSITIVE: []
|
|
557
652
|
end
|
|
558
653
|
|
|
654
|
+
class EmbeddedCryptoWallet
|
|
655
|
+
attr_accessor network: ("ETHEREUM" | "SOLANA")
|
|
656
|
+
attr_accessor linked_accounts: ::Array[Types::LinkedAccount]
|
|
657
|
+
attr_accessor wallet_address: ::String
|
|
658
|
+
attr_accessor redirect_url: ::String
|
|
659
|
+
SENSITIVE: []
|
|
660
|
+
end
|
|
661
|
+
|
|
559
662
|
class EvaluateRequest
|
|
560
663
|
attr_accessor evaluator_id: ::String
|
|
561
664
|
attr_accessor evaluation_input: Types::EvaluationInput
|
|
@@ -898,6 +1001,50 @@ module Aws::BedrockAgentCore
|
|
|
898
1001
|
SENSITIVE: []
|
|
899
1002
|
end
|
|
900
1003
|
|
|
1004
|
+
class GetPaymentInstrumentBalanceRequest
|
|
1005
|
+
attr_accessor user_id: ::String
|
|
1006
|
+
attr_accessor agent_name: ::String
|
|
1007
|
+
attr_accessor payment_manager_arn: ::String
|
|
1008
|
+
attr_accessor payment_connector_id: ::String
|
|
1009
|
+
attr_accessor payment_instrument_id: ::String
|
|
1010
|
+
attr_accessor chain: ("BASE" | "BASE_SEPOLIA" | "ETHEREUM" | "SOLANA" | "SOLANA_DEVNET")
|
|
1011
|
+
attr_accessor token: ("USDC")
|
|
1012
|
+
SENSITIVE: []
|
|
1013
|
+
end
|
|
1014
|
+
|
|
1015
|
+
class GetPaymentInstrumentBalanceResponse
|
|
1016
|
+
attr_accessor payment_instrument_id: ::String
|
|
1017
|
+
attr_accessor token_balance: Types::TokenBalance
|
|
1018
|
+
SENSITIVE: []
|
|
1019
|
+
end
|
|
1020
|
+
|
|
1021
|
+
class GetPaymentInstrumentRequest
|
|
1022
|
+
attr_accessor user_id: ::String
|
|
1023
|
+
attr_accessor agent_name: ::String
|
|
1024
|
+
attr_accessor payment_manager_arn: ::String
|
|
1025
|
+
attr_accessor payment_connector_id: ::String
|
|
1026
|
+
attr_accessor payment_instrument_id: ::String
|
|
1027
|
+
SENSITIVE: []
|
|
1028
|
+
end
|
|
1029
|
+
|
|
1030
|
+
class GetPaymentInstrumentResponse
|
|
1031
|
+
attr_accessor payment_instrument: Types::PaymentInstrument
|
|
1032
|
+
SENSITIVE: []
|
|
1033
|
+
end
|
|
1034
|
+
|
|
1035
|
+
class GetPaymentSessionRequest
|
|
1036
|
+
attr_accessor user_id: ::String
|
|
1037
|
+
attr_accessor agent_name: ::String
|
|
1038
|
+
attr_accessor payment_manager_arn: ::String
|
|
1039
|
+
attr_accessor payment_session_id: ::String
|
|
1040
|
+
SENSITIVE: []
|
|
1041
|
+
end
|
|
1042
|
+
|
|
1043
|
+
class GetPaymentSessionResponse
|
|
1044
|
+
attr_accessor payment_session: Types::PaymentSession
|
|
1045
|
+
SENSITIVE: []
|
|
1046
|
+
end
|
|
1047
|
+
|
|
901
1048
|
class GetRecommendationRequest
|
|
902
1049
|
attr_accessor recommendation_id: ::String
|
|
903
1050
|
SENSITIVE: []
|
|
@@ -951,6 +1098,18 @@ module Aws::BedrockAgentCore
|
|
|
951
1098
|
SENSITIVE: [:authorization_url, :access_token]
|
|
952
1099
|
end
|
|
953
1100
|
|
|
1101
|
+
class GetResourcePaymentTokenRequest
|
|
1102
|
+
attr_accessor workload_identity_token: ::String
|
|
1103
|
+
attr_accessor resource_credential_provider_name: ::String
|
|
1104
|
+
attr_accessor payment_token_request: Types::PaymentTokenRequestInput
|
|
1105
|
+
SENSITIVE: [:workload_identity_token]
|
|
1106
|
+
end
|
|
1107
|
+
|
|
1108
|
+
class GetResourcePaymentTokenResponse
|
|
1109
|
+
attr_accessor payment_token_response: Types::PaymentTokenResponseOutput
|
|
1110
|
+
SENSITIVE: []
|
|
1111
|
+
end
|
|
1112
|
+
|
|
954
1113
|
class GetWorkloadAccessTokenForJWTRequest
|
|
955
1114
|
attr_accessor workload_name: ::String
|
|
956
1115
|
attr_accessor user_token: ::String
|
|
@@ -1551,6 +1710,65 @@ module Aws::BedrockAgentCore
|
|
|
1551
1710
|
end
|
|
1552
1711
|
end
|
|
1553
1712
|
|
|
1713
|
+
class LinkedAccount
|
|
1714
|
+
attr_accessor email: Types::LinkedAccountEmail
|
|
1715
|
+
attr_accessor sms: Types::LinkedAccountSms
|
|
1716
|
+
attr_accessor developer_jwt: Types::LinkedAccountDeveloperJwt
|
|
1717
|
+
attr_accessor o_auth_2: Types::LinkedAccountOAuth2
|
|
1718
|
+
attr_accessor unknown: untyped
|
|
1719
|
+
SENSITIVE: [:email, :sms]
|
|
1720
|
+
|
|
1721
|
+
class Email < LinkedAccount
|
|
1722
|
+
end
|
|
1723
|
+
class Sms < LinkedAccount
|
|
1724
|
+
end
|
|
1725
|
+
class DeveloperJwt < LinkedAccount
|
|
1726
|
+
end
|
|
1727
|
+
class OAuth2 < LinkedAccount
|
|
1728
|
+
end
|
|
1729
|
+
class Unknown < LinkedAccount
|
|
1730
|
+
end
|
|
1731
|
+
end
|
|
1732
|
+
|
|
1733
|
+
class LinkedAccountDeveloperJwt
|
|
1734
|
+
attr_accessor kid: ::String
|
|
1735
|
+
attr_accessor sub: ::String
|
|
1736
|
+
SENSITIVE: []
|
|
1737
|
+
end
|
|
1738
|
+
|
|
1739
|
+
class LinkedAccountEmail
|
|
1740
|
+
attr_accessor email_address: ::String
|
|
1741
|
+
SENSITIVE: [:email_address]
|
|
1742
|
+
end
|
|
1743
|
+
|
|
1744
|
+
class LinkedAccountOAuth2
|
|
1745
|
+
attr_accessor google: Types::OAuth2Authentication
|
|
1746
|
+
attr_accessor apple: Types::OAuth2Authentication
|
|
1747
|
+
attr_accessor x: Types::OAuth2Authentication
|
|
1748
|
+
attr_accessor telegram: Types::OAuth2Authentication
|
|
1749
|
+
attr_accessor github: Types::OAuth2Authentication
|
|
1750
|
+
attr_accessor unknown: untyped
|
|
1751
|
+
SENSITIVE: [:google, :apple, :x, :telegram, :github]
|
|
1752
|
+
|
|
1753
|
+
class Google < LinkedAccountOAuth2
|
|
1754
|
+
end
|
|
1755
|
+
class Apple < LinkedAccountOAuth2
|
|
1756
|
+
end
|
|
1757
|
+
class X < LinkedAccountOAuth2
|
|
1758
|
+
end
|
|
1759
|
+
class Telegram < LinkedAccountOAuth2
|
|
1760
|
+
end
|
|
1761
|
+
class Github < LinkedAccountOAuth2
|
|
1762
|
+
end
|
|
1763
|
+
class Unknown < LinkedAccountOAuth2
|
|
1764
|
+
end
|
|
1765
|
+
end
|
|
1766
|
+
|
|
1767
|
+
class LinkedAccountSms
|
|
1768
|
+
attr_accessor phone_number: ::String
|
|
1769
|
+
SENSITIVE: [:phone_number]
|
|
1770
|
+
end
|
|
1771
|
+
|
|
1554
1772
|
class ListABTestsRequest
|
|
1555
1773
|
attr_accessor max_results: ::Integer
|
|
1556
1774
|
attr_accessor next_token: ::String
|
|
@@ -1664,6 +1882,37 @@ module Aws::BedrockAgentCore
|
|
|
1664
1882
|
SENSITIVE: []
|
|
1665
1883
|
end
|
|
1666
1884
|
|
|
1885
|
+
class ListPaymentInstrumentsRequest
|
|
1886
|
+
attr_accessor user_id: ::String
|
|
1887
|
+
attr_accessor agent_name: ::String
|
|
1888
|
+
attr_accessor payment_manager_arn: ::String
|
|
1889
|
+
attr_accessor payment_connector_id: ::String
|
|
1890
|
+
attr_accessor next_token: ::String
|
|
1891
|
+
attr_accessor max_results: ::Integer
|
|
1892
|
+
SENSITIVE: []
|
|
1893
|
+
end
|
|
1894
|
+
|
|
1895
|
+
class ListPaymentInstrumentsResponse
|
|
1896
|
+
attr_accessor payment_instruments: ::Array[Types::PaymentInstrumentSummary]
|
|
1897
|
+
attr_accessor next_token: ::String
|
|
1898
|
+
SENSITIVE: []
|
|
1899
|
+
end
|
|
1900
|
+
|
|
1901
|
+
class ListPaymentSessionsRequest
|
|
1902
|
+
attr_accessor user_id: ::String
|
|
1903
|
+
attr_accessor agent_name: ::String
|
|
1904
|
+
attr_accessor payment_manager_arn: ::String
|
|
1905
|
+
attr_accessor next_token: ::String
|
|
1906
|
+
attr_accessor max_results: ::Integer
|
|
1907
|
+
SENSITIVE: []
|
|
1908
|
+
end
|
|
1909
|
+
|
|
1910
|
+
class ListPaymentSessionsResponse
|
|
1911
|
+
attr_accessor payment_sessions: ::Array[Types::PaymentSessionSummary]
|
|
1912
|
+
attr_accessor next_token: ::String
|
|
1913
|
+
SENSITIVE: []
|
|
1914
|
+
end
|
|
1915
|
+
|
|
1667
1916
|
class ListRecommendationsRequest
|
|
1668
1917
|
attr_accessor max_results: ::Integer
|
|
1669
1918
|
attr_accessor next_token: ::String
|
|
@@ -1890,11 +2139,19 @@ module Aws::BedrockAgentCore
|
|
|
1890
2139
|
SENSITIVE: []
|
|
1891
2140
|
end
|
|
1892
2141
|
|
|
2142
|
+
class OAuth2Authentication
|
|
2143
|
+
attr_accessor sub: ::String
|
|
2144
|
+
attr_accessor email_address: ::String
|
|
2145
|
+
attr_accessor name: ::String
|
|
2146
|
+
attr_accessor username: ::String
|
|
2147
|
+
SENSITIVE: [:email_address]
|
|
2148
|
+
end
|
|
2149
|
+
|
|
1893
2150
|
class OAuthCredentialProvider
|
|
1894
2151
|
attr_accessor provider_arn: ::String
|
|
1895
2152
|
attr_accessor scopes: ::Array[::String]
|
|
1896
2153
|
attr_accessor custom_parameters: ::Hash[::String, ::String]
|
|
1897
|
-
attr_accessor grant_type: ("CLIENT_CREDENTIALS" | "AUTHORIZATION_CODE")
|
|
2154
|
+
attr_accessor grant_type: ("CLIENT_CREDENTIALS" | "AUTHORIZATION_CODE" | "TOKEN_EXCHANGE")
|
|
1898
2155
|
attr_accessor default_return_url: ::String
|
|
1899
2156
|
SENSITIVE: []
|
|
1900
2157
|
end
|
|
@@ -1924,12 +2181,145 @@ module Aws::BedrockAgentCore
|
|
|
1924
2181
|
end
|
|
1925
2182
|
end
|
|
1926
2183
|
|
|
2184
|
+
class PaymentInput
|
|
2185
|
+
attr_accessor crypto_x402: Types::CryptoX402PaymentInput
|
|
2186
|
+
attr_accessor unknown: untyped
|
|
2187
|
+
SENSITIVE: []
|
|
2188
|
+
|
|
2189
|
+
class CryptoX402 < PaymentInput
|
|
2190
|
+
end
|
|
2191
|
+
class Unknown < PaymentInput
|
|
2192
|
+
end
|
|
2193
|
+
end
|
|
2194
|
+
|
|
2195
|
+
class PaymentInstrument
|
|
2196
|
+
attr_accessor payment_instrument_id: ::String
|
|
2197
|
+
attr_accessor payment_manager_arn: ::String
|
|
2198
|
+
attr_accessor payment_connector_id: ::String
|
|
2199
|
+
attr_accessor user_id: ::String
|
|
2200
|
+
attr_accessor payment_instrument_type: ("EMBEDDED_CRYPTO_WALLET")
|
|
2201
|
+
attr_accessor payment_instrument_details: Types::PaymentInstrumentDetails
|
|
2202
|
+
attr_accessor created_at: ::Time
|
|
2203
|
+
attr_accessor status: ("INITIATED" | "ACTIVE" | "FAILED" | "DELETED")
|
|
2204
|
+
attr_accessor updated_at: ::Time
|
|
2205
|
+
SENSITIVE: []
|
|
2206
|
+
end
|
|
2207
|
+
|
|
2208
|
+
class PaymentInstrumentDetails
|
|
2209
|
+
attr_accessor embedded_crypto_wallet: Types::EmbeddedCryptoWallet
|
|
2210
|
+
attr_accessor unknown: untyped
|
|
2211
|
+
SENSITIVE: []
|
|
2212
|
+
|
|
2213
|
+
class EmbeddedCryptoWallet < PaymentInstrumentDetails
|
|
2214
|
+
end
|
|
2215
|
+
class Unknown < PaymentInstrumentDetails
|
|
2216
|
+
end
|
|
2217
|
+
end
|
|
2218
|
+
|
|
2219
|
+
class PaymentInstrumentSummary
|
|
2220
|
+
attr_accessor payment_instrument_id: ::String
|
|
2221
|
+
attr_accessor payment_manager_arn: ::String
|
|
2222
|
+
attr_accessor payment_connector_id: ::String
|
|
2223
|
+
attr_accessor user_id: ::String
|
|
2224
|
+
attr_accessor payment_instrument_type: ("EMBEDDED_CRYPTO_WALLET")
|
|
2225
|
+
attr_accessor status: ("INITIATED" | "ACTIVE" | "FAILED" | "DELETED")
|
|
2226
|
+
attr_accessor created_at: ::Time
|
|
2227
|
+
attr_accessor updated_at: ::Time
|
|
2228
|
+
SENSITIVE: []
|
|
2229
|
+
end
|
|
2230
|
+
|
|
2231
|
+
class PaymentOutput
|
|
2232
|
+
attr_accessor crypto_x402: Types::CryptoX402PaymentOutput
|
|
2233
|
+
attr_accessor unknown: untyped
|
|
2234
|
+
SENSITIVE: []
|
|
2235
|
+
|
|
2236
|
+
class CryptoX402 < PaymentOutput
|
|
2237
|
+
end
|
|
2238
|
+
class Unknown < PaymentOutput
|
|
2239
|
+
end
|
|
2240
|
+
end
|
|
2241
|
+
|
|
2242
|
+
class PaymentSession
|
|
2243
|
+
attr_accessor payment_session_id: ::String
|
|
2244
|
+
attr_accessor payment_manager_arn: ::String
|
|
2245
|
+
attr_accessor limits: Types::SessionLimits
|
|
2246
|
+
attr_accessor user_id: ::String
|
|
2247
|
+
attr_accessor expiry_time_in_minutes: ::Integer
|
|
2248
|
+
attr_accessor created_at: ::Time
|
|
2249
|
+
attr_accessor available_limits: Types::AvailableLimits
|
|
2250
|
+
attr_accessor updated_at: ::Time
|
|
2251
|
+
SENSITIVE: []
|
|
2252
|
+
end
|
|
2253
|
+
|
|
2254
|
+
class PaymentSessionSummary
|
|
2255
|
+
attr_accessor payment_session_id: ::String
|
|
2256
|
+
attr_accessor payment_manager_arn: ::String
|
|
2257
|
+
attr_accessor user_id: ::String
|
|
2258
|
+
attr_accessor expiry_time_in_minutes: ::Integer
|
|
2259
|
+
attr_accessor created_at: ::Time
|
|
2260
|
+
attr_accessor updated_at: ::Time
|
|
2261
|
+
SENSITIVE: []
|
|
2262
|
+
end
|
|
2263
|
+
|
|
2264
|
+
class PaymentTokenRequestInput
|
|
2265
|
+
attr_accessor coinbase_cdp_token_request: Types::CoinbaseCdpTokenRequestInput
|
|
2266
|
+
attr_accessor stripe_privy_token_request: Types::StripePrivyTokenRequestInput
|
|
2267
|
+
attr_accessor unknown: untyped
|
|
2268
|
+
SENSITIVE: []
|
|
2269
|
+
|
|
2270
|
+
class CoinbaseCdpTokenRequest < PaymentTokenRequestInput
|
|
2271
|
+
end
|
|
2272
|
+
class StripePrivyTokenRequest < PaymentTokenRequestInput
|
|
2273
|
+
end
|
|
2274
|
+
class Unknown < PaymentTokenRequestInput
|
|
2275
|
+
end
|
|
2276
|
+
end
|
|
2277
|
+
|
|
2278
|
+
class PaymentTokenResponseOutput
|
|
2279
|
+
attr_accessor coinbase_cdp_token_response: Types::CoinbaseCdpTokenResponseOutput
|
|
2280
|
+
attr_accessor stripe_privy_token_response: Types::StripePrivyTokenResponseOutput
|
|
2281
|
+
attr_accessor unknown: untyped
|
|
2282
|
+
SENSITIVE: []
|
|
2283
|
+
|
|
2284
|
+
class CoinbaseCdpTokenResponse < PaymentTokenResponseOutput
|
|
2285
|
+
end
|
|
2286
|
+
class StripePrivyTokenResponse < PaymentTokenResponseOutput
|
|
2287
|
+
end
|
|
2288
|
+
class Unknown < PaymentTokenResponseOutput
|
|
2289
|
+
end
|
|
2290
|
+
end
|
|
2291
|
+
|
|
1927
2292
|
class PerVariantOnlineEvaluationConfig
|
|
1928
2293
|
attr_accessor name: ::String
|
|
1929
2294
|
attr_accessor online_evaluation_config_arn: ::String
|
|
1930
2295
|
SENSITIVE: []
|
|
1931
2296
|
end
|
|
1932
2297
|
|
|
2298
|
+
class ProcessPaymentRequest
|
|
2299
|
+
attr_accessor user_id: ::String
|
|
2300
|
+
attr_accessor agent_name: ::String
|
|
2301
|
+
attr_accessor payment_manager_arn: ::String
|
|
2302
|
+
attr_accessor payment_session_id: ::String
|
|
2303
|
+
attr_accessor payment_instrument_id: ::String
|
|
2304
|
+
attr_accessor payment_type: ("CRYPTO_X402")
|
|
2305
|
+
attr_accessor payment_input: Types::PaymentInput
|
|
2306
|
+
attr_accessor client_token: ::String
|
|
2307
|
+
SENSITIVE: []
|
|
2308
|
+
end
|
|
2309
|
+
|
|
2310
|
+
class ProcessPaymentResponse
|
|
2311
|
+
attr_accessor process_payment_id: ::String
|
|
2312
|
+
attr_accessor payment_manager_arn: ::String
|
|
2313
|
+
attr_accessor payment_session_id: ::String
|
|
2314
|
+
attr_accessor payment_instrument_id: ::String
|
|
2315
|
+
attr_accessor payment_type: ("CRYPTO_X402")
|
|
2316
|
+
attr_accessor status: ("PROOF_GENERATED")
|
|
2317
|
+
attr_accessor payment_output: Types::PaymentOutput
|
|
2318
|
+
attr_accessor created_at: ::Time
|
|
2319
|
+
attr_accessor updated_at: ::Time
|
|
2320
|
+
SENSITIVE: []
|
|
2321
|
+
end
|
|
2322
|
+
|
|
1933
2323
|
class Proxy
|
|
1934
2324
|
attr_accessor external_proxy: Types::ExternalProxy
|
|
1935
2325
|
attr_accessor unknown: untyped
|
|
@@ -2197,6 +2587,11 @@ module Aws::BedrockAgentCore
|
|
|
2197
2587
|
SENSITIVE: []
|
|
2198
2588
|
end
|
|
2199
2589
|
|
|
2590
|
+
class SessionLimits
|
|
2591
|
+
attr_accessor max_spend_amount: Types::Amount
|
|
2592
|
+
SENSITIVE: []
|
|
2593
|
+
end
|
|
2594
|
+
|
|
2200
2595
|
class SessionMetadataShape
|
|
2201
2596
|
attr_accessor session_id: ::String
|
|
2202
2597
|
attr_accessor test_scenario_id: ::String
|
|
@@ -2398,6 +2793,22 @@ module Aws::BedrockAgentCore
|
|
|
2398
2793
|
end
|
|
2399
2794
|
end
|
|
2400
2795
|
|
|
2796
|
+
class StripePrivyTokenRequestInput
|
|
2797
|
+
attr_accessor request_host: ::String
|
|
2798
|
+
attr_accessor request_path: ::String
|
|
2799
|
+
attr_accessor request_body: ::String
|
|
2800
|
+
attr_accessor include_authorization_signature: bool
|
|
2801
|
+
SENSITIVE: [:request_body]
|
|
2802
|
+
end
|
|
2803
|
+
|
|
2804
|
+
class StripePrivyTokenResponseOutput
|
|
2805
|
+
attr_accessor authorization_signature: ::String
|
|
2806
|
+
attr_accessor request_expiry: ::Integer
|
|
2807
|
+
attr_accessor app_id: ::String
|
|
2808
|
+
attr_accessor basic_auth_token: ::String
|
|
2809
|
+
SENSITIVE: [:authorization_signature, :basic_auth_token]
|
|
2810
|
+
end
|
|
2811
|
+
|
|
2401
2812
|
class SystemPromptConfig
|
|
2402
2813
|
attr_accessor text: ::String
|
|
2403
2814
|
attr_accessor configuration_bundle: Types::SystemPromptConfigurationBundle
|
|
@@ -2450,6 +2861,15 @@ module Aws::BedrockAgentCore
|
|
|
2450
2861
|
SENSITIVE: []
|
|
2451
2862
|
end
|
|
2452
2863
|
|
|
2864
|
+
class TokenBalance
|
|
2865
|
+
attr_accessor amount: ::String
|
|
2866
|
+
attr_accessor decimals: ::Integer
|
|
2867
|
+
attr_accessor token: ("USDC")
|
|
2868
|
+
attr_accessor network: ("ETHEREUM" | "SOLANA")
|
|
2869
|
+
attr_accessor chain: ("BASE" | "BASE_SEPOLIA" | "ETHEREUM" | "SOLANA" | "SOLANA_DEVNET")
|
|
2870
|
+
SENSITIVE: []
|
|
2871
|
+
end
|
|
2872
|
+
|
|
2453
2873
|
class TokenUsage
|
|
2454
2874
|
attr_accessor input_tokens: ::Integer
|
|
2455
2875
|
attr_accessor output_tokens: ::Integer
|