aws-sdk-bedrockagentcorecontrol 1.43.0 → 1.45.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.
@@ -1096,6 +1096,55 @@ module Aws::BedrockAgentCoreControl
1096
1096
  include Aws::Structure
1097
1097
  end
1098
1098
 
1099
+ # Coinbase CDP configuration - credentials provided by Coinbase
1100
+ # Developer Platform
1101
+ #
1102
+ # @!attribute [rw] api_key_id
1103
+ # The API key identifier provided by Coinbase Developer Platform.
1104
+ # @return [String]
1105
+ #
1106
+ # @!attribute [rw] api_key_secret
1107
+ # The API key secret provided by Coinbase Developer Platform.
1108
+ # @return [String]
1109
+ #
1110
+ # @!attribute [rw] wallet_secret
1111
+ # The wallet secret provided by Coinbase Developer Platform.
1112
+ # @return [String]
1113
+ #
1114
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CoinbaseCdpConfigurationInput AWS API Documentation
1115
+ #
1116
+ class CoinbaseCdpConfigurationInput < Struct.new(
1117
+ :api_key_id,
1118
+ :api_key_secret,
1119
+ :wallet_secret)
1120
+ SENSITIVE = [:api_key_secret, :wallet_secret]
1121
+ include Aws::Structure
1122
+ end
1123
+
1124
+ # Coinbase CDP configuration output with secret ARNs
1125
+ #
1126
+ # @!attribute [rw] api_key_id
1127
+ # The API key identifier provided by Coinbase Developer Platform.
1128
+ # @return [String]
1129
+ #
1130
+ # @!attribute [rw] api_key_secret_arn
1131
+ # Contains information about a secret in AWS Secrets Manager.
1132
+ # @return [Types::Secret]
1133
+ #
1134
+ # @!attribute [rw] wallet_secret_arn
1135
+ # Contains information about a secret in AWS Secrets Manager.
1136
+ # @return [Types::Secret]
1137
+ #
1138
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CoinbaseCdpConfigurationOutput AWS API Documentation
1139
+ #
1140
+ class CoinbaseCdpConfigurationOutput < Struct.new(
1141
+ :api_key_id,
1142
+ :api_key_secret_arn,
1143
+ :wallet_secret_arn)
1144
+ SENSITIVE = []
1145
+ include Aws::Structure
1146
+ end
1147
+
1099
1148
  # The configuration for a component within a configuration bundle. The
1100
1149
  # component type is inferred from the component identifier ARN.
1101
1150
  #
@@ -2958,6 +3007,282 @@ module Aws::BedrockAgentCoreControl
2958
3007
  include Aws::Structure
2959
3008
  end
2960
3009
 
3010
+ # @!attribute [rw] payment_manager_id
3011
+ # The unique identifier of the payment manager to create the connector
3012
+ # for.
3013
+ # @return [String]
3014
+ #
3015
+ # @!attribute [rw] name
3016
+ # The name of the payment connector.
3017
+ # @return [String]
3018
+ #
3019
+ # @!attribute [rw] description
3020
+ # A description of the payment connector.
3021
+ # @return [String]
3022
+ #
3023
+ # @!attribute [rw] type
3024
+ # The type of payment connector, which determines the payment provider
3025
+ # integration.
3026
+ # @return [String]
3027
+ #
3028
+ # @!attribute [rw] credential_provider_configurations
3029
+ # The credential provider configurations for the payment connector.
3030
+ # These configurations specify how the connector authenticates with
3031
+ # the payment provider.
3032
+ # @return [Array<Types::CredentialsProviderConfiguration>]
3033
+ #
3034
+ # @!attribute [rw] client_token
3035
+ # A unique, case-sensitive identifier to ensure that the API request
3036
+ # completes no more than one time. If you don't specify this field, a
3037
+ # value is randomly generated for you. If this token matches a
3038
+ # previous request, the service ignores the request, but doesn't
3039
+ # return an error. For more information, see [Ensuring
3040
+ # idempotency][1].
3041
+ #
3042
+ # **A suitable default value is auto-generated.** You should normally
3043
+ # not need to pass this option.
3044
+ #
3045
+ #
3046
+ #
3047
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
3048
+ # @return [String]
3049
+ #
3050
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreatePaymentConnectorRequest AWS API Documentation
3051
+ #
3052
+ class CreatePaymentConnectorRequest < Struct.new(
3053
+ :payment_manager_id,
3054
+ :name,
3055
+ :description,
3056
+ :type,
3057
+ :credential_provider_configurations,
3058
+ :client_token)
3059
+ SENSITIVE = []
3060
+ include Aws::Structure
3061
+ end
3062
+
3063
+ # @!attribute [rw] payment_connector_id
3064
+ # The unique identifier of the created payment connector.
3065
+ # @return [String]
3066
+ #
3067
+ # @!attribute [rw] payment_manager_id
3068
+ # The unique identifier of the parent payment manager.
3069
+ # @return [String]
3070
+ #
3071
+ # @!attribute [rw] name
3072
+ # The name of the created payment connector.
3073
+ # @return [String]
3074
+ #
3075
+ # @!attribute [rw] type
3076
+ # The type of the created payment connector.
3077
+ # @return [String]
3078
+ #
3079
+ # @!attribute [rw] credential_provider_configurations
3080
+ # The credential provider configurations for the created payment
3081
+ # connector.
3082
+ # @return [Array<Types::CredentialsProviderConfiguration>]
3083
+ #
3084
+ # @!attribute [rw] created_at
3085
+ # The timestamp when the payment connector was created.
3086
+ # @return [Time]
3087
+ #
3088
+ # @!attribute [rw] status
3089
+ # The current status of the payment connector. Possible values include
3090
+ # `CREATING`, `READY`, `UPDATING`, `DELETING`, `CREATE_FAILED`,
3091
+ # `UPDATE_FAILED`, and `DELETE_FAILED`.
3092
+ # @return [String]
3093
+ #
3094
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreatePaymentConnectorResponse AWS API Documentation
3095
+ #
3096
+ class CreatePaymentConnectorResponse < Struct.new(
3097
+ :payment_connector_id,
3098
+ :payment_manager_id,
3099
+ :name,
3100
+ :type,
3101
+ :credential_provider_configurations,
3102
+ :created_at,
3103
+ :status)
3104
+ SENSITIVE = []
3105
+ include Aws::Structure
3106
+ end
3107
+
3108
+ # @!attribute [rw] name
3109
+ # Unique name for the payment credential provider
3110
+ # @return [String]
3111
+ #
3112
+ # @!attribute [rw] credential_provider_vendor
3113
+ # The vendor type (e.g., CoinbaseCDP)
3114
+ # @return [String]
3115
+ #
3116
+ # @!attribute [rw] provider_configuration_input
3117
+ # Configuration specific to the vendor, including API credentials
3118
+ # @return [Types::PaymentProviderConfigurationInput]
3119
+ #
3120
+ # @!attribute [rw] tags
3121
+ # Optional tags for resource organization
3122
+ # @return [Hash<String,String>]
3123
+ #
3124
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreatePaymentCredentialProviderRequest AWS API Documentation
3125
+ #
3126
+ class CreatePaymentCredentialProviderRequest < Struct.new(
3127
+ :name,
3128
+ :credential_provider_vendor,
3129
+ :provider_configuration_input,
3130
+ :tags)
3131
+ SENSITIVE = []
3132
+ include Aws::Structure
3133
+ end
3134
+
3135
+ # @!attribute [rw] name
3136
+ # The name of the created payment credential provider.
3137
+ # @return [String]
3138
+ #
3139
+ # @!attribute [rw] credential_provider_vendor
3140
+ # Supported vendor types for payment providers using non-standard auth
3141
+ # protocols
3142
+ # @return [String]
3143
+ #
3144
+ # @!attribute [rw] credential_provider_arn
3145
+ # The Amazon Resource Name (ARN) of the created payment credential
3146
+ # provider.
3147
+ # @return [String]
3148
+ #
3149
+ # @!attribute [rw] provider_configuration_output
3150
+ # Output configuration (contains secret ARNs, excludes actual secret
3151
+ # values)
3152
+ # @return [Types::PaymentProviderConfigurationOutput]
3153
+ #
3154
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreatePaymentCredentialProviderResponse AWS API Documentation
3155
+ #
3156
+ class CreatePaymentCredentialProviderResponse < Struct.new(
3157
+ :name,
3158
+ :credential_provider_vendor,
3159
+ :credential_provider_arn,
3160
+ :provider_configuration_output)
3161
+ SENSITIVE = []
3162
+ include Aws::Structure
3163
+ end
3164
+
3165
+ # @!attribute [rw] name
3166
+ # The name of the payment manager.
3167
+ # @return [String]
3168
+ #
3169
+ # @!attribute [rw] description
3170
+ # A description of the payment manager.
3171
+ # @return [String]
3172
+ #
3173
+ # @!attribute [rw] authorizer_type
3174
+ # The type of authorizer to use for the payment manager.
3175
+ #
3176
+ # * `CUSTOM_JWT` - Authorize with a bearer token.
3177
+ #
3178
+ # * `AWS_IAM` - Authorize with your Amazon Web Services IAM
3179
+ # credentials.
3180
+ # @return [String]
3181
+ #
3182
+ # @!attribute [rw] authorizer_configuration
3183
+ # The authorizer configuration for the payment manager.
3184
+ # @return [Types::AuthorizerConfiguration]
3185
+ #
3186
+ # @!attribute [rw] role_arn
3187
+ # The Amazon Resource Name (ARN) of the IAM role that the payment
3188
+ # manager assumes to access resources on your behalf.
3189
+ # @return [String]
3190
+ #
3191
+ # @!attribute [rw] client_token
3192
+ # A unique, case-sensitive identifier to ensure that the API request
3193
+ # completes no more than one time. If you don't specify this field, a
3194
+ # value is randomly generated for you. If this token matches a
3195
+ # previous request, the service ignores the request, but doesn't
3196
+ # return an error. For more information, see [Ensuring
3197
+ # idempotency][1].
3198
+ #
3199
+ # **A suitable default value is auto-generated.** You should normally
3200
+ # not need to pass this option.
3201
+ #
3202
+ #
3203
+ #
3204
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
3205
+ # @return [String]
3206
+ #
3207
+ # @!attribute [rw] tags
3208
+ # A map of tag keys and values to assign to the payment manager.
3209
+ # @return [Hash<String,String>]
3210
+ #
3211
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreatePaymentManagerRequest AWS API Documentation
3212
+ #
3213
+ class CreatePaymentManagerRequest < Struct.new(
3214
+ :name,
3215
+ :description,
3216
+ :authorizer_type,
3217
+ :authorizer_configuration,
3218
+ :role_arn,
3219
+ :client_token,
3220
+ :tags)
3221
+ SENSITIVE = []
3222
+ include Aws::Structure
3223
+ end
3224
+
3225
+ # @!attribute [rw] payment_manager_arn
3226
+ # The Amazon Resource Name (ARN) of the created payment manager.
3227
+ # @return [String]
3228
+ #
3229
+ # @!attribute [rw] payment_manager_id
3230
+ # The unique identifier of the created payment manager.
3231
+ # @return [String]
3232
+ #
3233
+ # @!attribute [rw] name
3234
+ # The name of the created payment manager.
3235
+ # @return [String]
3236
+ #
3237
+ # @!attribute [rw] authorizer_type
3238
+ # The type of authorizer for the created payment manager.
3239
+ # @return [String]
3240
+ #
3241
+ # @!attribute [rw] authorizer_configuration
3242
+ # Represents inbound authorization configuration options used to
3243
+ # authenticate incoming requests.
3244
+ # @return [Types::AuthorizerConfiguration]
3245
+ #
3246
+ # @!attribute [rw] role_arn
3247
+ # The Amazon Resource Name (ARN) of the IAM role associated with the
3248
+ # created payment manager.
3249
+ # @return [String]
3250
+ #
3251
+ # @!attribute [rw] workload_identity_details
3252
+ # The information about the workload identity.
3253
+ # @return [Types::WorkloadIdentityDetails]
3254
+ #
3255
+ # @!attribute [rw] created_at
3256
+ # The timestamp when the payment manager was created.
3257
+ # @return [Time]
3258
+ #
3259
+ # @!attribute [rw] status
3260
+ # The current status of the payment manager. Possible values include
3261
+ # `CREATING`, `READY`, `UPDATING`, `DELETING`, `CREATE_FAILED`,
3262
+ # `UPDATE_FAILED`, and `DELETE_FAILED`.
3263
+ # @return [String]
3264
+ #
3265
+ # @!attribute [rw] tags
3266
+ # The tags associated with the created payment manager.
3267
+ # @return [Hash<String,String>]
3268
+ #
3269
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreatePaymentManagerResponse AWS API Documentation
3270
+ #
3271
+ class CreatePaymentManagerResponse < Struct.new(
3272
+ :payment_manager_arn,
3273
+ :payment_manager_id,
3274
+ :name,
3275
+ :authorizer_type,
3276
+ :authorizer_configuration,
3277
+ :role_arn,
3278
+ :workload_identity_details,
3279
+ :created_at,
3280
+ :status,
3281
+ :tags)
3282
+ SENSITIVE = []
3283
+ include Aws::Structure
3284
+ end
3285
+
2961
3286
  # @!attribute [rw] name
2962
3287
  # The customer-assigned immutable name for the policy engine. This
2963
3288
  # name identifies the policy engine and cannot be changed after
@@ -3503,6 +3828,39 @@ module Aws::BedrockAgentCoreControl
3503
3828
  include Aws::Structure
3504
3829
  end
3505
3830
 
3831
+ # The credential provider configuration for a payment connector.
3832
+ # Specifies the payment provider type and its associated credential
3833
+ # provider.
3834
+ #
3835
+ # @note CredentialsProviderConfiguration is a union - when making an API calls you must set exactly one of the members.
3836
+ #
3837
+ # @note CredentialsProviderConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of CredentialsProviderConfiguration corresponding to the set member.
3838
+ #
3839
+ # @!attribute [rw] coinbase_cdp
3840
+ # The credential provider configuration for a Coinbase CDP payment
3841
+ # connector.
3842
+ # @return [Types::PaymentCredentialProviderConfiguration]
3843
+ #
3844
+ # @!attribute [rw] stripe_privy
3845
+ # The credential provider configuration for a Stripe Privy payment
3846
+ # connector.
3847
+ # @return [Types::PaymentCredentialProviderConfiguration]
3848
+ #
3849
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CredentialsProviderConfiguration AWS API Documentation
3850
+ #
3851
+ class CredentialsProviderConfiguration < Struct.new(
3852
+ :coinbase_cdp,
3853
+ :stripe_privy,
3854
+ :unknown)
3855
+ SENSITIVE = []
3856
+ include Aws::Structure
3857
+ include Aws::Structure::Union
3858
+
3859
+ class CoinbaseCdp < CredentialsProviderConfiguration; end
3860
+ class StripePrivy < CredentialsProviderConfiguration; end
3861
+ class Unknown < CredentialsProviderConfiguration; end
3862
+ end
3863
+
3506
3864
  # Defines the name of a custom claim field and rules for finding matches
3507
3865
  # to authenticate its value.
3508
3866
  #
@@ -3780,9 +4138,8 @@ module Aws::BedrockAgentCoreControl
3780
4138
  # @return [Types::PrivateEndpoint]
3781
4139
  #
3782
4140
  # @!attribute [rw] private_endpoint_overrides
3783
- # A list of private endpoint overrides for the JWT authorizer. Each
3784
- # override maps a specific domain to a private endpoint, enabling
3785
- # secure connectivity through VPC Lattice resource configurations.
4141
+ # The private endpoint overrides for the custom JWT authorizer
4142
+ # configuration.
3786
4143
  # @return [Array<Types::PrivateEndpointOverride>]
3787
4144
  #
3788
4145
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CustomJWTAuthorizerConfiguration AWS API Documentation
@@ -3859,10 +4216,8 @@ module Aws::BedrockAgentCoreControl
3859
4216
  # @return [Types::PrivateEndpoint]
3860
4217
  #
3861
4218
  # @!attribute [rw] private_endpoint_overrides
3862
- # The list of private endpoint overrides for the custom OAuth2
3863
- # provider. Each override maps a specific domain to a private
3864
- # endpoint, enabling secure connectivity through VPC Lattice resource
3865
- # configurations.
4219
+ # The private endpoint overrides for the custom OAuth2 provider
4220
+ # configuration.
3866
4221
  # @return [Array<Types::PrivateEndpointOverride>]
3867
4222
  #
3868
4223
  # @!attribute [rw] on_behalf_of_token_exchange_config
@@ -3907,10 +4262,8 @@ module Aws::BedrockAgentCoreControl
3907
4262
  # @return [Types::PrivateEndpoint]
3908
4263
  #
3909
4264
  # @!attribute [rw] private_endpoint_overrides
3910
- # The list of private endpoint overrides for the custom OAuth2
3911
- # provider. Each override maps a specific domain to a private
3912
- # endpoint, enabling secure connectivity through VPC Lattice resource
3913
- # configurations.
4265
+ # The private endpoint overrides for the custom OAuth2 provider
4266
+ # configuration.
3914
4267
  # @return [Array<Types::PrivateEndpointOverride>]
3915
4268
  #
3916
4269
  # @!attribute [rw] on_behalf_of_token_exchange_config
@@ -4576,6 +4929,125 @@ module Aws::BedrockAgentCoreControl
4576
4929
  include Aws::Structure
4577
4930
  end
4578
4931
 
4932
+ # @!attribute [rw] payment_manager_id
4933
+ # The unique identifier of the parent payment manager.
4934
+ # @return [String]
4935
+ #
4936
+ # @!attribute [rw] payment_connector_id
4937
+ # The unique identifier of the payment connector to delete.
4938
+ # @return [String]
4939
+ #
4940
+ # @!attribute [rw] client_token
4941
+ # A unique, case-sensitive identifier to ensure that the API request
4942
+ # completes no more than one time. If you don't specify this field, a
4943
+ # value is randomly generated for you. If this token matches a
4944
+ # previous request, the service ignores the request, but doesn't
4945
+ # return an error. For more information, see [Ensuring
4946
+ # idempotency][1].
4947
+ #
4948
+ # **A suitable default value is auto-generated.** You should normally
4949
+ # not need to pass this option.
4950
+ #
4951
+ #
4952
+ #
4953
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
4954
+ # @return [String]
4955
+ #
4956
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeletePaymentConnectorRequest AWS API Documentation
4957
+ #
4958
+ class DeletePaymentConnectorRequest < Struct.new(
4959
+ :payment_manager_id,
4960
+ :payment_connector_id,
4961
+ :client_token)
4962
+ SENSITIVE = []
4963
+ include Aws::Structure
4964
+ end
4965
+
4966
+ # @!attribute [rw] status
4967
+ # The current status of the payment connector, set to `DELETING` when
4968
+ # deletion is initiated. Possible values include `CREATING`, `READY`,
4969
+ # `UPDATING`, `DELETING`, `CREATE_FAILED`, `UPDATE_FAILED`, and
4970
+ # `DELETE_FAILED`.
4971
+ # @return [String]
4972
+ #
4973
+ # @!attribute [rw] payment_connector_id
4974
+ # The unique identifier of the deleted payment connector.
4975
+ # @return [String]
4976
+ #
4977
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeletePaymentConnectorResponse AWS API Documentation
4978
+ #
4979
+ class DeletePaymentConnectorResponse < Struct.new(
4980
+ :status,
4981
+ :payment_connector_id)
4982
+ SENSITIVE = []
4983
+ include Aws::Structure
4984
+ end
4985
+
4986
+ # @!attribute [rw] name
4987
+ # The name of the payment credential provider to delete.
4988
+ # @return [String]
4989
+ #
4990
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeletePaymentCredentialProviderRequest AWS API Documentation
4991
+ #
4992
+ class DeletePaymentCredentialProviderRequest < Struct.new(
4993
+ :name)
4994
+ SENSITIVE = []
4995
+ include Aws::Structure
4996
+ end
4997
+
4998
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeletePaymentCredentialProviderResponse AWS API Documentation
4999
+ #
5000
+ class DeletePaymentCredentialProviderResponse < Aws::EmptyStructure; end
5001
+
5002
+ # @!attribute [rw] payment_manager_id
5003
+ # The unique identifier of the payment manager to delete.
5004
+ # @return [String]
5005
+ #
5006
+ # @!attribute [rw] client_token
5007
+ # A unique, case-sensitive identifier to ensure that the API request
5008
+ # completes no more than one time. If you don't specify this field, a
5009
+ # value is randomly generated for you. If this token matches a
5010
+ # previous request, the service ignores the request, but doesn't
5011
+ # return an error. For more information, see [Ensuring
5012
+ # idempotency][1].
5013
+ #
5014
+ # **A suitable default value is auto-generated.** You should normally
5015
+ # not need to pass this option.
5016
+ #
5017
+ #
5018
+ #
5019
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
5020
+ # @return [String]
5021
+ #
5022
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeletePaymentManagerRequest AWS API Documentation
5023
+ #
5024
+ class DeletePaymentManagerRequest < Struct.new(
5025
+ :payment_manager_id,
5026
+ :client_token)
5027
+ SENSITIVE = []
5028
+ include Aws::Structure
5029
+ end
5030
+
5031
+ # @!attribute [rw] status
5032
+ # The current status of the payment manager, set to `DELETING` when
5033
+ # deletion is initiated. Possible values include `CREATING`, `READY`,
5034
+ # `UPDATING`, `DELETING`, `CREATE_FAILED`, `UPDATE_FAILED`, and
5035
+ # `DELETE_FAILED`.
5036
+ # @return [String]
5037
+ #
5038
+ # @!attribute [rw] payment_manager_id
5039
+ # The unique identifier of the deleted payment manager.
5040
+ # @return [String]
5041
+ #
5042
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeletePaymentManagerResponse AWS API Documentation
5043
+ #
5044
+ class DeletePaymentManagerResponse < Struct.new(
5045
+ :status,
5046
+ :payment_manager_id)
5047
+ SENSITIVE = []
5048
+ include Aws::Structure
5049
+ end
5050
+
4579
5051
  # @!attribute [rw] policy_engine_id
4580
5052
  # The unique identifier of the policy engine to be deleted. This must
4581
5053
  # be a valid policy engine ID that exists within the account.
@@ -4862,6 +5334,29 @@ module Aws::BedrockAgentCoreControl
4862
5334
  include Aws::Structure
4863
5335
  end
4864
5336
 
5337
+ # Configuration for an Amazon EFS access point filesystem mounted into
5338
+ # the AgentCore Runtime. EFS access points provide shared file storage
5339
+ # accessible from your AgentCore Runtime sessions.
5340
+ #
5341
+ # @!attribute [rw] access_point_arn
5342
+ # The ARN of the EFS access point to mount into the AgentCore Runtime.
5343
+ # @return [String]
5344
+ #
5345
+ # @!attribute [rw] mount_path
5346
+ # The mount path for the EFS access point inside the AgentCore
5347
+ # Runtime. The path must be under `/mnt` with exactly one subdirectory
5348
+ # level (for example, `/mnt/data`).
5349
+ # @return [String]
5350
+ #
5351
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/EfsAccessPointConfiguration AWS API Documentation
5352
+ #
5353
+ class EfsAccessPointConfiguration < Struct.new(
5354
+ :access_point_arn,
5355
+ :mount_path)
5356
+ SENSITIVE = []
5357
+ include Aws::Structure
5358
+ end
5359
+
4865
5360
  # Exception thrown when encryption of a secret fails.
4866
5361
  #
4867
5362
  # @!attribute [rw] message
@@ -5373,16 +5868,30 @@ module Aws::BedrockAgentCoreControl
5373
5868
  # session invocations.
5374
5869
  # @return [Types::SessionStorageConfiguration]
5375
5870
  #
5871
+ # @!attribute [rw] s3_files_access_point
5872
+ # Configuration for an Amazon S3 Files access point to mount into the
5873
+ # AgentCore Runtime.
5874
+ # @return [Types::S3FilesAccessPointConfiguration]
5875
+ #
5876
+ # @!attribute [rw] efs_access_point
5877
+ # Configuration for an Amazon EFS access point to mount into the
5878
+ # AgentCore Runtime.
5879
+ # @return [Types::EfsAccessPointConfiguration]
5880
+ #
5376
5881
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/FilesystemConfiguration AWS API Documentation
5377
5882
  #
5378
5883
  class FilesystemConfiguration < Struct.new(
5379
5884
  :session_storage,
5885
+ :s3_files_access_point,
5886
+ :efs_access_point,
5380
5887
  :unknown)
5381
5888
  SENSITIVE = []
5382
5889
  include Aws::Structure
5383
5890
  include Aws::Structure::Union
5384
5891
 
5385
5892
  class SessionStorage < FilesystemConfiguration; end
5893
+ class S3FilesAccessPoint < FilesystemConfiguration; end
5894
+ class EfsAccessPoint < FilesystemConfiguration; end
5386
5895
  class Unknown < FilesystemConfiguration; end
5387
5896
  end
5388
5897
 
@@ -6947,7 +7456,7 @@ module Aws::BedrockAgentCoreControl
6947
7456
  # @return [String]
6948
7457
  #
6949
7458
  # @!attribute [rw] failure_reason
6950
- # The reason for the failure if the OAuth2 credential provider is in a
7459
+ # The reason for failure if the OAuth2 credential provider is in a
6951
7460
  # failed state.
6952
7461
  # @return [String]
6953
7462
  #
@@ -7032,37 +7541,248 @@ module Aws::BedrockAgentCoreControl
7032
7541
  # @return [String]
7033
7542
  #
7034
7543
  # @!attribute [rw] created_at
7035
- # The timestamp when the online evaluation configuration was created.
7544
+ # The timestamp when the online evaluation configuration was created.
7545
+ # @return [Time]
7546
+ #
7547
+ # @!attribute [rw] updated_at
7548
+ # The timestamp when the online evaluation configuration was last
7549
+ # updated.
7550
+ # @return [Time]
7551
+ #
7552
+ # @!attribute [rw] failure_reason
7553
+ # The reason for failure if the online evaluation configuration
7554
+ # execution failed.
7555
+ # @return [String]
7556
+ #
7557
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetOnlineEvaluationConfigResponse AWS API Documentation
7558
+ #
7559
+ class GetOnlineEvaluationConfigResponse < Struct.new(
7560
+ :online_evaluation_config_arn,
7561
+ :online_evaluation_config_id,
7562
+ :online_evaluation_config_name,
7563
+ :description,
7564
+ :rule,
7565
+ :data_source_config,
7566
+ :evaluators,
7567
+ :output_config,
7568
+ :evaluation_execution_role_arn,
7569
+ :status,
7570
+ :execution_status,
7571
+ :created_at,
7572
+ :updated_at,
7573
+ :failure_reason)
7574
+ SENSITIVE = [:description]
7575
+ include Aws::Structure
7576
+ end
7577
+
7578
+ # @!attribute [rw] payment_manager_id
7579
+ # The unique identifier of the parent payment manager.
7580
+ # @return [String]
7581
+ #
7582
+ # @!attribute [rw] payment_connector_id
7583
+ # The unique identifier of the payment connector to retrieve.
7584
+ # @return [String]
7585
+ #
7586
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPaymentConnectorRequest AWS API Documentation
7587
+ #
7588
+ class GetPaymentConnectorRequest < Struct.new(
7589
+ :payment_manager_id,
7590
+ :payment_connector_id)
7591
+ SENSITIVE = []
7592
+ include Aws::Structure
7593
+ end
7594
+
7595
+ # @!attribute [rw] payment_connector_id
7596
+ # The unique identifier of the payment connector.
7597
+ # @return [String]
7598
+ #
7599
+ # @!attribute [rw] name
7600
+ # The name of the payment connector.
7601
+ # @return [String]
7602
+ #
7603
+ # @!attribute [rw] description
7604
+ # The description of the payment connector.
7605
+ # @return [String]
7606
+ #
7607
+ # @!attribute [rw] type
7608
+ # The type of the payment connector, which determines the payment
7609
+ # provider integration.
7610
+ # @return [String]
7611
+ #
7612
+ # @!attribute [rw] credential_provider_configurations
7613
+ # The credential provider configurations for the payment connector.
7614
+ # @return [Array<Types::CredentialsProviderConfiguration>]
7615
+ #
7616
+ # @!attribute [rw] created_at
7617
+ # The timestamp when the payment connector was created.
7618
+ # @return [Time]
7619
+ #
7620
+ # @!attribute [rw] last_updated_at
7621
+ # The timestamp when the payment connector was last updated.
7622
+ # @return [Time]
7623
+ #
7624
+ # @!attribute [rw] status
7625
+ # The current status of the payment connector. Possible values include
7626
+ # `CREATING`, `READY`, `UPDATING`, `DELETING`, `CREATE_FAILED`,
7627
+ # `UPDATE_FAILED`, and `DELETE_FAILED`.
7628
+ # @return [String]
7629
+ #
7630
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPaymentConnectorResponse AWS API Documentation
7631
+ #
7632
+ class GetPaymentConnectorResponse < Struct.new(
7633
+ :payment_connector_id,
7634
+ :name,
7635
+ :description,
7636
+ :type,
7637
+ :credential_provider_configurations,
7638
+ :created_at,
7639
+ :last_updated_at,
7640
+ :status)
7641
+ SENSITIVE = []
7642
+ include Aws::Structure
7643
+ end
7644
+
7645
+ # @!attribute [rw] name
7646
+ # The name of the payment credential provider to retrieve.
7647
+ # @return [String]
7648
+ #
7649
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPaymentCredentialProviderRequest AWS API Documentation
7650
+ #
7651
+ class GetPaymentCredentialProviderRequest < Struct.new(
7652
+ :name)
7653
+ SENSITIVE = []
7654
+ include Aws::Structure
7655
+ end
7656
+
7657
+ # @!attribute [rw] name
7658
+ # The name of the payment credential provider.
7659
+ # @return [String]
7660
+ #
7661
+ # @!attribute [rw] credential_provider_arn
7662
+ # The Amazon Resource Name (ARN) of the payment credential provider.
7663
+ # @return [String]
7664
+ #
7665
+ # @!attribute [rw] credential_provider_vendor
7666
+ # Supported vendor types for payment providers using non-standard auth
7667
+ # protocols
7668
+ # @return [String]
7669
+ #
7670
+ # @!attribute [rw] provider_configuration_output
7671
+ # Output configuration (contains secret ARNs, excludes actual secret
7672
+ # values)
7673
+ # @return [Types::PaymentProviderConfigurationOutput]
7674
+ #
7675
+ # @!attribute [rw] created_time
7676
+ # The timestamp when the payment credential provider was created.
7677
+ # @return [Time]
7678
+ #
7679
+ # @!attribute [rw] last_updated_time
7680
+ # The timestamp when the payment credential provider was last updated.
7681
+ # @return [Time]
7682
+ #
7683
+ # @!attribute [rw] tags
7684
+ # The tags associated with the payment credential provider.
7685
+ # @return [Hash<String,String>]
7686
+ #
7687
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPaymentCredentialProviderResponse AWS API Documentation
7688
+ #
7689
+ class GetPaymentCredentialProviderResponse < Struct.new(
7690
+ :name,
7691
+ :credential_provider_arn,
7692
+ :credential_provider_vendor,
7693
+ :provider_configuration_output,
7694
+ :created_time,
7695
+ :last_updated_time,
7696
+ :tags)
7697
+ SENSITIVE = []
7698
+ include Aws::Structure
7699
+ end
7700
+
7701
+ # @!attribute [rw] payment_manager_id
7702
+ # The unique identifier of the payment manager to retrieve.
7703
+ # @return [String]
7704
+ #
7705
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPaymentManagerRequest AWS API Documentation
7706
+ #
7707
+ class GetPaymentManagerRequest < Struct.new(
7708
+ :payment_manager_id)
7709
+ SENSITIVE = []
7710
+ include Aws::Structure
7711
+ end
7712
+
7713
+ # @!attribute [rw] payment_manager_arn
7714
+ # The Amazon Resource Name (ARN) of the payment manager.
7715
+ # @return [String]
7716
+ #
7717
+ # @!attribute [rw] payment_manager_id
7718
+ # The unique identifier of the payment manager.
7719
+ # @return [String]
7720
+ #
7721
+ # @!attribute [rw] name
7722
+ # The name of the payment manager.
7723
+ # @return [String]
7724
+ #
7725
+ # @!attribute [rw] description
7726
+ # The description of the payment manager.
7727
+ # @return [String]
7728
+ #
7729
+ # @!attribute [rw] authorizer_type
7730
+ # The type of authorizer used by the payment manager.
7731
+ #
7732
+ # * `CUSTOM_JWT` - Authorize with a bearer token.
7733
+ #
7734
+ # * `AWS_IAM` - Authorize with your Amazon Web Services IAM
7735
+ # credentials.
7736
+ # @return [String]
7737
+ #
7738
+ # @!attribute [rw] authorizer_configuration
7739
+ # Represents inbound authorization configuration options used to
7740
+ # authenticate incoming requests.
7741
+ # @return [Types::AuthorizerConfiguration]
7742
+ #
7743
+ # @!attribute [rw] role_arn
7744
+ # The Amazon Resource Name (ARN) of the IAM role associated with the
7745
+ # payment manager.
7746
+ # @return [String]
7747
+ #
7748
+ # @!attribute [rw] workload_identity_details
7749
+ # The information about the workload identity.
7750
+ # @return [Types::WorkloadIdentityDetails]
7751
+ #
7752
+ # @!attribute [rw] created_at
7753
+ # The timestamp when the payment manager was created.
7036
7754
  # @return [Time]
7037
7755
  #
7038
- # @!attribute [rw] updated_at
7039
- # The timestamp when the online evaluation configuration was last
7040
- # updated.
7756
+ # @!attribute [rw] last_updated_at
7757
+ # The timestamp when the payment manager was last updated.
7041
7758
  # @return [Time]
7042
7759
  #
7043
- # @!attribute [rw] failure_reason
7044
- # The reason for failure if the online evaluation configuration
7045
- # execution failed.
7760
+ # @!attribute [rw] status
7761
+ # The current status of the payment manager. Possible values include
7762
+ # `CREATING`, `READY`, `UPDATING`, `DELETING`, `CREATE_FAILED`,
7763
+ # `UPDATE_FAILED`, and `DELETE_FAILED`.
7046
7764
  # @return [String]
7047
7765
  #
7048
- # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetOnlineEvaluationConfigResponse AWS API Documentation
7766
+ # @!attribute [rw] tags
7767
+ # The tags associated with the payment manager.
7768
+ # @return [Hash<String,String>]
7049
7769
  #
7050
- class GetOnlineEvaluationConfigResponse < Struct.new(
7051
- :online_evaluation_config_arn,
7052
- :online_evaluation_config_id,
7053
- :online_evaluation_config_name,
7770
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPaymentManagerResponse AWS API Documentation
7771
+ #
7772
+ class GetPaymentManagerResponse < Struct.new(
7773
+ :payment_manager_arn,
7774
+ :payment_manager_id,
7775
+ :name,
7054
7776
  :description,
7055
- :rule,
7056
- :data_source_config,
7057
- :evaluators,
7058
- :output_config,
7059
- :evaluation_execution_role_arn,
7060
- :status,
7061
- :execution_status,
7777
+ :authorizer_type,
7778
+ :authorizer_configuration,
7779
+ :role_arn,
7780
+ :workload_identity_details,
7062
7781
  :created_at,
7063
- :updated_at,
7064
- :failure_reason)
7065
- SENSITIVE = [:description]
7782
+ :last_updated_at,
7783
+ :status,
7784
+ :tags)
7785
+ SENSITIVE = []
7066
7786
  include Aws::Structure
7067
7787
  end
7068
7788
 
@@ -9661,6 +10381,134 @@ module Aws::BedrockAgentCoreControl
9661
10381
  include Aws::Structure
9662
10382
  end
9663
10383
 
10384
+ # @!attribute [rw] payment_manager_id
10385
+ # The unique identifier of the payment manager whose connectors to
10386
+ # list.
10387
+ # @return [String]
10388
+ #
10389
+ # @!attribute [rw] max_results
10390
+ # The maximum number of results to return in the response. If the
10391
+ # total number of results is greater than this value, use the token
10392
+ # returned in the response in the `nextToken` field when making
10393
+ # another request to return the next batch of results.
10394
+ # @return [Integer]
10395
+ #
10396
+ # @!attribute [rw] next_token
10397
+ # If the total number of results is greater than the `maxResults`
10398
+ # value provided in the request, enter the token returned in the
10399
+ # `nextToken` field in the response in this field to return the next
10400
+ # batch of results.
10401
+ # @return [String]
10402
+ #
10403
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPaymentConnectorsRequest AWS API Documentation
10404
+ #
10405
+ class ListPaymentConnectorsRequest < Struct.new(
10406
+ :payment_manager_id,
10407
+ :max_results,
10408
+ :next_token)
10409
+ SENSITIVE = []
10410
+ include Aws::Structure
10411
+ end
10412
+
10413
+ # @!attribute [rw] payment_connectors
10414
+ # The list of payment connector summaries. For details about the
10415
+ # fields in each summary, see the `PaymentConnectorSummary` data type.
10416
+ # @return [Array<Types::PaymentConnectorSummary>]
10417
+ #
10418
+ # @!attribute [rw] next_token
10419
+ # If the total number of results is greater than the `maxResults`
10420
+ # value provided in the request, use this token when making another
10421
+ # request in the `nextToken` field to return the next batch of
10422
+ # results.
10423
+ # @return [String]
10424
+ #
10425
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPaymentConnectorsResponse AWS API Documentation
10426
+ #
10427
+ class ListPaymentConnectorsResponse < Struct.new(
10428
+ :payment_connectors,
10429
+ :next_token)
10430
+ SENSITIVE = []
10431
+ include Aws::Structure
10432
+ end
10433
+
10434
+ # @!attribute [rw] next_token
10435
+ # Pagination token.
10436
+ # @return [String]
10437
+ #
10438
+ # @!attribute [rw] max_results
10439
+ # Maximum number of results to return.
10440
+ # @return [Integer]
10441
+ #
10442
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPaymentCredentialProvidersRequest AWS API Documentation
10443
+ #
10444
+ class ListPaymentCredentialProvidersRequest < Struct.new(
10445
+ :next_token,
10446
+ :max_results)
10447
+ SENSITIVE = []
10448
+ include Aws::Structure
10449
+ end
10450
+
10451
+ # @!attribute [rw] credential_providers
10452
+ # The list of payment credential providers.
10453
+ # @return [Array<Types::PaymentCredentialProviderItem>]
10454
+ #
10455
+ # @!attribute [rw] next_token
10456
+ # Pagination token for the next page of results.
10457
+ # @return [String]
10458
+ #
10459
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPaymentCredentialProvidersResponse AWS API Documentation
10460
+ #
10461
+ class ListPaymentCredentialProvidersResponse < Struct.new(
10462
+ :credential_providers,
10463
+ :next_token)
10464
+ SENSITIVE = []
10465
+ include Aws::Structure
10466
+ end
10467
+
10468
+ # @!attribute [rw] max_results
10469
+ # The maximum number of results to return in the response. If the
10470
+ # total number of results is greater than this value, use the token
10471
+ # returned in the response in the `nextToken` field when making
10472
+ # another request to return the next batch of results.
10473
+ # @return [Integer]
10474
+ #
10475
+ # @!attribute [rw] next_token
10476
+ # If the total number of results is greater than the `maxResults`
10477
+ # value provided in the request, enter the token returned in the
10478
+ # `nextToken` field in the response in this field to return the next
10479
+ # batch of results.
10480
+ # @return [String]
10481
+ #
10482
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPaymentManagersRequest AWS API Documentation
10483
+ #
10484
+ class ListPaymentManagersRequest < Struct.new(
10485
+ :max_results,
10486
+ :next_token)
10487
+ SENSITIVE = []
10488
+ include Aws::Structure
10489
+ end
10490
+
10491
+ # @!attribute [rw] payment_managers
10492
+ # The list of payment manager summaries. For details about the fields
10493
+ # in each summary, see the `PaymentManagerSummary` data type.
10494
+ # @return [Array<Types::PaymentManagerSummary>]
10495
+ #
10496
+ # @!attribute [rw] next_token
10497
+ # If the total number of results is greater than the `maxResults`
10498
+ # value provided in the request, use this token when making another
10499
+ # request in the `nextToken` field to return the next batch of
10500
+ # results.
10501
+ # @return [String]
10502
+ #
10503
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPaymentManagersResponse AWS API Documentation
10504
+ #
10505
+ class ListPaymentManagersResponse < Struct.new(
10506
+ :payment_managers,
10507
+ :next_token)
10508
+ SENSITIVE = []
10509
+ include Aws::Structure
10510
+ end
10511
+
9664
10512
  # @!attribute [rw] next_token
9665
10513
  # A pagination token returned from a previous [ListPolicies][1] call.
9666
10514
  # Use this token to retrieve the next page of results when the
@@ -11476,28 +12324,233 @@ module Aws::BedrockAgentCoreControl
11476
12324
  :online_evaluation_config_name,
11477
12325
  :description,
11478
12326
  :status,
11479
- :execution_status,
12327
+ :execution_status,
12328
+ :created_at,
12329
+ :updated_at,
12330
+ :failure_reason)
12331
+ SENSITIVE = [:description]
12332
+ include Aws::Structure
12333
+ end
12334
+
12335
+ # The configuration that specifies where evaluation results should be
12336
+ # written for monitoring and analysis.
12337
+ #
12338
+ # @!attribute [rw] cloud_watch_config
12339
+ # The CloudWatch configuration for writing evaluation results to
12340
+ # CloudWatch logs with embedded metric format.
12341
+ # @return [Types::CloudWatchOutputConfig]
12342
+ #
12343
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/OutputConfig AWS API Documentation
12344
+ #
12345
+ class OutputConfig < Struct.new(
12346
+ :cloud_watch_config)
12347
+ SENSITIVE = []
12348
+ include Aws::Structure
12349
+ end
12350
+
12351
+ # Contains summary information about a payment connector.
12352
+ #
12353
+ # @!attribute [rw] payment_connector_id
12354
+ # The unique identifier of the payment connector.
12355
+ # @return [String]
12356
+ #
12357
+ # @!attribute [rw] name
12358
+ # The name of the payment connector.
12359
+ # @return [String]
12360
+ #
12361
+ # @!attribute [rw] type
12362
+ # The type of the payment connector, which determines the payment
12363
+ # provider integration.
12364
+ # @return [String]
12365
+ #
12366
+ # @!attribute [rw] status
12367
+ # The current status of the payment connector. Possible values include
12368
+ # `CREATING`, `READY`, `UPDATING`, `DELETING`, `CREATE_FAILED`,
12369
+ # `UPDATE_FAILED`, and `DELETE_FAILED`.
12370
+ # @return [String]
12371
+ #
12372
+ # @!attribute [rw] last_updated_at
12373
+ # The timestamp when the payment connector was last updated.
12374
+ # @return [Time]
12375
+ #
12376
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PaymentConnectorSummary AWS API Documentation
12377
+ #
12378
+ class PaymentConnectorSummary < Struct.new(
12379
+ :payment_connector_id,
12380
+ :name,
12381
+ :type,
12382
+ :status,
12383
+ :last_updated_at)
12384
+ SENSITIVE = []
12385
+ include Aws::Structure
12386
+ end
12387
+
12388
+ # Configuration for a payment credential provider that stores
12389
+ # authentication credentials for a payment provider.
12390
+ #
12391
+ # @!attribute [rw] credential_provider_arn
12392
+ # The Amazon Resource Name (ARN) of the credential provider that
12393
+ # stores the authentication credentials for the payment provider.
12394
+ # @return [String]
12395
+ #
12396
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PaymentCredentialProviderConfiguration AWS API Documentation
12397
+ #
12398
+ class PaymentCredentialProviderConfiguration < Struct.new(
12399
+ :credential_provider_arn)
12400
+ SENSITIVE = []
12401
+ include Aws::Structure
12402
+ end
12403
+
12404
+ # Contains summary information about a payment credential provider.
12405
+ #
12406
+ # @!attribute [rw] name
12407
+ # The name of the payment credential provider.
12408
+ # @return [String]
12409
+ #
12410
+ # @!attribute [rw] credential_provider_vendor
12411
+ # Supported vendor types for payment providers using non-standard auth
12412
+ # protocols
12413
+ # @return [String]
12414
+ #
12415
+ # @!attribute [rw] credential_provider_arn
12416
+ # The Amazon Resource Name (ARN) of the payment credential provider.
12417
+ # @return [String]
12418
+ #
12419
+ # @!attribute [rw] created_time
12420
+ # The timestamp when the payment credential provider was created.
12421
+ # @return [Time]
12422
+ #
12423
+ # @!attribute [rw] last_updated_time
12424
+ # The timestamp when the payment credential provider was last updated.
12425
+ # @return [Time]
12426
+ #
12427
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PaymentCredentialProviderItem AWS API Documentation
12428
+ #
12429
+ class PaymentCredentialProviderItem < Struct.new(
12430
+ :name,
12431
+ :credential_provider_vendor,
12432
+ :credential_provider_arn,
12433
+ :created_time,
12434
+ :last_updated_time)
12435
+ SENSITIVE = []
12436
+ include Aws::Structure
12437
+ end
12438
+
12439
+ # Contains summary information about a payment manager.
12440
+ #
12441
+ # @!attribute [rw] payment_manager_arn
12442
+ # The Amazon Resource Name (ARN) of the payment manager.
12443
+ # @return [String]
12444
+ #
12445
+ # @!attribute [rw] payment_manager_id
12446
+ # The unique identifier of the payment manager.
12447
+ # @return [String]
12448
+ #
12449
+ # @!attribute [rw] name
12450
+ # The name of the payment manager.
12451
+ # @return [String]
12452
+ #
12453
+ # @!attribute [rw] description
12454
+ # The description of the payment manager.
12455
+ # @return [String]
12456
+ #
12457
+ # @!attribute [rw] authorizer_type
12458
+ # The type of authorizer used by the payment manager.
12459
+ #
12460
+ # * `CUSTOM_JWT` - Authorize with a bearer token.
12461
+ #
12462
+ # * `AWS_IAM` - Authorize with your Amazon Web Services IAM
12463
+ # credentials.
12464
+ # @return [String]
12465
+ #
12466
+ # @!attribute [rw] role_arn
12467
+ # The Amazon Resource Name (ARN) of the IAM role associated with the
12468
+ # payment manager.
12469
+ # @return [String]
12470
+ #
12471
+ # @!attribute [rw] status
12472
+ # The current status of the payment manager. Possible values include
12473
+ # `CREATING`, `READY`, `UPDATING`, `DELETING`, `CREATE_FAILED`,
12474
+ # `UPDATE_FAILED`, and `DELETE_FAILED`.
12475
+ # @return [String]
12476
+ #
12477
+ # @!attribute [rw] created_at
12478
+ # The timestamp when the payment manager was created.
12479
+ # @return [Time]
12480
+ #
12481
+ # @!attribute [rw] last_updated_at
12482
+ # The timestamp when the payment manager was last updated.
12483
+ # @return [Time]
12484
+ #
12485
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PaymentManagerSummary AWS API Documentation
12486
+ #
12487
+ class PaymentManagerSummary < Struct.new(
12488
+ :payment_manager_arn,
12489
+ :payment_manager_id,
12490
+ :name,
12491
+ :description,
12492
+ :authorizer_type,
12493
+ :role_arn,
12494
+ :status,
11480
12495
  :created_at,
11481
- :updated_at,
11482
- :failure_reason)
11483
- SENSITIVE = [:description]
12496
+ :last_updated_at)
12497
+ SENSITIVE = []
11484
12498
  include Aws::Structure
11485
12499
  end
11486
12500
 
11487
- # The configuration that specifies where evaluation results should be
11488
- # written for monitoring and analysis.
12501
+ # PROVIDER CONFIGURATION INPUT - Contains secrets for creation/update
11489
12502
  #
11490
- # @!attribute [rw] cloud_watch_config
11491
- # The CloudWatch configuration for writing evaluation results to
11492
- # CloudWatch logs with embedded metric format.
11493
- # @return [Types::CloudWatchOutputConfig]
12503
+ # @note PaymentProviderConfigurationInput is a union - when making an API calls you must set exactly one of the members.
11494
12504
  #
11495
- # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/OutputConfig AWS API Documentation
12505
+ # @!attribute [rw] coinbase_cdp_configuration
12506
+ # Coinbase CDP configuration - credentials provided by Coinbase
12507
+ # Developer Platform
12508
+ # @return [Types::CoinbaseCdpConfigurationInput]
11496
12509
  #
11497
- class OutputConfig < Struct.new(
11498
- :cloud_watch_config)
12510
+ # @!attribute [rw] stripe_privy_configuration
12511
+ # StripePrivy configuration - credentials provided by Stripe + Privy
12512
+ # @return [Types::StripePrivyConfigurationInput]
12513
+ #
12514
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PaymentProviderConfigurationInput AWS API Documentation
12515
+ #
12516
+ class PaymentProviderConfigurationInput < Struct.new(
12517
+ :coinbase_cdp_configuration,
12518
+ :stripe_privy_configuration,
12519
+ :unknown)
12520
+ SENSITIVE = []
12521
+ include Aws::Structure
12522
+ include Aws::Structure::Union
12523
+
12524
+ class CoinbaseCdpConfiguration < PaymentProviderConfigurationInput; end
12525
+ class StripePrivyConfiguration < PaymentProviderConfigurationInput; end
12526
+ class Unknown < PaymentProviderConfigurationInput; end
12527
+ end
12528
+
12529
+ # PROVIDER CONFIGURATION OUTPUT - No raw secrets, only ARNs
12530
+ #
12531
+ # @note PaymentProviderConfigurationOutput is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of PaymentProviderConfigurationOutput corresponding to the set member.
12532
+ #
12533
+ # @!attribute [rw] coinbase_cdp_configuration
12534
+ # Coinbase CDP configuration output with secret ARNs
12535
+ # @return [Types::CoinbaseCdpConfigurationOutput]
12536
+ #
12537
+ # @!attribute [rw] stripe_privy_configuration
12538
+ # StripePrivy configuration output with secret ARNs
12539
+ # @return [Types::StripePrivyConfigurationOutput]
12540
+ #
12541
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PaymentProviderConfigurationOutput AWS API Documentation
12542
+ #
12543
+ class PaymentProviderConfigurationOutput < Struct.new(
12544
+ :coinbase_cdp_configuration,
12545
+ :stripe_privy_configuration,
12546
+ :unknown)
11499
12547
  SENSITIVE = []
11500
12548
  include Aws::Structure
12549
+ include Aws::Structure::Union
12550
+
12551
+ class CoinbaseCdpConfiguration < PaymentProviderConfigurationOutput; end
12552
+ class StripePrivyConfiguration < PaymentProviderConfigurationOutput; end
12553
+ class Unknown < PaymentProviderConfigurationOutput; end
11501
12554
  end
11502
12555
 
11503
12556
  # Represents a complete policy resource within the AgentCore Policy
@@ -12510,6 +13563,30 @@ module Aws::BedrockAgentCoreControl
12510
13563
  include Aws::Structure
12511
13564
  end
12512
13565
 
13566
+ # Configuration for an Amazon S3 Files access point filesystem mounted
13567
+ # into the AgentCore Runtime. S3 Files access points provide shared file
13568
+ # storage accessible from your AgentCore Runtime sessions.
13569
+ #
13570
+ # @!attribute [rw] access_point_arn
13571
+ # The ARN of the S3 Files access point to mount into the AgentCore
13572
+ # Runtime.
13573
+ # @return [String]
13574
+ #
13575
+ # @!attribute [rw] mount_path
13576
+ # The mount path for the S3 Files access point inside the AgentCore
13577
+ # Runtime. The path must be under `/mnt` with exactly one subdirectory
13578
+ # level (for example, `/mnt/data`).
13579
+ # @return [String]
13580
+ #
13581
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/S3FilesAccessPointConfiguration AWS API Documentation
13582
+ #
13583
+ class S3FilesAccessPointConfiguration < Struct.new(
13584
+ :access_point_arn,
13585
+ :mount_path)
13586
+ SENSITIVE = []
13587
+ include Aws::Structure
13588
+ end
13589
+
12513
13590
  # The Amazon S3 location for storing data. This structure defines where
12514
13591
  # in Amazon S3 data is stored.
12515
13592
  #
@@ -13342,6 +14419,64 @@ module Aws::BedrockAgentCoreControl
13342
14419
  include Aws::Structure
13343
14420
  end
13344
14421
 
14422
+ # StripePrivy configuration - credentials provided by Stripe + Privy
14423
+ #
14424
+ # @!attribute [rw] app_id
14425
+ # The app ID provided by Privy.
14426
+ # @return [String]
14427
+ #
14428
+ # @!attribute [rw] app_secret
14429
+ # The app secret provided by Privy.
14430
+ # @return [String]
14431
+ #
14432
+ # @!attribute [rw] authorization_private_key
14433
+ # The authorization private key for the Stripe Privy integration.
14434
+ # @return [String]
14435
+ #
14436
+ # @!attribute [rw] authorization_id
14437
+ # The authorization ID for the Stripe Privy integration.
14438
+ # @return [String]
14439
+ #
14440
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/StripePrivyConfigurationInput AWS API Documentation
14441
+ #
14442
+ class StripePrivyConfigurationInput < Struct.new(
14443
+ :app_id,
14444
+ :app_secret,
14445
+ :authorization_private_key,
14446
+ :authorization_id)
14447
+ SENSITIVE = [:app_secret, :authorization_private_key]
14448
+ include Aws::Structure
14449
+ end
14450
+
14451
+ # StripePrivy configuration output with secret ARNs
14452
+ #
14453
+ # @!attribute [rw] app_id
14454
+ # The app ID provided by Privy.
14455
+ # @return [String]
14456
+ #
14457
+ # @!attribute [rw] app_secret_arn
14458
+ # Contains information about a secret in AWS Secrets Manager.
14459
+ # @return [Types::Secret]
14460
+ #
14461
+ # @!attribute [rw] authorization_private_key_arn
14462
+ # Contains information about a secret in AWS Secrets Manager.
14463
+ # @return [Types::Secret]
14464
+ #
14465
+ # @!attribute [rw] authorization_id
14466
+ # The authorization ID for the Stripe Privy integration.
14467
+ # @return [String]
14468
+ #
14469
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/StripePrivyConfigurationOutput AWS API Documentation
14470
+ #
14471
+ class StripePrivyConfigurationOutput < Struct.new(
14472
+ :app_id,
14473
+ :app_secret_arn,
14474
+ :authorization_private_key_arn,
14475
+ :authorization_id)
14476
+ SENSITIVE = []
14477
+ include Aws::Structure
14478
+ end
14479
+
13345
14480
  # @!attribute [rw] registry_id
13346
14481
  # The identifier of the registry containing the record. You can
13347
14482
  # specify either the Amazon Resource Name (ARN) or the ID of the
@@ -15144,7 +16279,7 @@ module Aws::BedrockAgentCoreControl
15144
16279
  # @return [Time]
15145
16280
  #
15146
16281
  # @!attribute [rw] status
15147
- # The current status of the OAuth2 credential provider.
16282
+ # The current status of the updated OAuth2 credential provider.
15148
16283
  # @return [String]
15149
16284
  #
15150
16285
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateOauth2CredentialProviderResponse AWS API Documentation
@@ -15269,6 +16404,264 @@ module Aws::BedrockAgentCoreControl
15269
16404
  include Aws::Structure
15270
16405
  end
15271
16406
 
16407
+ # @!attribute [rw] payment_manager_id
16408
+ # The unique identifier of the parent payment manager.
16409
+ # @return [String]
16410
+ #
16411
+ # @!attribute [rw] payment_connector_id
16412
+ # The unique identifier of the payment connector to update.
16413
+ # @return [String]
16414
+ #
16415
+ # @!attribute [rw] description
16416
+ # The updated description of the payment connector.
16417
+ # @return [String]
16418
+ #
16419
+ # @!attribute [rw] type
16420
+ # The updated type of the payment connector.
16421
+ # @return [String]
16422
+ #
16423
+ # @!attribute [rw] credential_provider_configurations
16424
+ # The updated credential provider configurations for the payment
16425
+ # connector.
16426
+ # @return [Array<Types::CredentialsProviderConfiguration>]
16427
+ #
16428
+ # @!attribute [rw] client_token
16429
+ # A unique, case-sensitive identifier to ensure that the API request
16430
+ # completes no more than one time. If you don't specify this field, a
16431
+ # value is randomly generated for you. If this token matches a
16432
+ # previous request, the service ignores the request, but doesn't
16433
+ # return an error. For more information, see [Ensuring
16434
+ # idempotency][1].
16435
+ #
16436
+ # **A suitable default value is auto-generated.** You should normally
16437
+ # not need to pass this option.
16438
+ #
16439
+ #
16440
+ #
16441
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
16442
+ # @return [String]
16443
+ #
16444
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatePaymentConnectorRequest AWS API Documentation
16445
+ #
16446
+ class UpdatePaymentConnectorRequest < Struct.new(
16447
+ :payment_manager_id,
16448
+ :payment_connector_id,
16449
+ :description,
16450
+ :type,
16451
+ :credential_provider_configurations,
16452
+ :client_token)
16453
+ SENSITIVE = []
16454
+ include Aws::Structure
16455
+ end
16456
+
16457
+ # @!attribute [rw] payment_connector_id
16458
+ # The unique identifier of the updated payment connector.
16459
+ # @return [String]
16460
+ #
16461
+ # @!attribute [rw] payment_manager_id
16462
+ # The unique identifier of the parent payment manager.
16463
+ # @return [String]
16464
+ #
16465
+ # @!attribute [rw] name
16466
+ # The name of the updated payment connector.
16467
+ # @return [String]
16468
+ #
16469
+ # @!attribute [rw] type
16470
+ # The type of the updated payment connector.
16471
+ # @return [String]
16472
+ #
16473
+ # @!attribute [rw] credential_provider_configurations
16474
+ # The credential provider configurations for the updated payment
16475
+ # connector.
16476
+ # @return [Array<Types::CredentialsProviderConfiguration>]
16477
+ #
16478
+ # @!attribute [rw] last_updated_at
16479
+ # The timestamp when the payment connector was last updated.
16480
+ # @return [Time]
16481
+ #
16482
+ # @!attribute [rw] status
16483
+ # The current status of the updated payment connector. Possible values
16484
+ # include `CREATING`, `READY`, `UPDATING`, `DELETING`,
16485
+ # `CREATE_FAILED`, `UPDATE_FAILED`, and `DELETE_FAILED`.
16486
+ # @return [String]
16487
+ #
16488
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatePaymentConnectorResponse AWS API Documentation
16489
+ #
16490
+ class UpdatePaymentConnectorResponse < Struct.new(
16491
+ :payment_connector_id,
16492
+ :payment_manager_id,
16493
+ :name,
16494
+ :type,
16495
+ :credential_provider_configurations,
16496
+ :last_updated_at,
16497
+ :status)
16498
+ SENSITIVE = []
16499
+ include Aws::Structure
16500
+ end
16501
+
16502
+ # @!attribute [rw] name
16503
+ # The name of the payment credential provider to update.
16504
+ # @return [String]
16505
+ #
16506
+ # @!attribute [rw] credential_provider_vendor
16507
+ # Supported vendor types for payment providers using non-standard auth
16508
+ # protocols
16509
+ # @return [String]
16510
+ #
16511
+ # @!attribute [rw] provider_configuration_input
16512
+ # Configuration specific to the vendor, including API credentials
16513
+ # @return [Types::PaymentProviderConfigurationInput]
16514
+ #
16515
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatePaymentCredentialProviderRequest AWS API Documentation
16516
+ #
16517
+ class UpdatePaymentCredentialProviderRequest < Struct.new(
16518
+ :name,
16519
+ :credential_provider_vendor,
16520
+ :provider_configuration_input)
16521
+ SENSITIVE = []
16522
+ include Aws::Structure
16523
+ end
16524
+
16525
+ # @!attribute [rw] name
16526
+ # The name of the updated payment credential provider.
16527
+ # @return [String]
16528
+ #
16529
+ # @!attribute [rw] credential_provider_vendor
16530
+ # Supported vendor types for payment providers using non-standard auth
16531
+ # protocols
16532
+ # @return [String]
16533
+ #
16534
+ # @!attribute [rw] credential_provider_arn
16535
+ # The Amazon Resource Name (ARN) of the updated payment credential
16536
+ # provider.
16537
+ # @return [String]
16538
+ #
16539
+ # @!attribute [rw] provider_configuration_output
16540
+ # Output configuration (contains secret ARNs, excludes actual secret
16541
+ # values)
16542
+ # @return [Types::PaymentProviderConfigurationOutput]
16543
+ #
16544
+ # @!attribute [rw] created_time
16545
+ # The timestamp when the payment credential provider was created.
16546
+ # @return [Time]
16547
+ #
16548
+ # @!attribute [rw] last_updated_time
16549
+ # The timestamp when the payment credential provider was last updated.
16550
+ # @return [Time]
16551
+ #
16552
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatePaymentCredentialProviderResponse AWS API Documentation
16553
+ #
16554
+ class UpdatePaymentCredentialProviderResponse < Struct.new(
16555
+ :name,
16556
+ :credential_provider_vendor,
16557
+ :credential_provider_arn,
16558
+ :provider_configuration_output,
16559
+ :created_time,
16560
+ :last_updated_time)
16561
+ SENSITIVE = []
16562
+ include Aws::Structure
16563
+ end
16564
+
16565
+ # @!attribute [rw] payment_manager_id
16566
+ # The unique identifier of the payment manager to update.
16567
+ # @return [String]
16568
+ #
16569
+ # @!attribute [rw] description
16570
+ # The updated description of the payment manager.
16571
+ # @return [String]
16572
+ #
16573
+ # @!attribute [rw] authorizer_type
16574
+ # The updated authorizer type for the payment manager.
16575
+ # @return [String]
16576
+ #
16577
+ # @!attribute [rw] authorizer_configuration
16578
+ # The updated authorizer configuration for the payment manager.
16579
+ # @return [Types::AuthorizerConfiguration]
16580
+ #
16581
+ # @!attribute [rw] role_arn
16582
+ # The updated Amazon Resource Name (ARN) of the IAM role for the
16583
+ # payment manager.
16584
+ # @return [String]
16585
+ #
16586
+ # @!attribute [rw] client_token
16587
+ # A unique, case-sensitive identifier to ensure that the API request
16588
+ # completes no more than one time. If you don't specify this field, a
16589
+ # value is randomly generated for you. If this token matches a
16590
+ # previous request, the service ignores the request, but doesn't
16591
+ # return an error. For more information, see [Ensuring
16592
+ # idempotency][1].
16593
+ #
16594
+ # **A suitable default value is auto-generated.** You should normally
16595
+ # not need to pass this option.
16596
+ #
16597
+ #
16598
+ #
16599
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
16600
+ # @return [String]
16601
+ #
16602
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatePaymentManagerRequest AWS API Documentation
16603
+ #
16604
+ class UpdatePaymentManagerRequest < Struct.new(
16605
+ :payment_manager_id,
16606
+ :description,
16607
+ :authorizer_type,
16608
+ :authorizer_configuration,
16609
+ :role_arn,
16610
+ :client_token)
16611
+ SENSITIVE = []
16612
+ include Aws::Structure
16613
+ end
16614
+
16615
+ # @!attribute [rw] payment_manager_arn
16616
+ # The Amazon Resource Name (ARN) of the updated payment manager.
16617
+ # @return [String]
16618
+ #
16619
+ # @!attribute [rw] payment_manager_id
16620
+ # The unique identifier of the updated payment manager.
16621
+ # @return [String]
16622
+ #
16623
+ # @!attribute [rw] name
16624
+ # The name of the updated payment manager.
16625
+ # @return [String]
16626
+ #
16627
+ # @!attribute [rw] authorizer_type
16628
+ # The type of authorizer for the updated payment manager.
16629
+ # @return [String]
16630
+ #
16631
+ # @!attribute [rw] role_arn
16632
+ # The Amazon Resource Name (ARN) of the IAM role associated with the
16633
+ # updated payment manager.
16634
+ # @return [String]
16635
+ #
16636
+ # @!attribute [rw] workload_identity_details
16637
+ # The information about the workload identity.
16638
+ # @return [Types::WorkloadIdentityDetails]
16639
+ #
16640
+ # @!attribute [rw] last_updated_at
16641
+ # The timestamp when the payment manager was last updated.
16642
+ # @return [Time]
16643
+ #
16644
+ # @!attribute [rw] status
16645
+ # The current status of the updated payment manager. Possible values
16646
+ # include `CREATING`, `READY`, `UPDATING`, `DELETING`,
16647
+ # `CREATE_FAILED`, `UPDATE_FAILED`, and `DELETE_FAILED`.
16648
+ # @return [String]
16649
+ #
16650
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatePaymentManagerResponse AWS API Documentation
16651
+ #
16652
+ class UpdatePaymentManagerResponse < Struct.new(
16653
+ :payment_manager_arn,
16654
+ :payment_manager_id,
16655
+ :name,
16656
+ :authorizer_type,
16657
+ :role_arn,
16658
+ :workload_identity_details,
16659
+ :last_updated_at,
16660
+ :status)
16661
+ SENSITIVE = []
16662
+ include Aws::Structure
16663
+ end
16664
+
15272
16665
  # @!attribute [rw] policy_engine_id
15273
16666
  # The unique identifier of the policy engine to be updated.
15274
16667
  # @return [String]