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.
@@ -640,6 +640,14 @@ module Aws::BedrockAgentCoreControl
640
640
  # session_storage: {
641
641
  # mount_path: "MountPath", # required
642
642
  # },
643
+ # s3_files_access_point: {
644
+ # access_point_arn: "S3FilesAccessPointArn", # required
645
+ # mount_path: "MountPath", # required
646
+ # },
647
+ # efs_access_point: {
648
+ # access_point_arn: "EfsAccessPointArn", # required
649
+ # mount_path: "MountPath", # required
650
+ # },
643
651
  # },
644
652
  # ],
645
653
  # tags: {
@@ -2136,6 +2144,14 @@ module Aws::BedrockAgentCoreControl
2136
2144
  # session_storage: {
2137
2145
  # mount_path: "MountPath", # required
2138
2146
  # },
2147
+ # s3_files_access_point: {
2148
+ # access_point_arn: "S3FilesAccessPointArn", # required
2149
+ # mount_path: "MountPath", # required
2150
+ # },
2151
+ # efs_access_point: {
2152
+ # access_point_arn: "EfsAccessPointArn", # required
2153
+ # mount_path: "MountPath", # required
2154
+ # },
2139
2155
  # },
2140
2156
  # ],
2141
2157
  # },
@@ -2380,6 +2396,10 @@ module Aws::BedrockAgentCoreControl
2380
2396
  # resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.subnets[0] #=> String
2381
2397
  # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations #=> Array
2382
2398
  # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].session_storage.mount_path #=> String
2399
+ # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].s3_files_access_point.access_point_arn #=> String
2400
+ # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].s3_files_access_point.mount_path #=> String
2401
+ # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].efs_access_point.access_point_arn #=> String
2402
+ # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].efs_access_point.mount_path #=> String
2383
2403
  # resp.harness.environment_artifact.container_configuration.container_uri #=> String
2384
2404
  # resp.harness.environment_variables #=> Hash
2385
2405
  # resp.harness.environment_variables["EnvironmentVariableKey"] #=> String
@@ -3318,6 +3338,347 @@ module Aws::BedrockAgentCoreControl
3318
3338
  req.send_request(options)
3319
3339
  end
3320
3340
 
3341
+ # Creates a new payment connector for a payment manager. A payment
3342
+ # connector integrates with a supported payment provider to enable
3343
+ # payment processing capabilities.
3344
+ #
3345
+ # @option params [required, String] :payment_manager_id
3346
+ # The unique identifier of the payment manager to create the connector
3347
+ # for.
3348
+ #
3349
+ # @option params [required, String] :name
3350
+ # The name of the payment connector.
3351
+ #
3352
+ # @option params [String] :description
3353
+ # A description of the payment connector.
3354
+ #
3355
+ # @option params [required, String] :type
3356
+ # The type of payment connector, which determines the payment provider
3357
+ # integration.
3358
+ #
3359
+ # @option params [required, Array<Types::CredentialsProviderConfiguration>] :credential_provider_configurations
3360
+ # The credential provider configurations for the payment connector.
3361
+ # These configurations specify how the connector authenticates with the
3362
+ # payment provider.
3363
+ #
3364
+ # @option params [String] :client_token
3365
+ # A unique, case-sensitive identifier to ensure that the API request
3366
+ # completes no more than one time. If you don't specify this field, a
3367
+ # value is randomly generated for you. If this token matches a previous
3368
+ # request, the service ignores the request, but doesn't return an
3369
+ # error. For more information, see [Ensuring idempotency][1].
3370
+ #
3371
+ # **A suitable default value is auto-generated.** You should normally
3372
+ # not need to pass this option.**
3373
+ #
3374
+ #
3375
+ #
3376
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
3377
+ #
3378
+ # @return [Types::CreatePaymentConnectorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3379
+ #
3380
+ # * {Types::CreatePaymentConnectorResponse#payment_connector_id #payment_connector_id} => String
3381
+ # * {Types::CreatePaymentConnectorResponse#payment_manager_id #payment_manager_id} => String
3382
+ # * {Types::CreatePaymentConnectorResponse#name #name} => String
3383
+ # * {Types::CreatePaymentConnectorResponse#type #type} => String
3384
+ # * {Types::CreatePaymentConnectorResponse#credential_provider_configurations #credential_provider_configurations} => Array&lt;Types::CredentialsProviderConfiguration&gt;
3385
+ # * {Types::CreatePaymentConnectorResponse#created_at #created_at} => Time
3386
+ # * {Types::CreatePaymentConnectorResponse#status #status} => String
3387
+ #
3388
+ # @example Request syntax with placeholder values
3389
+ #
3390
+ # resp = client.create_payment_connector({
3391
+ # payment_manager_id: "PaymentManagerId", # required
3392
+ # name: "PaymentConnectorName", # required
3393
+ # description: "PaymentsDescription",
3394
+ # type: "CoinbaseCDP", # required, accepts CoinbaseCDP, StripePrivy
3395
+ # credential_provider_configurations: [ # required
3396
+ # {
3397
+ # coinbase_cdp: {
3398
+ # credential_provider_arn: "PaymentCredentialProviderArn", # required
3399
+ # },
3400
+ # stripe_privy: {
3401
+ # credential_provider_arn: "PaymentCredentialProviderArn", # required
3402
+ # },
3403
+ # },
3404
+ # ],
3405
+ # client_token: "ClientToken",
3406
+ # })
3407
+ #
3408
+ # @example Response structure
3409
+ #
3410
+ # resp.payment_connector_id #=> String
3411
+ # resp.payment_manager_id #=> String
3412
+ # resp.name #=> String
3413
+ # resp.type #=> String, one of "CoinbaseCDP", "StripePrivy"
3414
+ # resp.credential_provider_configurations #=> Array
3415
+ # resp.credential_provider_configurations[0].coinbase_cdp.credential_provider_arn #=> String
3416
+ # resp.credential_provider_configurations[0].stripe_privy.credential_provider_arn #=> String
3417
+ # resp.created_at #=> Time
3418
+ # resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
3419
+ #
3420
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreatePaymentConnector AWS API Documentation
3421
+ #
3422
+ # @overload create_payment_connector(params = {})
3423
+ # @param [Hash] params ({})
3424
+ def create_payment_connector(params = {}, options = {})
3425
+ req = build_request(:create_payment_connector, params)
3426
+ req.send_request(options)
3427
+ end
3428
+
3429
+ # Creates a new payment credential provider for storing authentication
3430
+ # credentials used by payment connectors to communicate with external
3431
+ # payment providers.
3432
+ #
3433
+ # @option params [required, String] :name
3434
+ # Unique name for the payment credential provider
3435
+ #
3436
+ # @option params [required, String] :credential_provider_vendor
3437
+ # The vendor type (e.g., CoinbaseCDP)
3438
+ #
3439
+ # @option params [required, Types::PaymentProviderConfigurationInput] :provider_configuration_input
3440
+ # Configuration specific to the vendor, including API credentials
3441
+ #
3442
+ # @option params [Hash<String,String>] :tags
3443
+ # Optional tags for resource organization
3444
+ #
3445
+ # @return [Types::CreatePaymentCredentialProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3446
+ #
3447
+ # * {Types::CreatePaymentCredentialProviderResponse#name #name} => String
3448
+ # * {Types::CreatePaymentCredentialProviderResponse#credential_provider_vendor #credential_provider_vendor} => String
3449
+ # * {Types::CreatePaymentCredentialProviderResponse#credential_provider_arn #credential_provider_arn} => String
3450
+ # * {Types::CreatePaymentCredentialProviderResponse#provider_configuration_output #provider_configuration_output} => Types::PaymentProviderConfigurationOutput
3451
+ #
3452
+ # @example Request syntax with placeholder values
3453
+ #
3454
+ # resp = client.create_payment_credential_provider({
3455
+ # name: "CredentialProviderName", # required
3456
+ # credential_provider_vendor: "CoinbaseCDP", # required, accepts CoinbaseCDP, StripePrivy
3457
+ # provider_configuration_input: { # required
3458
+ # coinbase_cdp_configuration: {
3459
+ # api_key_id: "CoinbaseCdpApiKeyIdType", # required
3460
+ # api_key_secret: "CoinbaseCdpApiKeySecretType", # required
3461
+ # wallet_secret: "CoinbaseCdpWalletSecretType", # required
3462
+ # },
3463
+ # stripe_privy_configuration: {
3464
+ # app_id: "StripePrivyAppIdType", # required
3465
+ # app_secret: "StripePrivyAppSecretType", # required
3466
+ # authorization_private_key: "StripePrivyAuthorizationPrivateKeyType", # required
3467
+ # authorization_id: "StripePrivyAuthorizationIdType", # required
3468
+ # },
3469
+ # },
3470
+ # tags: {
3471
+ # "TagKey" => "TagValue",
3472
+ # },
3473
+ # })
3474
+ #
3475
+ # @example Response structure
3476
+ #
3477
+ # resp.name #=> String
3478
+ # resp.credential_provider_vendor #=> String, one of "CoinbaseCDP", "StripePrivy"
3479
+ # resp.credential_provider_arn #=> String
3480
+ # resp.provider_configuration_output.coinbase_cdp_configuration.api_key_id #=> String
3481
+ # resp.provider_configuration_output.coinbase_cdp_configuration.api_key_secret_arn.secret_arn #=> String
3482
+ # resp.provider_configuration_output.coinbase_cdp_configuration.wallet_secret_arn.secret_arn #=> String
3483
+ # resp.provider_configuration_output.stripe_privy_configuration.app_id #=> String
3484
+ # resp.provider_configuration_output.stripe_privy_configuration.app_secret_arn.secret_arn #=> String
3485
+ # resp.provider_configuration_output.stripe_privy_configuration.authorization_private_key_arn.secret_arn #=> String
3486
+ # resp.provider_configuration_output.stripe_privy_configuration.authorization_id #=> String
3487
+ #
3488
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreatePaymentCredentialProvider AWS API Documentation
3489
+ #
3490
+ # @overload create_payment_credential_provider(params = {})
3491
+ # @param [Hash] params ({})
3492
+ def create_payment_credential_provider(params = {}, options = {})
3493
+ req = build_request(:create_payment_credential_provider, params)
3494
+ req.send_request(options)
3495
+ end
3496
+
3497
+ # Creates a new payment manager in your Amazon Web Services account. A
3498
+ # payment manager serves as the top-level resource for managing payment
3499
+ # processing capabilities, including payment connectors that integrate
3500
+ # with supported payment providers.
3501
+ #
3502
+ # If you specify `CUSTOM_JWT` as the `authorizerType`, you must provide
3503
+ # an `authorizerConfiguration`.
3504
+ #
3505
+ # @option params [required, String] :name
3506
+ # The name of the payment manager.
3507
+ #
3508
+ # @option params [String] :description
3509
+ # A description of the payment manager.
3510
+ #
3511
+ # @option params [required, String] :authorizer_type
3512
+ # The type of authorizer to use for the payment manager.
3513
+ #
3514
+ # * `CUSTOM_JWT` - Authorize with a bearer token.
3515
+ #
3516
+ # * `AWS_IAM` - Authorize with your Amazon Web Services IAM credentials.
3517
+ #
3518
+ # @option params [Types::AuthorizerConfiguration] :authorizer_configuration
3519
+ # The authorizer configuration for the payment manager.
3520
+ #
3521
+ # @option params [required, String] :role_arn
3522
+ # The Amazon Resource Name (ARN) of the IAM role that the payment
3523
+ # manager assumes to access resources on your behalf.
3524
+ #
3525
+ # @option params [String] :client_token
3526
+ # A unique, case-sensitive identifier to ensure that the API request
3527
+ # completes no more than one time. If you don't specify this field, a
3528
+ # value is randomly generated for you. If this token matches a previous
3529
+ # request, the service ignores the request, but doesn't return an
3530
+ # error. For more information, see [Ensuring idempotency][1].
3531
+ #
3532
+ # **A suitable default value is auto-generated.** You should normally
3533
+ # not need to pass this option.**
3534
+ #
3535
+ #
3536
+ #
3537
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
3538
+ #
3539
+ # @option params [Hash<String,String>] :tags
3540
+ # A map of tag keys and values to assign to the payment manager.
3541
+ #
3542
+ # @return [Types::CreatePaymentManagerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3543
+ #
3544
+ # * {Types::CreatePaymentManagerResponse#payment_manager_arn #payment_manager_arn} => String
3545
+ # * {Types::CreatePaymentManagerResponse#payment_manager_id #payment_manager_id} => String
3546
+ # * {Types::CreatePaymentManagerResponse#name #name} => String
3547
+ # * {Types::CreatePaymentManagerResponse#authorizer_type #authorizer_type} => String
3548
+ # * {Types::CreatePaymentManagerResponse#authorizer_configuration #authorizer_configuration} => Types::AuthorizerConfiguration
3549
+ # * {Types::CreatePaymentManagerResponse#role_arn #role_arn} => String
3550
+ # * {Types::CreatePaymentManagerResponse#workload_identity_details #workload_identity_details} => Types::WorkloadIdentityDetails
3551
+ # * {Types::CreatePaymentManagerResponse#created_at #created_at} => Time
3552
+ # * {Types::CreatePaymentManagerResponse#status #status} => String
3553
+ # * {Types::CreatePaymentManagerResponse#tags #tags} => Hash&lt;String,String&gt;
3554
+ #
3555
+ # @example Request syntax with placeholder values
3556
+ #
3557
+ # resp = client.create_payment_manager({
3558
+ # name: "PaymentManagerName", # required
3559
+ # description: "PaymentsDescription",
3560
+ # authorizer_type: "CUSTOM_JWT", # required, accepts CUSTOM_JWT, AWS_IAM
3561
+ # authorizer_configuration: {
3562
+ # custom_jwt_authorizer: {
3563
+ # discovery_url: "DiscoveryUrl", # required
3564
+ # allowed_audience: ["AllowedAudience"],
3565
+ # allowed_clients: ["AllowedClient"],
3566
+ # allowed_scopes: ["AllowedScopeType"],
3567
+ # custom_claims: [
3568
+ # {
3569
+ # inbound_token_claim_name: "InboundTokenClaimNameType", # required
3570
+ # inbound_token_claim_value_type: "STRING", # required, accepts STRING, STRING_ARRAY
3571
+ # authorizing_claim_match_value: { # required
3572
+ # claim_match_value: { # required
3573
+ # match_value_string: "MatchValueString",
3574
+ # match_value_string_list: ["MatchValueString"],
3575
+ # },
3576
+ # claim_match_operator: "EQUALS", # required, accepts EQUALS, CONTAINS, CONTAINS_ANY
3577
+ # },
3578
+ # },
3579
+ # ],
3580
+ # private_endpoint: {
3581
+ # self_managed_lattice_resource: {
3582
+ # resource_configuration_identifier: "ResourceConfigurationIdentifier",
3583
+ # },
3584
+ # managed_vpc_resource: {
3585
+ # vpc_identifier: "VpcIdentifier", # required
3586
+ # subnet_ids: ["SubnetId"], # required
3587
+ # endpoint_ip_address_type: "IPV4", # required, accepts IPV4, IPV6
3588
+ # security_group_ids: ["SecurityGroupIdentifier"],
3589
+ # tags: {
3590
+ # "TagKey" => "TagValue",
3591
+ # },
3592
+ # routing_domain: "RoutingDomain",
3593
+ # },
3594
+ # },
3595
+ # private_endpoint_overrides: [
3596
+ # {
3597
+ # domain: "PrivateEndpointOverrideDomain", # required
3598
+ # private_endpoint: { # required
3599
+ # self_managed_lattice_resource: {
3600
+ # resource_configuration_identifier: "ResourceConfigurationIdentifier",
3601
+ # },
3602
+ # managed_vpc_resource: {
3603
+ # vpc_identifier: "VpcIdentifier", # required
3604
+ # subnet_ids: ["SubnetId"], # required
3605
+ # endpoint_ip_address_type: "IPV4", # required, accepts IPV4, IPV6
3606
+ # security_group_ids: ["SecurityGroupIdentifier"],
3607
+ # tags: {
3608
+ # "TagKey" => "TagValue",
3609
+ # },
3610
+ # routing_domain: "RoutingDomain",
3611
+ # },
3612
+ # },
3613
+ # },
3614
+ # ],
3615
+ # },
3616
+ # },
3617
+ # role_arn: "RoleArn", # required
3618
+ # client_token: "ClientToken",
3619
+ # tags: {
3620
+ # "TagKey" => "TagValue",
3621
+ # },
3622
+ # })
3623
+ #
3624
+ # @example Response structure
3625
+ #
3626
+ # resp.payment_manager_arn #=> String
3627
+ # resp.payment_manager_id #=> String
3628
+ # resp.name #=> String
3629
+ # resp.authorizer_type #=> String, one of "CUSTOM_JWT", "AWS_IAM"
3630
+ # resp.authorizer_configuration.custom_jwt_authorizer.discovery_url #=> String
3631
+ # resp.authorizer_configuration.custom_jwt_authorizer.allowed_audience #=> Array
3632
+ # resp.authorizer_configuration.custom_jwt_authorizer.allowed_audience[0] #=> String
3633
+ # resp.authorizer_configuration.custom_jwt_authorizer.allowed_clients #=> Array
3634
+ # resp.authorizer_configuration.custom_jwt_authorizer.allowed_clients[0] #=> String
3635
+ # resp.authorizer_configuration.custom_jwt_authorizer.allowed_scopes #=> Array
3636
+ # resp.authorizer_configuration.custom_jwt_authorizer.allowed_scopes[0] #=> String
3637
+ # resp.authorizer_configuration.custom_jwt_authorizer.custom_claims #=> Array
3638
+ # resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].inbound_token_claim_name #=> String
3639
+ # resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].inbound_token_claim_value_type #=> String, one of "STRING", "STRING_ARRAY"
3640
+ # resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_value.match_value_string #=> String
3641
+ # resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_value.match_value_string_list #=> Array
3642
+ # resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_value.match_value_string_list[0] #=> String
3643
+ # resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_operator #=> String, one of "EQUALS", "CONTAINS", "CONTAINS_ANY"
3644
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
3645
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.vpc_identifier #=> String
3646
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.subnet_ids #=> Array
3647
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.subnet_ids[0] #=> String
3648
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.endpoint_ip_address_type #=> String, one of "IPV4", "IPV6"
3649
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.security_group_ids #=> Array
3650
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.security_group_ids[0] #=> String
3651
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.tags #=> Hash
3652
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
3653
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.routing_domain #=> String
3654
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides #=> Array
3655
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].domain #=> String
3656
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
3657
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.vpc_identifier #=> String
3658
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.subnet_ids #=> Array
3659
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.subnet_ids[0] #=> String
3660
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.endpoint_ip_address_type #=> String, one of "IPV4", "IPV6"
3661
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.security_group_ids #=> Array
3662
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.security_group_ids[0] #=> String
3663
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
3664
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
3665
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.routing_domain #=> String
3666
+ # resp.role_arn #=> String
3667
+ # resp.workload_identity_details.workload_identity_arn #=> String
3668
+ # resp.created_at #=> Time
3669
+ # resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
3670
+ # resp.tags #=> Hash
3671
+ # resp.tags["TagKey"] #=> String
3672
+ #
3673
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreatePaymentManager AWS API Documentation
3674
+ #
3675
+ # @overload create_payment_manager(params = {})
3676
+ # @param [Hash] params ({})
3677
+ def create_payment_manager(params = {}, options = {})
3678
+ req = build_request(:create_payment_manager, params)
3679
+ req.send_request(options)
3680
+ end
3681
+
3321
3682
  # Creates a policy within the AgentCore Policy system. Policies provide
3322
3683
  # real-time, deterministic control over agentic interactions with
3323
3684
  # AgentCore Gateway. Using the Cedar policy language, you can define
@@ -4353,6 +4714,10 @@ module Aws::BedrockAgentCoreControl
4353
4714
  # resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.subnets[0] #=> String
4354
4715
  # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations #=> Array
4355
4716
  # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].session_storage.mount_path #=> String
4717
+ # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].s3_files_access_point.access_point_arn #=> String
4718
+ # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].s3_files_access_point.mount_path #=> String
4719
+ # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].efs_access_point.access_point_arn #=> String
4720
+ # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].efs_access_point.mount_path #=> String
4356
4721
  # resp.harness.environment_artifact.container_configuration.container_uri #=> String
4357
4722
  # resp.harness.environment_variables #=> Hash
4358
4723
  # resp.harness.environment_variables["EnvironmentVariableKey"] #=> String
@@ -4508,22 +4873,141 @@ module Aws::BedrockAgentCoreControl
4508
4873
  req.send_request(options)
4509
4874
  end
4510
4875
 
4511
- # Deletes an existing policy from the AgentCore Policy system. Once
4512
- # deleted, the policy can no longer be used for agent behavior control
4513
- # and all references to it become invalid. This is an asynchronous
4514
- # operation. Use the `GetPolicy` operation to poll the `status` field to
4515
- # track completion.
4876
+ # Deletes a payment connector.
4516
4877
  #
4517
- # @option params [required, String] :policy_engine_id
4518
- # The identifier of the policy engine that manages the policy to be
4519
- # deleted. This ensures the policy is deleted from the correct policy
4520
- # engine context.
4878
+ # @option params [required, String] :payment_manager_id
4879
+ # The unique identifier of the parent payment manager.
4521
4880
  #
4522
- # @option params [required, String] :policy_id
4523
- # The unique identifier of the policy to be deleted. This must be a
4524
- # valid policy ID that exists within the specified policy engine.
4881
+ # @option params [required, String] :payment_connector_id
4882
+ # The unique identifier of the payment connector to delete.
4525
4883
  #
4526
- # @return [Types::DeletePolicyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4884
+ # @option params [String] :client_token
4885
+ # A unique, case-sensitive identifier to ensure that the API request
4886
+ # completes no more than one time. If you don't specify this field, a
4887
+ # value is randomly generated for you. If this token matches a previous
4888
+ # request, the service ignores the request, but doesn't return an
4889
+ # error. For more information, see [Ensuring idempotency][1].
4890
+ #
4891
+ # **A suitable default value is auto-generated.** You should normally
4892
+ # not need to pass this option.**
4893
+ #
4894
+ #
4895
+ #
4896
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
4897
+ #
4898
+ # @return [Types::DeletePaymentConnectorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4899
+ #
4900
+ # * {Types::DeletePaymentConnectorResponse#status #status} => String
4901
+ # * {Types::DeletePaymentConnectorResponse#payment_connector_id #payment_connector_id} => String
4902
+ #
4903
+ # @example Request syntax with placeholder values
4904
+ #
4905
+ # resp = client.delete_payment_connector({
4906
+ # payment_manager_id: "PaymentManagerId", # required
4907
+ # payment_connector_id: "PaymentConnectorId", # required
4908
+ # client_token: "ClientToken",
4909
+ # })
4910
+ #
4911
+ # @example Response structure
4912
+ #
4913
+ # resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
4914
+ # resp.payment_connector_id #=> String
4915
+ #
4916
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeletePaymentConnector AWS API Documentation
4917
+ #
4918
+ # @overload delete_payment_connector(params = {})
4919
+ # @param [Hash] params ({})
4920
+ def delete_payment_connector(params = {}, options = {})
4921
+ req = build_request(:delete_payment_connector, params)
4922
+ req.send_request(options)
4923
+ end
4924
+
4925
+ # Deletes a payment credential provider and its associated stored
4926
+ # credentials.
4927
+ #
4928
+ # @option params [required, String] :name
4929
+ # The name of the payment credential provider to delete.
4930
+ #
4931
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4932
+ #
4933
+ # @example Request syntax with placeholder values
4934
+ #
4935
+ # resp = client.delete_payment_credential_provider({
4936
+ # name: "CredentialProviderName", # required
4937
+ # })
4938
+ #
4939
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeletePaymentCredentialProvider AWS API Documentation
4940
+ #
4941
+ # @overload delete_payment_credential_provider(params = {})
4942
+ # @param [Hash] params ({})
4943
+ def delete_payment_credential_provider(params = {}, options = {})
4944
+ req = build_request(:delete_payment_credential_provider, params)
4945
+ req.send_request(options)
4946
+ end
4947
+
4948
+ # Deletes a payment manager. All payment connectors associated with the
4949
+ # payment manager must be deleted before the payment manager can be
4950
+ # deleted. This operation initiates the deletion process asynchronously.
4951
+ #
4952
+ # @option params [required, String] :payment_manager_id
4953
+ # The unique identifier of the payment manager to delete.
4954
+ #
4955
+ # @option params [String] :client_token
4956
+ # A unique, case-sensitive identifier to ensure that the API request
4957
+ # completes no more than one time. If you don't specify this field, a
4958
+ # value is randomly generated for you. If this token matches a previous
4959
+ # request, the service ignores the request, but doesn't return an
4960
+ # error. For more information, see [Ensuring idempotency][1].
4961
+ #
4962
+ # **A suitable default value is auto-generated.** You should normally
4963
+ # not need to pass this option.**
4964
+ #
4965
+ #
4966
+ #
4967
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
4968
+ #
4969
+ # @return [Types::DeletePaymentManagerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4970
+ #
4971
+ # * {Types::DeletePaymentManagerResponse#status #status} => String
4972
+ # * {Types::DeletePaymentManagerResponse#payment_manager_id #payment_manager_id} => String
4973
+ #
4974
+ # @example Request syntax with placeholder values
4975
+ #
4976
+ # resp = client.delete_payment_manager({
4977
+ # payment_manager_id: "PaymentManagerId", # required
4978
+ # client_token: "ClientToken",
4979
+ # })
4980
+ #
4981
+ # @example Response structure
4982
+ #
4983
+ # resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
4984
+ # resp.payment_manager_id #=> String
4985
+ #
4986
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeletePaymentManager AWS API Documentation
4987
+ #
4988
+ # @overload delete_payment_manager(params = {})
4989
+ # @param [Hash] params ({})
4990
+ def delete_payment_manager(params = {}, options = {})
4991
+ req = build_request(:delete_payment_manager, params)
4992
+ req.send_request(options)
4993
+ end
4994
+
4995
+ # Deletes an existing policy from the AgentCore Policy system. Once
4996
+ # deleted, the policy can no longer be used for agent behavior control
4997
+ # and all references to it become invalid. This is an asynchronous
4998
+ # operation. Use the `GetPolicy` operation to poll the `status` field to
4999
+ # track completion.
5000
+ #
5001
+ # @option params [required, String] :policy_engine_id
5002
+ # The identifier of the policy engine that manages the policy to be
5003
+ # deleted. This ensures the policy is deleted from the correct policy
5004
+ # engine context.
5005
+ #
5006
+ # @option params [required, String] :policy_id
5007
+ # The unique identifier of the policy to be deleted. This must be a
5008
+ # valid policy ID that exists within the specified policy engine.
5009
+ #
5010
+ # @return [Types::DeletePolicyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4527
5011
  #
4528
5012
  # * {Types::DeletePolicyResponse#policy_id #policy_id} => String
4529
5013
  # * {Types::DeletePolicyResponse#name #name} => String
@@ -4838,6 +5322,10 @@ module Aws::BedrockAgentCoreControl
4838
5322
  # resp.metadata_configuration.require_mmdsv2 #=> Boolean
4839
5323
  # resp.filesystem_configurations #=> Array
4840
5324
  # resp.filesystem_configurations[0].session_storage.mount_path #=> String
5325
+ # resp.filesystem_configurations[0].s3_files_access_point.access_point_arn #=> String
5326
+ # resp.filesystem_configurations[0].s3_files_access_point.mount_path #=> String
5327
+ # resp.filesystem_configurations[0].efs_access_point.access_point_arn #=> String
5328
+ # resp.filesystem_configurations[0].efs_access_point.mount_path #=> String
4841
5329
  #
4842
5330
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetAgentRuntime AWS API Documentation
4843
5331
  #
@@ -5690,6 +6178,10 @@ module Aws::BedrockAgentCoreControl
5690
6178
  # resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.subnets[0] #=> String
5691
6179
  # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations #=> Array
5692
6180
  # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].session_storage.mount_path #=> String
6181
+ # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].s3_files_access_point.access_point_arn #=> String
6182
+ # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].s3_files_access_point.mount_path #=> String
6183
+ # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].efs_access_point.access_point_arn #=> String
6184
+ # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].efs_access_point.mount_path #=> String
5693
6185
  # resp.harness.environment_artifact.container_configuration.container_uri #=> String
5694
6186
  # resp.harness.environment_variables #=> Hash
5695
6187
  # resp.harness.environment_variables["EnvironmentVariableKey"] #=> String
@@ -6106,6 +6598,187 @@ module Aws::BedrockAgentCoreControl
6106
6598
  req.send_request(options)
6107
6599
  end
6108
6600
 
6601
+ # Retrieves information about a specific payment connector.
6602
+ #
6603
+ # @option params [required, String] :payment_manager_id
6604
+ # The unique identifier of the parent payment manager.
6605
+ #
6606
+ # @option params [required, String] :payment_connector_id
6607
+ # The unique identifier of the payment connector to retrieve.
6608
+ #
6609
+ # @return [Types::GetPaymentConnectorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6610
+ #
6611
+ # * {Types::GetPaymentConnectorResponse#payment_connector_id #payment_connector_id} => String
6612
+ # * {Types::GetPaymentConnectorResponse#name #name} => String
6613
+ # * {Types::GetPaymentConnectorResponse#description #description} => String
6614
+ # * {Types::GetPaymentConnectorResponse#type #type} => String
6615
+ # * {Types::GetPaymentConnectorResponse#credential_provider_configurations #credential_provider_configurations} => Array&lt;Types::CredentialsProviderConfiguration&gt;
6616
+ # * {Types::GetPaymentConnectorResponse#created_at #created_at} => Time
6617
+ # * {Types::GetPaymentConnectorResponse#last_updated_at #last_updated_at} => Time
6618
+ # * {Types::GetPaymentConnectorResponse#status #status} => String
6619
+ #
6620
+ # @example Request syntax with placeholder values
6621
+ #
6622
+ # resp = client.get_payment_connector({
6623
+ # payment_manager_id: "PaymentManagerId", # required
6624
+ # payment_connector_id: "PaymentConnectorId", # required
6625
+ # })
6626
+ #
6627
+ # @example Response structure
6628
+ #
6629
+ # resp.payment_connector_id #=> String
6630
+ # resp.name #=> String
6631
+ # resp.description #=> String
6632
+ # resp.type #=> String, one of "CoinbaseCDP", "StripePrivy"
6633
+ # resp.credential_provider_configurations #=> Array
6634
+ # resp.credential_provider_configurations[0].coinbase_cdp.credential_provider_arn #=> String
6635
+ # resp.credential_provider_configurations[0].stripe_privy.credential_provider_arn #=> String
6636
+ # resp.created_at #=> Time
6637
+ # resp.last_updated_at #=> Time
6638
+ # resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
6639
+ #
6640
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPaymentConnector AWS API Documentation
6641
+ #
6642
+ # @overload get_payment_connector(params = {})
6643
+ # @param [Hash] params ({})
6644
+ def get_payment_connector(params = {}, options = {})
6645
+ req = build_request(:get_payment_connector, params)
6646
+ req.send_request(options)
6647
+ end
6648
+
6649
+ # Retrieves information about a specific payment credential provider.
6650
+ #
6651
+ # @option params [required, String] :name
6652
+ # The name of the payment credential provider to retrieve.
6653
+ #
6654
+ # @return [Types::GetPaymentCredentialProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6655
+ #
6656
+ # * {Types::GetPaymentCredentialProviderResponse#name #name} => String
6657
+ # * {Types::GetPaymentCredentialProviderResponse#credential_provider_arn #credential_provider_arn} => String
6658
+ # * {Types::GetPaymentCredentialProviderResponse#credential_provider_vendor #credential_provider_vendor} => String
6659
+ # * {Types::GetPaymentCredentialProviderResponse#provider_configuration_output #provider_configuration_output} => Types::PaymentProviderConfigurationOutput
6660
+ # * {Types::GetPaymentCredentialProviderResponse#created_time #created_time} => Time
6661
+ # * {Types::GetPaymentCredentialProviderResponse#last_updated_time #last_updated_time} => Time
6662
+ # * {Types::GetPaymentCredentialProviderResponse#tags #tags} => Hash&lt;String,String&gt;
6663
+ #
6664
+ # @example Request syntax with placeholder values
6665
+ #
6666
+ # resp = client.get_payment_credential_provider({
6667
+ # name: "CredentialProviderName", # required
6668
+ # })
6669
+ #
6670
+ # @example Response structure
6671
+ #
6672
+ # resp.name #=> String
6673
+ # resp.credential_provider_arn #=> String
6674
+ # resp.credential_provider_vendor #=> String, one of "CoinbaseCDP", "StripePrivy"
6675
+ # resp.provider_configuration_output.coinbase_cdp_configuration.api_key_id #=> String
6676
+ # resp.provider_configuration_output.coinbase_cdp_configuration.api_key_secret_arn.secret_arn #=> String
6677
+ # resp.provider_configuration_output.coinbase_cdp_configuration.wallet_secret_arn.secret_arn #=> String
6678
+ # resp.provider_configuration_output.stripe_privy_configuration.app_id #=> String
6679
+ # resp.provider_configuration_output.stripe_privy_configuration.app_secret_arn.secret_arn #=> String
6680
+ # resp.provider_configuration_output.stripe_privy_configuration.authorization_private_key_arn.secret_arn #=> String
6681
+ # resp.provider_configuration_output.stripe_privy_configuration.authorization_id #=> String
6682
+ # resp.created_time #=> Time
6683
+ # resp.last_updated_time #=> Time
6684
+ # resp.tags #=> Hash
6685
+ # resp.tags["TagKey"] #=> String
6686
+ #
6687
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPaymentCredentialProvider AWS API Documentation
6688
+ #
6689
+ # @overload get_payment_credential_provider(params = {})
6690
+ # @param [Hash] params ({})
6691
+ def get_payment_credential_provider(params = {}, options = {})
6692
+ req = build_request(:get_payment_credential_provider, params)
6693
+ req.send_request(options)
6694
+ end
6695
+
6696
+ # Retrieves information about a specific payment manager.
6697
+ #
6698
+ # @option params [required, String] :payment_manager_id
6699
+ # The unique identifier of the payment manager to retrieve.
6700
+ #
6701
+ # @return [Types::GetPaymentManagerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6702
+ #
6703
+ # * {Types::GetPaymentManagerResponse#payment_manager_arn #payment_manager_arn} => String
6704
+ # * {Types::GetPaymentManagerResponse#payment_manager_id #payment_manager_id} => String
6705
+ # * {Types::GetPaymentManagerResponse#name #name} => String
6706
+ # * {Types::GetPaymentManagerResponse#description #description} => String
6707
+ # * {Types::GetPaymentManagerResponse#authorizer_type #authorizer_type} => String
6708
+ # * {Types::GetPaymentManagerResponse#authorizer_configuration #authorizer_configuration} => Types::AuthorizerConfiguration
6709
+ # * {Types::GetPaymentManagerResponse#role_arn #role_arn} => String
6710
+ # * {Types::GetPaymentManagerResponse#workload_identity_details #workload_identity_details} => Types::WorkloadIdentityDetails
6711
+ # * {Types::GetPaymentManagerResponse#created_at #created_at} => Time
6712
+ # * {Types::GetPaymentManagerResponse#last_updated_at #last_updated_at} => Time
6713
+ # * {Types::GetPaymentManagerResponse#status #status} => String
6714
+ # * {Types::GetPaymentManagerResponse#tags #tags} => Hash&lt;String,String&gt;
6715
+ #
6716
+ # @example Request syntax with placeholder values
6717
+ #
6718
+ # resp = client.get_payment_manager({
6719
+ # payment_manager_id: "PaymentManagerId", # required
6720
+ # })
6721
+ #
6722
+ # @example Response structure
6723
+ #
6724
+ # resp.payment_manager_arn #=> String
6725
+ # resp.payment_manager_id #=> String
6726
+ # resp.name #=> String
6727
+ # resp.description #=> String
6728
+ # resp.authorizer_type #=> String, one of "CUSTOM_JWT", "AWS_IAM"
6729
+ # resp.authorizer_configuration.custom_jwt_authorizer.discovery_url #=> String
6730
+ # resp.authorizer_configuration.custom_jwt_authorizer.allowed_audience #=> Array
6731
+ # resp.authorizer_configuration.custom_jwt_authorizer.allowed_audience[0] #=> String
6732
+ # resp.authorizer_configuration.custom_jwt_authorizer.allowed_clients #=> Array
6733
+ # resp.authorizer_configuration.custom_jwt_authorizer.allowed_clients[0] #=> String
6734
+ # resp.authorizer_configuration.custom_jwt_authorizer.allowed_scopes #=> Array
6735
+ # resp.authorizer_configuration.custom_jwt_authorizer.allowed_scopes[0] #=> String
6736
+ # resp.authorizer_configuration.custom_jwt_authorizer.custom_claims #=> Array
6737
+ # resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].inbound_token_claim_name #=> String
6738
+ # resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].inbound_token_claim_value_type #=> String, one of "STRING", "STRING_ARRAY"
6739
+ # resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_value.match_value_string #=> String
6740
+ # resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_value.match_value_string_list #=> Array
6741
+ # resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_value.match_value_string_list[0] #=> String
6742
+ # resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_operator #=> String, one of "EQUALS", "CONTAINS", "CONTAINS_ANY"
6743
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
6744
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.vpc_identifier #=> String
6745
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.subnet_ids #=> Array
6746
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.subnet_ids[0] #=> String
6747
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.endpoint_ip_address_type #=> String, one of "IPV4", "IPV6"
6748
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.security_group_ids #=> Array
6749
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.security_group_ids[0] #=> String
6750
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.tags #=> Hash
6751
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
6752
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.routing_domain #=> String
6753
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides #=> Array
6754
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].domain #=> String
6755
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
6756
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.vpc_identifier #=> String
6757
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.subnet_ids #=> Array
6758
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.subnet_ids[0] #=> String
6759
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.endpoint_ip_address_type #=> String, one of "IPV4", "IPV6"
6760
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.security_group_ids #=> Array
6761
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.security_group_ids[0] #=> String
6762
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
6763
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
6764
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.routing_domain #=> String
6765
+ # resp.role_arn #=> String
6766
+ # resp.workload_identity_details.workload_identity_arn #=> String
6767
+ # resp.created_at #=> Time
6768
+ # resp.last_updated_at #=> Time
6769
+ # resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
6770
+ # resp.tags #=> Hash
6771
+ # resp.tags["TagKey"] #=> String
6772
+ #
6773
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPaymentManager AWS API Documentation
6774
+ #
6775
+ # @overload get_payment_manager(params = {})
6776
+ # @param [Hash] params ({})
6777
+ def get_payment_manager(params = {}, options = {})
6778
+ req = build_request(:get_payment_manager, params)
6779
+ req.send_request(options)
6780
+ end
6781
+
6109
6782
  # Retrieves detailed information about a specific policy within the
6110
6783
  # AgentCore Policy system. This operation returns the complete policy
6111
6784
  # definition, metadata, and current status, allowing administrators to
@@ -7406,6 +8079,149 @@ module Aws::BedrockAgentCoreControl
7406
8079
  req.send_request(options)
7407
8080
  end
7408
8081
 
8082
+ # Lists all payment connectors for a specified payment manager.
8083
+ #
8084
+ # @option params [required, String] :payment_manager_id
8085
+ # The unique identifier of the payment manager whose connectors to list.
8086
+ #
8087
+ # @option params [Integer] :max_results
8088
+ # The maximum number of results to return in the response. If the total
8089
+ # number of results is greater than this value, use the token returned
8090
+ # in the response in the `nextToken` field when making another request
8091
+ # to return the next batch of results.
8092
+ #
8093
+ # @option params [String] :next_token
8094
+ # If the total number of results is greater than the `maxResults` value
8095
+ # provided in the request, enter the token returned in the `nextToken`
8096
+ # field in the response in this field to return the next batch of
8097
+ # results.
8098
+ #
8099
+ # @return [Types::ListPaymentConnectorsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8100
+ #
8101
+ # * {Types::ListPaymentConnectorsResponse#payment_connectors #payment_connectors} => Array&lt;Types::PaymentConnectorSummary&gt;
8102
+ # * {Types::ListPaymentConnectorsResponse#next_token #next_token} => String
8103
+ #
8104
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
8105
+ #
8106
+ # @example Request syntax with placeholder values
8107
+ #
8108
+ # resp = client.list_payment_connectors({
8109
+ # payment_manager_id: "PaymentManagerId", # required
8110
+ # max_results: 1,
8111
+ # next_token: "NextToken",
8112
+ # })
8113
+ #
8114
+ # @example Response structure
8115
+ #
8116
+ # resp.payment_connectors #=> Array
8117
+ # resp.payment_connectors[0].payment_connector_id #=> String
8118
+ # resp.payment_connectors[0].name #=> String
8119
+ # resp.payment_connectors[0].type #=> String, one of "CoinbaseCDP", "StripePrivy"
8120
+ # resp.payment_connectors[0].status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
8121
+ # resp.payment_connectors[0].last_updated_at #=> Time
8122
+ # resp.next_token #=> String
8123
+ #
8124
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPaymentConnectors AWS API Documentation
8125
+ #
8126
+ # @overload list_payment_connectors(params = {})
8127
+ # @param [Hash] params ({})
8128
+ def list_payment_connectors(params = {}, options = {})
8129
+ req = build_request(:list_payment_connectors, params)
8130
+ req.send_request(options)
8131
+ end
8132
+
8133
+ # Lists all payment credential providers in the account.
8134
+ #
8135
+ # @option params [String] :next_token
8136
+ # Pagination token.
8137
+ #
8138
+ # @option params [Integer] :max_results
8139
+ # Maximum number of results to return.
8140
+ #
8141
+ # @return [Types::ListPaymentCredentialProvidersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8142
+ #
8143
+ # * {Types::ListPaymentCredentialProvidersResponse#credential_providers #credential_providers} => Array&lt;Types::PaymentCredentialProviderItem&gt;
8144
+ # * {Types::ListPaymentCredentialProvidersResponse#next_token #next_token} => String
8145
+ #
8146
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
8147
+ #
8148
+ # @example Request syntax with placeholder values
8149
+ #
8150
+ # resp = client.list_payment_credential_providers({
8151
+ # next_token: "String",
8152
+ # max_results: 1,
8153
+ # })
8154
+ #
8155
+ # @example Response structure
8156
+ #
8157
+ # resp.credential_providers #=> Array
8158
+ # resp.credential_providers[0].name #=> String
8159
+ # resp.credential_providers[0].credential_provider_vendor #=> String, one of "CoinbaseCDP", "StripePrivy"
8160
+ # resp.credential_providers[0].credential_provider_arn #=> String
8161
+ # resp.credential_providers[0].created_time #=> Time
8162
+ # resp.credential_providers[0].last_updated_time #=> Time
8163
+ # resp.next_token #=> String
8164
+ #
8165
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPaymentCredentialProviders AWS API Documentation
8166
+ #
8167
+ # @overload list_payment_credential_providers(params = {})
8168
+ # @param [Hash] params ({})
8169
+ def list_payment_credential_providers(params = {}, options = {})
8170
+ req = build_request(:list_payment_credential_providers, params)
8171
+ req.send_request(options)
8172
+ end
8173
+
8174
+ # Lists all payment managers in the account.
8175
+ #
8176
+ # @option params [Integer] :max_results
8177
+ # The maximum number of results to return in the response. If the total
8178
+ # number of results is greater than this value, use the token returned
8179
+ # in the response in the `nextToken` field when making another request
8180
+ # to return the next batch of results.
8181
+ #
8182
+ # @option params [String] :next_token
8183
+ # If the total number of results is greater than the `maxResults` value
8184
+ # provided in the request, enter the token returned in the `nextToken`
8185
+ # field in the response in this field to return the next batch of
8186
+ # results.
8187
+ #
8188
+ # @return [Types::ListPaymentManagersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8189
+ #
8190
+ # * {Types::ListPaymentManagersResponse#payment_managers #payment_managers} => Array&lt;Types::PaymentManagerSummary&gt;
8191
+ # * {Types::ListPaymentManagersResponse#next_token #next_token} => String
8192
+ #
8193
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
8194
+ #
8195
+ # @example Request syntax with placeholder values
8196
+ #
8197
+ # resp = client.list_payment_managers({
8198
+ # max_results: 1,
8199
+ # next_token: "NextToken",
8200
+ # })
8201
+ #
8202
+ # @example Response structure
8203
+ #
8204
+ # resp.payment_managers #=> Array
8205
+ # resp.payment_managers[0].payment_manager_arn #=> String
8206
+ # resp.payment_managers[0].payment_manager_id #=> String
8207
+ # resp.payment_managers[0].name #=> String
8208
+ # resp.payment_managers[0].description #=> String
8209
+ # resp.payment_managers[0].authorizer_type #=> String, one of "CUSTOM_JWT", "AWS_IAM"
8210
+ # resp.payment_managers[0].role_arn #=> String
8211
+ # resp.payment_managers[0].status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
8212
+ # resp.payment_managers[0].created_at #=> Time
8213
+ # resp.payment_managers[0].last_updated_at #=> Time
8214
+ # resp.next_token #=> String
8215
+ #
8216
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPaymentManagers AWS API Documentation
8217
+ #
8218
+ # @overload list_payment_managers(params = {})
8219
+ # @param [Hash] params ({})
8220
+ def list_payment_managers(params = {}, options = {})
8221
+ req = build_request(:list_payment_managers, params)
8222
+ req.send_request(options)
8223
+ end
8224
+
7409
8225
  # Retrieves a list of policies within the AgentCore Policy engine. This
7410
8226
  # operation supports pagination and filtering to help administrators
7411
8227
  # manage and discover policies across policy engines. Results can be
@@ -8462,6 +9278,14 @@ module Aws::BedrockAgentCoreControl
8462
9278
  # session_storage: {
8463
9279
  # mount_path: "MountPath", # required
8464
9280
  # },
9281
+ # s3_files_access_point: {
9282
+ # access_point_arn: "S3FilesAccessPointArn", # required
9283
+ # mount_path: "MountPath", # required
9284
+ # },
9285
+ # efs_access_point: {
9286
+ # access_point_arn: "EfsAccessPointArn", # required
9287
+ # mount_path: "MountPath", # required
9288
+ # },
8465
9289
  # },
8466
9290
  # ],
8467
9291
  # client_token: "ClientToken",
@@ -9618,6 +10442,14 @@ module Aws::BedrockAgentCoreControl
9618
10442
  # session_storage: {
9619
10443
  # mount_path: "MountPath", # required
9620
10444
  # },
10445
+ # s3_files_access_point: {
10446
+ # access_point_arn: "S3FilesAccessPointArn", # required
10447
+ # mount_path: "MountPath", # required
10448
+ # },
10449
+ # efs_access_point: {
10450
+ # access_point_arn: "EfsAccessPointArn", # required
10451
+ # mount_path: "MountPath", # required
10452
+ # },
9621
10453
  # },
9622
10454
  # ],
9623
10455
  # },
@@ -9865,6 +10697,10 @@ module Aws::BedrockAgentCoreControl
9865
10697
  # resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.subnets[0] #=> String
9866
10698
  # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations #=> Array
9867
10699
  # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].session_storage.mount_path #=> String
10700
+ # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].s3_files_access_point.access_point_arn #=> String
10701
+ # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].s3_files_access_point.mount_path #=> String
10702
+ # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].efs_access_point.access_point_arn #=> String
10703
+ # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].efs_access_point.mount_path #=> String
9868
10704
  # resp.harness.environment_artifact.container_configuration.container_uri #=> String
9869
10705
  # resp.harness.environment_variables #=> Hash
9870
10706
  # resp.harness.environment_variables["EnvironmentVariableKey"] #=> String
@@ -10928,6 +11764,286 @@ module Aws::BedrockAgentCoreControl
10928
11764
  req.send_request(options)
10929
11765
  end
10930
11766
 
11767
+ # Updates an existing payment connector. This operation uses PATCH
11768
+ # semantics, so you only need to specify the fields you want to change.
11769
+ #
11770
+ # @option params [required, String] :payment_manager_id
11771
+ # The unique identifier of the parent payment manager.
11772
+ #
11773
+ # @option params [required, String] :payment_connector_id
11774
+ # The unique identifier of the payment connector to update.
11775
+ #
11776
+ # @option params [String] :description
11777
+ # The updated description of the payment connector.
11778
+ #
11779
+ # @option params [String] :type
11780
+ # The updated type of the payment connector.
11781
+ #
11782
+ # @option params [Array<Types::CredentialsProviderConfiguration>] :credential_provider_configurations
11783
+ # The updated credential provider configurations for the payment
11784
+ # connector.
11785
+ #
11786
+ # @option params [String] :client_token
11787
+ # A unique, case-sensitive identifier to ensure that the API request
11788
+ # completes no more than one time. If you don't specify this field, a
11789
+ # value is randomly generated for you. If this token matches a previous
11790
+ # request, the service ignores the request, but doesn't return an
11791
+ # error. For more information, see [Ensuring idempotency][1].
11792
+ #
11793
+ # **A suitable default value is auto-generated.** You should normally
11794
+ # not need to pass this option.**
11795
+ #
11796
+ #
11797
+ #
11798
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
11799
+ #
11800
+ # @return [Types::UpdatePaymentConnectorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11801
+ #
11802
+ # * {Types::UpdatePaymentConnectorResponse#payment_connector_id #payment_connector_id} => String
11803
+ # * {Types::UpdatePaymentConnectorResponse#payment_manager_id #payment_manager_id} => String
11804
+ # * {Types::UpdatePaymentConnectorResponse#name #name} => String
11805
+ # * {Types::UpdatePaymentConnectorResponse#type #type} => String
11806
+ # * {Types::UpdatePaymentConnectorResponse#credential_provider_configurations #credential_provider_configurations} => Array&lt;Types::CredentialsProviderConfiguration&gt;
11807
+ # * {Types::UpdatePaymentConnectorResponse#last_updated_at #last_updated_at} => Time
11808
+ # * {Types::UpdatePaymentConnectorResponse#status #status} => String
11809
+ #
11810
+ # @example Request syntax with placeholder values
11811
+ #
11812
+ # resp = client.update_payment_connector({
11813
+ # payment_manager_id: "PaymentManagerId", # required
11814
+ # payment_connector_id: "PaymentConnectorId", # required
11815
+ # description: "PaymentsDescription",
11816
+ # type: "CoinbaseCDP", # accepts CoinbaseCDP, StripePrivy
11817
+ # credential_provider_configurations: [
11818
+ # {
11819
+ # coinbase_cdp: {
11820
+ # credential_provider_arn: "PaymentCredentialProviderArn", # required
11821
+ # },
11822
+ # stripe_privy: {
11823
+ # credential_provider_arn: "PaymentCredentialProviderArn", # required
11824
+ # },
11825
+ # },
11826
+ # ],
11827
+ # client_token: "ClientToken",
11828
+ # })
11829
+ #
11830
+ # @example Response structure
11831
+ #
11832
+ # resp.payment_connector_id #=> String
11833
+ # resp.payment_manager_id #=> String
11834
+ # resp.name #=> String
11835
+ # resp.type #=> String, one of "CoinbaseCDP", "StripePrivy"
11836
+ # resp.credential_provider_configurations #=> Array
11837
+ # resp.credential_provider_configurations[0].coinbase_cdp.credential_provider_arn #=> String
11838
+ # resp.credential_provider_configurations[0].stripe_privy.credential_provider_arn #=> String
11839
+ # resp.last_updated_at #=> Time
11840
+ # resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
11841
+ #
11842
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatePaymentConnector AWS API Documentation
11843
+ #
11844
+ # @overload update_payment_connector(params = {})
11845
+ # @param [Hash] params ({})
11846
+ def update_payment_connector(params = {}, options = {})
11847
+ req = build_request(:update_payment_connector, params)
11848
+ req.send_request(options)
11849
+ end
11850
+
11851
+ # Updates an existing payment credential provider with new
11852
+ # authentication credentials.
11853
+ #
11854
+ # @option params [required, String] :name
11855
+ # The name of the payment credential provider to update.
11856
+ #
11857
+ # @option params [required, String] :credential_provider_vendor
11858
+ # Supported vendor types for payment providers using non-standard auth
11859
+ # protocols
11860
+ #
11861
+ # @option params [required, Types::PaymentProviderConfigurationInput] :provider_configuration_input
11862
+ # Configuration specific to the vendor, including API credentials
11863
+ #
11864
+ # @return [Types::UpdatePaymentCredentialProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11865
+ #
11866
+ # * {Types::UpdatePaymentCredentialProviderResponse#name #name} => String
11867
+ # * {Types::UpdatePaymentCredentialProviderResponse#credential_provider_vendor #credential_provider_vendor} => String
11868
+ # * {Types::UpdatePaymentCredentialProviderResponse#credential_provider_arn #credential_provider_arn} => String
11869
+ # * {Types::UpdatePaymentCredentialProviderResponse#provider_configuration_output #provider_configuration_output} => Types::PaymentProviderConfigurationOutput
11870
+ # * {Types::UpdatePaymentCredentialProviderResponse#created_time #created_time} => Time
11871
+ # * {Types::UpdatePaymentCredentialProviderResponse#last_updated_time #last_updated_time} => Time
11872
+ #
11873
+ # @example Request syntax with placeholder values
11874
+ #
11875
+ # resp = client.update_payment_credential_provider({
11876
+ # name: "CredentialProviderName", # required
11877
+ # credential_provider_vendor: "CoinbaseCDP", # required, accepts CoinbaseCDP, StripePrivy
11878
+ # provider_configuration_input: { # required
11879
+ # coinbase_cdp_configuration: {
11880
+ # api_key_id: "CoinbaseCdpApiKeyIdType", # required
11881
+ # api_key_secret: "CoinbaseCdpApiKeySecretType", # required
11882
+ # wallet_secret: "CoinbaseCdpWalletSecretType", # required
11883
+ # },
11884
+ # stripe_privy_configuration: {
11885
+ # app_id: "StripePrivyAppIdType", # required
11886
+ # app_secret: "StripePrivyAppSecretType", # required
11887
+ # authorization_private_key: "StripePrivyAuthorizationPrivateKeyType", # required
11888
+ # authorization_id: "StripePrivyAuthorizationIdType", # required
11889
+ # },
11890
+ # },
11891
+ # })
11892
+ #
11893
+ # @example Response structure
11894
+ #
11895
+ # resp.name #=> String
11896
+ # resp.credential_provider_vendor #=> String, one of "CoinbaseCDP", "StripePrivy"
11897
+ # resp.credential_provider_arn #=> String
11898
+ # resp.provider_configuration_output.coinbase_cdp_configuration.api_key_id #=> String
11899
+ # resp.provider_configuration_output.coinbase_cdp_configuration.api_key_secret_arn.secret_arn #=> String
11900
+ # resp.provider_configuration_output.coinbase_cdp_configuration.wallet_secret_arn.secret_arn #=> String
11901
+ # resp.provider_configuration_output.stripe_privy_configuration.app_id #=> String
11902
+ # resp.provider_configuration_output.stripe_privy_configuration.app_secret_arn.secret_arn #=> String
11903
+ # resp.provider_configuration_output.stripe_privy_configuration.authorization_private_key_arn.secret_arn #=> String
11904
+ # resp.provider_configuration_output.stripe_privy_configuration.authorization_id #=> String
11905
+ # resp.created_time #=> Time
11906
+ # resp.last_updated_time #=> Time
11907
+ #
11908
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatePaymentCredentialProvider AWS API Documentation
11909
+ #
11910
+ # @overload update_payment_credential_provider(params = {})
11911
+ # @param [Hash] params ({})
11912
+ def update_payment_credential_provider(params = {}, options = {})
11913
+ req = build_request(:update_payment_credential_provider, params)
11914
+ req.send_request(options)
11915
+ end
11916
+
11917
+ # Updates an existing payment manager. This operation uses PATCH
11918
+ # semantics, so you only need to specify the fields you want to change.
11919
+ #
11920
+ # @option params [required, String] :payment_manager_id
11921
+ # The unique identifier of the payment manager to update.
11922
+ #
11923
+ # @option params [String] :description
11924
+ # The updated description of the payment manager.
11925
+ #
11926
+ # @option params [String] :authorizer_type
11927
+ # The updated authorizer type for the payment manager.
11928
+ #
11929
+ # @option params [Types::AuthorizerConfiguration] :authorizer_configuration
11930
+ # The updated authorizer configuration for the payment manager.
11931
+ #
11932
+ # @option params [String] :role_arn
11933
+ # The updated Amazon Resource Name (ARN) of the IAM role for the payment
11934
+ # manager.
11935
+ #
11936
+ # @option params [String] :client_token
11937
+ # A unique, case-sensitive identifier to ensure that the API request
11938
+ # completes no more than one time. If you don't specify this field, a
11939
+ # value is randomly generated for you. If this token matches a previous
11940
+ # request, the service ignores the request, but doesn't return an
11941
+ # error. For more information, see [Ensuring idempotency][1].
11942
+ #
11943
+ # **A suitable default value is auto-generated.** You should normally
11944
+ # not need to pass this option.**
11945
+ #
11946
+ #
11947
+ #
11948
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
11949
+ #
11950
+ # @return [Types::UpdatePaymentManagerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11951
+ #
11952
+ # * {Types::UpdatePaymentManagerResponse#payment_manager_arn #payment_manager_arn} => String
11953
+ # * {Types::UpdatePaymentManagerResponse#payment_manager_id #payment_manager_id} => String
11954
+ # * {Types::UpdatePaymentManagerResponse#name #name} => String
11955
+ # * {Types::UpdatePaymentManagerResponse#authorizer_type #authorizer_type} => String
11956
+ # * {Types::UpdatePaymentManagerResponse#role_arn #role_arn} => String
11957
+ # * {Types::UpdatePaymentManagerResponse#workload_identity_details #workload_identity_details} => Types::WorkloadIdentityDetails
11958
+ # * {Types::UpdatePaymentManagerResponse#last_updated_at #last_updated_at} => Time
11959
+ # * {Types::UpdatePaymentManagerResponse#status #status} => String
11960
+ #
11961
+ # @example Request syntax with placeholder values
11962
+ #
11963
+ # resp = client.update_payment_manager({
11964
+ # payment_manager_id: "PaymentManagerId", # required
11965
+ # description: "PaymentsDescription",
11966
+ # authorizer_type: "CUSTOM_JWT", # accepts CUSTOM_JWT, AWS_IAM
11967
+ # authorizer_configuration: {
11968
+ # custom_jwt_authorizer: {
11969
+ # discovery_url: "DiscoveryUrl", # required
11970
+ # allowed_audience: ["AllowedAudience"],
11971
+ # allowed_clients: ["AllowedClient"],
11972
+ # allowed_scopes: ["AllowedScopeType"],
11973
+ # custom_claims: [
11974
+ # {
11975
+ # inbound_token_claim_name: "InboundTokenClaimNameType", # required
11976
+ # inbound_token_claim_value_type: "STRING", # required, accepts STRING, STRING_ARRAY
11977
+ # authorizing_claim_match_value: { # required
11978
+ # claim_match_value: { # required
11979
+ # match_value_string: "MatchValueString",
11980
+ # match_value_string_list: ["MatchValueString"],
11981
+ # },
11982
+ # claim_match_operator: "EQUALS", # required, accepts EQUALS, CONTAINS, CONTAINS_ANY
11983
+ # },
11984
+ # },
11985
+ # ],
11986
+ # private_endpoint: {
11987
+ # self_managed_lattice_resource: {
11988
+ # resource_configuration_identifier: "ResourceConfigurationIdentifier",
11989
+ # },
11990
+ # managed_vpc_resource: {
11991
+ # vpc_identifier: "VpcIdentifier", # required
11992
+ # subnet_ids: ["SubnetId"], # required
11993
+ # endpoint_ip_address_type: "IPV4", # required, accepts IPV4, IPV6
11994
+ # security_group_ids: ["SecurityGroupIdentifier"],
11995
+ # tags: {
11996
+ # "TagKey" => "TagValue",
11997
+ # },
11998
+ # routing_domain: "RoutingDomain",
11999
+ # },
12000
+ # },
12001
+ # private_endpoint_overrides: [
12002
+ # {
12003
+ # domain: "PrivateEndpointOverrideDomain", # required
12004
+ # private_endpoint: { # required
12005
+ # self_managed_lattice_resource: {
12006
+ # resource_configuration_identifier: "ResourceConfigurationIdentifier",
12007
+ # },
12008
+ # managed_vpc_resource: {
12009
+ # vpc_identifier: "VpcIdentifier", # required
12010
+ # subnet_ids: ["SubnetId"], # required
12011
+ # endpoint_ip_address_type: "IPV4", # required, accepts IPV4, IPV6
12012
+ # security_group_ids: ["SecurityGroupIdentifier"],
12013
+ # tags: {
12014
+ # "TagKey" => "TagValue",
12015
+ # },
12016
+ # routing_domain: "RoutingDomain",
12017
+ # },
12018
+ # },
12019
+ # },
12020
+ # ],
12021
+ # },
12022
+ # },
12023
+ # role_arn: "RoleArn",
12024
+ # client_token: "ClientToken",
12025
+ # })
12026
+ #
12027
+ # @example Response structure
12028
+ #
12029
+ # resp.payment_manager_arn #=> String
12030
+ # resp.payment_manager_id #=> String
12031
+ # resp.name #=> String
12032
+ # resp.authorizer_type #=> String, one of "CUSTOM_JWT", "AWS_IAM"
12033
+ # resp.role_arn #=> String
12034
+ # resp.workload_identity_details.workload_identity_arn #=> String
12035
+ # resp.last_updated_at #=> Time
12036
+ # resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
12037
+ #
12038
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatePaymentManager AWS API Documentation
12039
+ #
12040
+ # @overload update_payment_manager(params = {})
12041
+ # @param [Hash] params ({})
12042
+ def update_payment_manager(params = {}, options = {})
12043
+ req = build_request(:update_payment_manager, params)
12044
+ req.send_request(options)
12045
+ end
12046
+
10931
12047
  # Updates an existing policy within the AgentCore Policy system. This
10932
12048
  # operation allows modification of the policy description and definition
10933
12049
  # while maintaining the policy's identity. The updated policy is
@@ -11564,7 +12680,7 @@ module Aws::BedrockAgentCoreControl
11564
12680
  tracer: tracer
11565
12681
  )
11566
12682
  context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
11567
- context[:gem_version] = '1.43.0'
12683
+ context[:gem_version] = '1.45.0'
11568
12684
  Seahorse::Client::Request.new(handlers, context)
11569
12685
  end
11570
12686