aws-sdk-bedrockagentcorecontrol 1.63.0 → 1.65.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5a3295ee5a1e485ed0beb56a8a29dc6a6564c252da97c4670b7d907944f35b32
4
- data.tar.gz: 7087f83b13bbe61d3f8e8684ab7115dfc6da00bef97743f33ce56ae8cdb92576
3
+ metadata.gz: e3afaeca7fc8892f28dfc06d419a82c9f60834aad5f252d600ea86c6ab33a9c9
4
+ data.tar.gz: c40169a8a46178fc4ed83899a039609cad6fe025016ea7bfbd7fb730fe261e80
5
5
  SHA512:
6
- metadata.gz: 48f64200e9f8e0a256b5e61d7b5df6b5c8a5ed29f2aaf3af89e4a6ce197232019f2ac15295bd09a20006ed6e3622b7bf65e263adb8319f18d878599bf56b3fed
7
- data.tar.gz: ffadaeb07363a98afe3feacee5c27a1aa5c6d6e7fa82d3674079312a33205c0fb83dbb6dbb3da4f49906dacf2b298fe2d005f72db026a9946d28e90bff74a5d3
6
+ metadata.gz: 9e00b914111ce4d07c804bcd29698c2900669953d10597b222cf21b84620082a80674260a9b9982e7aff8fed9096a881e835f86f4cddc1854ec7980a9f22b58b
7
+ data.tar.gz: 8b2276b97453d5a9b479073196e576ff06a3d0fa91f6351dfe46eb09aa9741b14a4fde8c62c5f232722ebd984bcce371aadd9d911e2141800fd7e1418d2f2401
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.65.0 (2026-08-17)
5
+ ------------------
6
+
7
+ * Feature - Adds implementations of third-party evaluators, both managed-as-a-service and as templates within custom evaluators.
8
+
9
+ 1.64.0 (2026-08-14)
10
+ ------------------
11
+
12
+ * Feature - Adds AgentCore Payments support for CMK, Marketplace Subscriptions and QuickCreate
13
+
4
14
  1.63.0 (2026-08-06)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.63.0
1
+ 1.65.0
@@ -845,7 +845,7 @@ module Aws::BedrockAgentCoreControl
845
845
  # },
846
846
  # ],
847
847
  # capacity_provider_configuration: {
848
- # capacity_provider_arn: "CapacityProviderArn",
848
+ # capacity_provider_arn: "CapacityProviderArn", # required
849
849
  # },
850
850
  # tags: {
851
851
  # "TagKey" => "TagValue",
@@ -1637,7 +1637,7 @@ module Aws::BedrockAgentCoreControl
1637
1637
  # s3_uri: "S3Uri", # required
1638
1638
  # },
1639
1639
  # },
1640
- # schema_type: "AGENTCORE_EVALUATION_PREDEFINED_V1", # required, accepts AGENTCORE_EVALUATION_PREDEFINED_V1, AGENTCORE_EVALUATION_SIMULATED_V1
1640
+ # schema_type: "AGENTCORE_EVALUATION_PREDEFINED_V1", # required, accepts AGENTCORE_EVALUATION_PREDEFINED_V1, AGENTCORE_EVALUATION_SIMULATED_V1, GENERIC_EVALUATION_PREDEFINED_V1
1641
1641
  # kms_key_arn: "KmsKeyArn",
1642
1642
  # tags: {
1643
1643
  # "TagKey" => "TagValue",
@@ -1829,6 +1829,31 @@ module Aws::BedrockAgentCoreControl
1829
1829
  # lambda_timeout_in_seconds: 1,
1830
1830
  # },
1831
1831
  # },
1832
+ # derived: {
1833
+ # base_evaluator_id: "EvaluatorId", # required
1834
+ # model_config: { # required
1835
+ # bedrock_evaluator_model_config: {
1836
+ # model_id: "ModelId", # required
1837
+ # inference_config: {
1838
+ # max_tokens: 1,
1839
+ # temperature: 1.0,
1840
+ # top_p: 1.0,
1841
+ # stop_sequences: ["NonEmptyString"],
1842
+ # },
1843
+ # additional_model_request_fields: {
1844
+ # },
1845
+ # },
1846
+ # responses_evaluator_model_config: {
1847
+ # model_id: "ModelId", # required
1848
+ # max_output_tokens: 1,
1849
+ # temperature: 1.0,
1850
+ # top_p: 1.0,
1851
+ # reasoning: {
1852
+ # effort: "ReasoningConfigurationEffortString",
1853
+ # },
1854
+ # },
1855
+ # },
1856
+ # },
1832
1857
  # },
1833
1858
  # level: "TOOL_CALL", # required, accepts TOOL_CALL, TRACE, SESSION
1834
1859
  # kms_key_arn: "KmsKeyArn",
@@ -4446,6 +4471,16 @@ module Aws::BedrockAgentCoreControl
4446
4471
  # These configurations specify how the connector authenticates with the
4447
4472
  # payment provider.
4448
4473
  #
4474
+ # @option params [String] :provision_mode
4475
+ # The provision mode for creating the payment connector. If you don't
4476
+ # specify a value, the default is `MANUAL`.
4477
+ #
4478
+ # * `MANUAL` - You provide the credential provider configurations
4479
+ # directly.
4480
+ #
4481
+ # * `QUICK_CREATE` - The service orchestrates OAuth consent and
4482
+ # provisions the credential provider for you.
4483
+ #
4449
4484
  # @option params [String] :client_token
4450
4485
  # A unique, case-sensitive identifier to ensure that the API request
4451
4486
  # completes no more than one time. If you don't specify this field, a
@@ -4469,6 +4504,7 @@ module Aws::BedrockAgentCoreControl
4469
4504
  # * {Types::CreatePaymentConnectorResponse#credential_provider_configurations #credential_provider_configurations} => Array<Types::CredentialsProviderConfiguration>
4470
4505
  # * {Types::CreatePaymentConnectorResponse#created_at #created_at} => Time
4471
4506
  # * {Types::CreatePaymentConnectorResponse#status #status} => String
4507
+ # * {Types::CreatePaymentConnectorResponse#authorization_url #authorization_url} => String
4472
4508
  #
4473
4509
  # @example Request syntax with placeholder values
4474
4510
  #
@@ -4487,6 +4523,7 @@ module Aws::BedrockAgentCoreControl
4487
4523
  # },
4488
4524
  # },
4489
4525
  # ],
4526
+ # provision_mode: "MANUAL", # accepts MANUAL, QUICK_CREATE
4490
4527
  # client_token: "ClientToken",
4491
4528
  # })
4492
4529
  #
@@ -4500,7 +4537,8 @@ module Aws::BedrockAgentCoreControl
4500
4537
  # resp.credential_provider_configurations[0].coinbase_cdp.credential_provider_arn #=> String
4501
4538
  # resp.credential_provider_configurations[0].stripe_privy.credential_provider_arn #=> String
4502
4539
  # resp.created_at #=> Time
4503
- # resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
4540
+ # resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED", "AWS_MARKETPLACE_SUBSCRIPTION_REQUIRED", "PENDING_AUTHENTICATION", "PROVISIONING", "AUTHENTICATION_EXPIRED", "AUTHENTICATION_FAILED"
4541
+ # resp.authorization_url #=> String
4504
4542
  #
4505
4543
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreatePaymentConnector AWS API Documentation
4506
4544
  #
@@ -4653,6 +4691,12 @@ module Aws::BedrockAgentCoreControl
4653
4691
  # @option params [Hash<String,String>] :tags
4654
4692
  # A map of tag keys and values to assign to the payment manager.
4655
4693
  #
4694
+ # @option params [String] :kms_key_arn
4695
+ # The Amazon Resource Name (ARN) of the customer managed KMS key to use
4696
+ # for encrypting sensitive payment manager data at rest. If you don't
4697
+ # specify a key, the data is encrypted with an Amazon Web Services owned
4698
+ # key.
4699
+ #
4656
4700
  # @return [Types::CreatePaymentManagerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4657
4701
  #
4658
4702
  # * {Types::CreatePaymentManagerResponse#payment_manager_arn #payment_manager_arn} => String
@@ -4665,6 +4709,7 @@ module Aws::BedrockAgentCoreControl
4665
4709
  # * {Types::CreatePaymentManagerResponse#created_at #created_at} => Time
4666
4710
  # * {Types::CreatePaymentManagerResponse#status #status} => String
4667
4711
  # * {Types::CreatePaymentManagerResponse#tags #tags} => Hash&lt;String,String&gt;
4712
+ # * {Types::CreatePaymentManagerResponse#kms_key_arn #kms_key_arn} => String
4668
4713
  #
4669
4714
  # @example Request syntax with placeholder values
4670
4715
  #
@@ -4744,6 +4789,7 @@ module Aws::BedrockAgentCoreControl
4744
4789
  # tags: {
4745
4790
  # "TagKey" => "TagValue",
4746
4791
  # },
4792
+ # kms_key_arn: "KmsKeyArn",
4747
4793
  # })
4748
4794
  #
4749
4795
  # @example Response structure
@@ -4800,6 +4846,7 @@ module Aws::BedrockAgentCoreControl
4800
4846
  # resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
4801
4847
  # resp.tags #=> Hash
4802
4848
  # resp.tags["TagKey"] #=> String
4849
+ # resp.kms_key_arn #=> String
4803
4850
  #
4804
4851
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreatePaymentManager AWS API Documentation
4805
4852
  #
@@ -4822,9 +4869,17 @@ module Aws::BedrockAgentCoreControl
4822
4869
  # asynchronous operation. Use the [GetPolicy][1] operation to poll the
4823
4870
  # `status` field to track completion.
4824
4871
  #
4872
+ # If the new policy is a temporal policy, creating it invalidates the
4873
+ # policy engine's active temporal sessions. For more information about
4874
+ # temporal policy sessions, see [session-based temporal policies][2].
4875
+ # The policy engine returns an HTTP 409 `ConflictException` to in-flight
4876
+ # sessions. To resume, you must start a new session with a new session
4877
+ # ID.
4878
+ #
4825
4879
  #
4826
4880
  #
4827
4881
  # [1]: https://docs.aws.amazon.com/bedrock-agentcore-control/latest/APIReference/API_GetPolicy.html
4882
+ # [2]: https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/policy-session-based-temporal.html
4828
4883
  #
4829
4884
  # @option params [required, String] :name
4830
4885
  # The customer-assigned immutable name for the policy. Must be unique
@@ -6341,7 +6396,7 @@ module Aws::BedrockAgentCoreControl
6341
6396
  #
6342
6397
  # @example Response structure
6343
6398
  #
6344
- # resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
6399
+ # resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED", "AWS_MARKETPLACE_SUBSCRIPTION_REQUIRED", "PENDING_AUTHENTICATION", "PROVISIONING", "AUTHENTICATION_EXPIRED", "AUTHENTICATION_FAILED"
6345
6400
  # resp.payment_connector_id #=> String
6346
6401
  #
6347
6402
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeletePaymentConnector AWS API Documentation
@@ -7314,7 +7369,7 @@ module Aws::BedrockAgentCoreControl
7314
7369
  # resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
7315
7370
  # resp.draft_status #=> String, one of "MODIFIED", "UNMODIFIED"
7316
7371
  # resp.failure_reason #=> String
7317
- # resp.schema_type #=> String, one of "AGENTCORE_EVALUATION_PREDEFINED_V1", "AGENTCORE_EVALUATION_SIMULATED_V1"
7372
+ # resp.schema_type #=> String, one of "AGENTCORE_EVALUATION_PREDEFINED_V1", "AGENTCORE_EVALUATION_SIMULATED_V1", "GENERIC_EVALUATION_PREDEFINED_V1"
7318
7373
  # resp.kms_key_arn #=> String
7319
7374
  # resp.example_count #=> Integer
7320
7375
  # resp.download_url #=> String
@@ -7356,6 +7411,8 @@ module Aws::BedrockAgentCoreControl
7356
7411
  # * {Types::GetEvaluatorResponse#evaluator_name #evaluator_name} => String
7357
7412
  # * {Types::GetEvaluatorResponse#description #description} => String
7358
7413
  # * {Types::GetEvaluatorResponse#evaluator_config #evaluator_config} => Types::EvaluatorConfig
7414
+ # * {Types::GetEvaluatorResponse#evaluator_type #evaluator_type} => String
7415
+ # * {Types::GetEvaluatorResponse#provider #provider} => String
7359
7416
  # * {Types::GetEvaluatorResponse#level #level} => String
7360
7417
  # * {Types::GetEvaluatorResponse#status #status} => String
7361
7418
  # * {Types::GetEvaluatorResponse#created_at #created_at} => Time
@@ -7397,6 +7454,20 @@ module Aws::BedrockAgentCoreControl
7397
7454
  # resp.evaluator_config.llm_as_a_judge.model_config.responses_evaluator_model_config.reasoning.effort #=> String
7398
7455
  # resp.evaluator_config.code_based.lambda_config.lambda_arn #=> String
7399
7456
  # resp.evaluator_config.code_based.lambda_config.lambda_timeout_in_seconds #=> Integer
7457
+ # resp.evaluator_config.derived.base_evaluator_id #=> String
7458
+ # resp.evaluator_config.derived.model_config.bedrock_evaluator_model_config.model_id #=> String
7459
+ # resp.evaluator_config.derived.model_config.bedrock_evaluator_model_config.inference_config.max_tokens #=> Integer
7460
+ # resp.evaluator_config.derived.model_config.bedrock_evaluator_model_config.inference_config.temperature #=> Float
7461
+ # resp.evaluator_config.derived.model_config.bedrock_evaluator_model_config.inference_config.top_p #=> Float
7462
+ # resp.evaluator_config.derived.model_config.bedrock_evaluator_model_config.inference_config.stop_sequences #=> Array
7463
+ # resp.evaluator_config.derived.model_config.bedrock_evaluator_model_config.inference_config.stop_sequences[0] #=> String
7464
+ # resp.evaluator_config.derived.model_config.responses_evaluator_model_config.model_id #=> String
7465
+ # resp.evaluator_config.derived.model_config.responses_evaluator_model_config.max_output_tokens #=> Integer
7466
+ # resp.evaluator_config.derived.model_config.responses_evaluator_model_config.temperature #=> Float
7467
+ # resp.evaluator_config.derived.model_config.responses_evaluator_model_config.top_p #=> Float
7468
+ # resp.evaluator_config.derived.model_config.responses_evaluator_model_config.reasoning.effort #=> String
7469
+ # resp.evaluator_type #=> String, one of "Builtin", "ThirdParty", "Custom", "CustomCode", "CustomDerived"
7470
+ # resp.provider #=> String, one of "AWS", "DeepEval", "AutoEval", "Custom"
7400
7471
  # resp.level #=> String, one of "TOOL_CALL", "TRACE", "SESSION"
7401
7472
  # resp.status #=> String, one of "ACTIVE", "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "DELETING"
7402
7473
  # resp.created_at #=> Time
@@ -8454,6 +8525,7 @@ module Aws::BedrockAgentCoreControl
8454
8525
  # * {Types::GetPaymentConnectorResponse#created_at #created_at} => Time
8455
8526
  # * {Types::GetPaymentConnectorResponse#last_updated_at #last_updated_at} => Time
8456
8527
  # * {Types::GetPaymentConnectorResponse#status #status} => String
8528
+ # * {Types::GetPaymentConnectorResponse#authorization_url #authorization_url} => String
8457
8529
  #
8458
8530
  # @example Request syntax with placeholder values
8459
8531
  #
@@ -8473,7 +8545,8 @@ module Aws::BedrockAgentCoreControl
8473
8545
  # resp.credential_provider_configurations[0].stripe_privy.credential_provider_arn #=> String
8474
8546
  # resp.created_at #=> Time
8475
8547
  # resp.last_updated_at #=> Time
8476
- # resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
8548
+ # resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED", "AWS_MARKETPLACE_SUBSCRIPTION_REQUIRED", "PENDING_AUTHENTICATION", "PROVISIONING", "AUTHENTICATION_EXPIRED", "AUTHENTICATION_FAILED"
8549
+ # resp.authorization_url #=> String
8477
8550
  #
8478
8551
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPaymentConnector AWS API Documentation
8479
8552
  #
@@ -8558,6 +8631,7 @@ module Aws::BedrockAgentCoreControl
8558
8631
  # * {Types::GetPaymentManagerResponse#last_updated_at #last_updated_at} => Time
8559
8632
  # * {Types::GetPaymentManagerResponse#status #status} => String
8560
8633
  # * {Types::GetPaymentManagerResponse#tags #tags} => Hash&lt;String,String&gt;
8634
+ # * {Types::GetPaymentManagerResponse#kms_key_arn #kms_key_arn} => String
8561
8635
  #
8562
8636
  # @example Request syntax with placeholder values
8563
8637
  #
@@ -8621,6 +8695,7 @@ module Aws::BedrockAgentCoreControl
8621
8695
  # resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
8622
8696
  # resp.tags #=> Hash
8623
8697
  # resp.tags["TagKey"] #=> String
8698
+ # resp.kms_key_arn #=> String
8624
8699
  #
8625
8700
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPaymentManager AWS API Documentation
8626
8701
  #
@@ -9930,7 +10005,7 @@ module Aws::BedrockAgentCoreControl
9930
10005
  # resp.datasets[0].description #=> String
9931
10006
  # resp.datasets[0].status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
9932
10007
  # resp.datasets[0].draft_status #=> String, one of "MODIFIED", "UNMODIFIED"
9933
- # resp.datasets[0].schema_type #=> String, one of "AGENTCORE_EVALUATION_PREDEFINED_V1", "AGENTCORE_EVALUATION_SIMULATED_V1"
10008
+ # resp.datasets[0].schema_type #=> String, one of "AGENTCORE_EVALUATION_PREDEFINED_V1", "AGENTCORE_EVALUATION_SIMULATED_V1", "GENERIC_EVALUATION_PREDEFINED_V1"
9934
10009
  # resp.datasets[0].example_count #=> Integer
9935
10010
  # resp.datasets[0].created_at #=> Time
9936
10011
  # resp.datasets[0].updated_at #=> Time
@@ -9976,7 +10051,8 @@ module Aws::BedrockAgentCoreControl
9976
10051
  # resp.evaluators[0].evaluator_id #=> String
9977
10052
  # resp.evaluators[0].evaluator_name #=> String
9978
10053
  # resp.evaluators[0].description #=> String
9979
- # resp.evaluators[0].evaluator_type #=> String, one of "Builtin", "Custom", "CustomCode"
10054
+ # resp.evaluators[0].evaluator_type #=> String, one of "Builtin", "ThirdParty", "Custom", "CustomCode", "CustomDerived"
10055
+ # resp.evaluators[0].provider #=> String, one of "AWS", "DeepEval", "AutoEval", "Custom"
9980
10056
  # resp.evaluators[0].level #=> String, one of "TOOL_CALL", "TRACE", "SESSION"
9981
10057
  # resp.evaluators[0].status #=> String, one of "ACTIVE", "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "DELETING"
9982
10058
  # resp.evaluators[0].created_at #=> Time
@@ -10562,7 +10638,7 @@ module Aws::BedrockAgentCoreControl
10562
10638
  # resp.payment_connectors[0].payment_connector_id #=> String
10563
10639
  # resp.payment_connectors[0].name #=> String
10564
10640
  # resp.payment_connectors[0].type #=> String, one of "CoinbaseCDP", "StripePrivy"
10565
- # resp.payment_connectors[0].status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
10641
+ # resp.payment_connectors[0].status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED", "AWS_MARKETPLACE_SUBSCRIPTION_REQUIRED", "PENDING_AUTHENTICATION", "PROVISIONING", "AUTHENTICATION_EXPIRED", "AUTHENTICATION_FAILED"
10566
10642
  # resp.payment_connectors[0].last_updated_at #=> Time
10567
10643
  # resp.next_token #=> String
10568
10644
  #
@@ -10656,6 +10732,7 @@ module Aws::BedrockAgentCoreControl
10656
10732
  # resp.payment_managers[0].status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
10657
10733
  # resp.payment_managers[0].created_at #=> Time
10658
10734
  # resp.payment_managers[0].last_updated_at #=> Time
10735
+ # resp.payment_managers[0].kms_key_arn #=> String
10659
10736
  # resp.next_token #=> String
10660
10737
  #
10661
10738
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPaymentManagers AWS API Documentation
@@ -11984,7 +12061,7 @@ module Aws::BedrockAgentCoreControl
11984
12061
  # },
11985
12062
  # ],
11986
12063
  # capacity_provider_configuration: {
11987
- # capacity_provider_arn: "CapacityProviderArn",
12064
+ # capacity_provider_arn: "CapacityProviderArn", # required
11988
12065
  # },
11989
12066
  # client_token: "ClientToken",
11990
12067
  # })
@@ -12516,6 +12593,31 @@ module Aws::BedrockAgentCoreControl
12516
12593
  # lambda_timeout_in_seconds: 1,
12517
12594
  # },
12518
12595
  # },
12596
+ # derived: {
12597
+ # base_evaluator_id: "EvaluatorId", # required
12598
+ # model_config: { # required
12599
+ # bedrock_evaluator_model_config: {
12600
+ # model_id: "ModelId", # required
12601
+ # inference_config: {
12602
+ # max_tokens: 1,
12603
+ # temperature: 1.0,
12604
+ # top_p: 1.0,
12605
+ # stop_sequences: ["NonEmptyString"],
12606
+ # },
12607
+ # additional_model_request_fields: {
12608
+ # },
12609
+ # },
12610
+ # responses_evaluator_model_config: {
12611
+ # model_id: "ModelId", # required
12612
+ # max_output_tokens: 1,
12613
+ # temperature: 1.0,
12614
+ # top_p: 1.0,
12615
+ # reasoning: {
12616
+ # effort: "ReasoningConfigurationEffortString",
12617
+ # },
12618
+ # },
12619
+ # },
12620
+ # },
12519
12621
  # },
12520
12622
  # level: "TOOL_CALL", # accepts TOOL_CALL, TRACE, SESSION
12521
12623
  # kms_key_arn: "KmsKeyArn",
@@ -15216,6 +15318,7 @@ module Aws::BedrockAgentCoreControl
15216
15318
  # * {Types::UpdatePaymentConnectorResponse#credential_provider_configurations #credential_provider_configurations} => Array&lt;Types::CredentialsProviderConfiguration&gt;
15217
15319
  # * {Types::UpdatePaymentConnectorResponse#last_updated_at #last_updated_at} => Time
15218
15320
  # * {Types::UpdatePaymentConnectorResponse#status #status} => String
15321
+ # * {Types::UpdatePaymentConnectorResponse#authorization_url #authorization_url} => String
15219
15322
  #
15220
15323
  # @example Request syntax with placeholder values
15221
15324
  #
@@ -15247,7 +15350,8 @@ module Aws::BedrockAgentCoreControl
15247
15350
  # resp.credential_provider_configurations[0].coinbase_cdp.credential_provider_arn #=> String
15248
15351
  # resp.credential_provider_configurations[0].stripe_privy.credential_provider_arn #=> String
15249
15352
  # resp.last_updated_at #=> Time
15250
- # resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
15353
+ # resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED", "AWS_MARKETPLACE_SUBSCRIPTION_REQUIRED", "PENDING_AUTHENTICATION", "PROVISIONING", "AUTHENTICATION_EXPIRED", "AUTHENTICATION_FAILED"
15354
+ # resp.authorization_url #=> String
15251
15355
  #
15252
15356
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatePaymentConnector AWS API Documentation
15253
15357
  #
@@ -15385,6 +15489,10 @@ module Aws::BedrockAgentCoreControl
15385
15489
  #
15386
15490
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
15387
15491
  #
15492
+ # @option params [String] :kms_key_arn
15493
+ # The updated Amazon Resource Name (ARN) of the customer managed KMS key
15494
+ # used to encrypt sensitive payment manager data at rest.
15495
+ #
15388
15496
  # @return [Types::UpdatePaymentManagerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
15389
15497
  #
15390
15498
  # * {Types::UpdatePaymentManagerResponse#payment_manager_arn #payment_manager_arn} => String
@@ -15395,6 +15503,7 @@ module Aws::BedrockAgentCoreControl
15395
15503
  # * {Types::UpdatePaymentManagerResponse#workload_identity_details #workload_identity_details} => Types::WorkloadIdentityDetails
15396
15504
  # * {Types::UpdatePaymentManagerResponse#last_updated_at #last_updated_at} => Time
15397
15505
  # * {Types::UpdatePaymentManagerResponse#status #status} => String
15506
+ # * {Types::UpdatePaymentManagerResponse#kms_key_arn #kms_key_arn} => String
15398
15507
  #
15399
15508
  # @example Request syntax with placeholder values
15400
15509
  #
@@ -15471,6 +15580,7 @@ module Aws::BedrockAgentCoreControl
15471
15580
  # },
15472
15581
  # role_arn: "RoleArn",
15473
15582
  # client_token: "ClientToken",
15583
+ # kms_key_arn: "KmsKeyArn",
15474
15584
  # })
15475
15585
  #
15476
15586
  # @example Response structure
@@ -15483,6 +15593,7 @@ module Aws::BedrockAgentCoreControl
15483
15593
  # resp.workload_identity_details.workload_identity_arn #=> String
15484
15594
  # resp.last_updated_at #=> Time
15485
15595
  # resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
15596
+ # resp.kms_key_arn #=> String
15486
15597
  #
15487
15598
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatePaymentManager AWS API Documentation
15488
15599
  #
@@ -15500,6 +15611,18 @@ module Aws::BedrockAgentCoreControl
15500
15611
  # asynchronous operation. Use the `GetPolicy` operation to poll the
15501
15612
  # `status` field to track completion.
15502
15613
  #
15614
+ # If the updated policy is a temporal policy, the policy engine
15615
+ # invalidates all active temporal sessions. If the update adds or
15616
+ # removes temporal operators, the policy engine also invalidates active
15617
+ # temporal sessions. For more information about temporal policy
15618
+ # sessions, see [session-based temporal policies][1]. The policy engine
15619
+ # returns an HTTP 409 `ConflictException` to in-flight sessions. To
15620
+ # resume, you must start a new session with a new session ID.
15621
+ #
15622
+ #
15623
+ #
15624
+ # [1]: https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/policy-session-based-temporal.html
15625
+ #
15503
15626
  # @option params [required, String] :policy_engine_id
15504
15627
  # The identifier of the policy engine that manages the policy to be
15505
15628
  # updated. This ensures the policy is updated within the correct policy
@@ -16160,7 +16283,7 @@ module Aws::BedrockAgentCoreControl
16160
16283
  tracer: tracer
16161
16284
  )
16162
16285
  context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
16163
- context[:gem_version] = '1.63.0'
16286
+ context[:gem_version] = '1.65.0'
16164
16287
  Seahorse::Client::Request.new(handlers, context)
16165
16288
  end
16166
16289
 
@@ -373,6 +373,7 @@ module Aws::BedrockAgentCoreControl
373
373
  DeleteResourcePolicyResponse = Shapes::StructureShape.new(name: 'DeleteResourcePolicyResponse')
374
374
  DeleteWorkloadIdentityRequest = Shapes::StructureShape.new(name: 'DeleteWorkloadIdentityRequest')
375
375
  DeleteWorkloadIdentityResponse = Shapes::StructureShape.new(name: 'DeleteWorkloadIdentityResponse')
376
+ DerivedEvaluatorConfig = Shapes::StructureShape.new(name: 'DerivedEvaluatorConfig')
376
377
  Description = Shapes::StringShape.new(name: 'Description')
377
378
  DescriptorType = Shapes::StringShape.new(name: 'DescriptorType')
378
379
  Descriptors = Shapes::StructureShape.new(name: 'Descriptors')
@@ -945,8 +946,10 @@ module Aws::BedrockAgentCoreControl
945
946
  PassthroughEndpoint = Shapes::StringShape.new(name: 'PassthroughEndpoint')
946
947
  PassthroughProtocolType = Shapes::StringShape.new(name: 'PassthroughProtocolType')
947
948
  PassthroughTargetConfiguration = Shapes::StructureShape.new(name: 'PassthroughTargetConfiguration')
949
+ PaymentConnectorAuthorizationUrl = Shapes::StringShape.new(name: 'PaymentConnectorAuthorizationUrl')
948
950
  PaymentConnectorId = Shapes::StringShape.new(name: 'PaymentConnectorId')
949
951
  PaymentConnectorName = Shapes::StringShape.new(name: 'PaymentConnectorName')
952
+ PaymentConnectorProvisionMode = Shapes::StringShape.new(name: 'PaymentConnectorProvisionMode')
950
953
  PaymentConnectorStatus = Shapes::StringShape.new(name: 'PaymentConnectorStatus')
951
954
  PaymentConnectorSummaries = Shapes::ListShape.new(name: 'PaymentConnectorSummaries')
952
955
  PaymentConnectorSummary = Shapes::StructureShape.new(name: 'PaymentConnectorSummary')
@@ -1007,6 +1010,7 @@ module Aws::BedrockAgentCoreControl
1007
1010
  PrivateKeySource = Shapes::UnionShape.new(name: 'PrivateKeySource')
1008
1011
  Prompt = Shapes::StringShape.new(name: 'Prompt')
1009
1012
  ProtocolConfiguration = Shapes::StructureShape.new(name: 'ProtocolConfiguration')
1013
+ Provider = Shapes::StringShape.new(name: 'Provider')
1010
1014
  ProviderPrefix = Shapes::StructureShape.new(name: 'ProviderPrefix')
1011
1015
  ProviderPrefixSeparatorString = Shapes::StringShape.new(name: 'ProviderPrefixSeparatorString')
1012
1016
  PutResourcePolicyRequest = Shapes::StructureShape.new(name: 'PutResourcePolicyRequest')
@@ -1170,6 +1174,7 @@ module Aws::BedrockAgentCoreControl
1170
1174
  SubnetId = Shapes::StringShape.new(name: 'SubnetId')
1171
1175
  SubnetIds = Shapes::ListShape.new(name: 'SubnetIds')
1172
1176
  Subnets = Shapes::ListShape.new(name: 'Subnets')
1177
+ SubscriptionRequiredException = Shapes::StructureShape.new(name: 'SubscriptionRequiredException')
1173
1178
  SummaryConsolidationOverride = Shapes::StructureShape.new(name: 'SummaryConsolidationOverride')
1174
1179
  SummaryMemoryStrategyInput = Shapes::StructureShape.new(name: 'SummaryMemoryStrategyInput')
1175
1180
  SummaryOverrideConfigurationInput = Shapes::StructureShape.new(name: 'SummaryOverrideConfigurationInput')
@@ -1602,7 +1607,7 @@ module Aws::BedrockAgentCoreControl
1602
1607
  BrowserSummary.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, location_name: "lastUpdatedAt"))
1603
1608
  BrowserSummary.struct_class = Types::BrowserSummary
1604
1609
 
1605
- CapacityProviderConfiguration.add_member(:capacity_provider_arn, Shapes::ShapeRef.new(shape: CapacityProviderArn, location_name: "capacityProviderArn"))
1610
+ CapacityProviderConfiguration.add_member(:capacity_provider_arn, Shapes::ShapeRef.new(shape: CapacityProviderArn, required: true, location_name: "capacityProviderArn"))
1606
1611
  CapacityProviderConfiguration.struct_class = Types::CapacityProviderConfiguration
1607
1612
 
1608
1613
  CapacityProviderList.member = Shapes::ShapeRef.new(shape: CapacityProviderSummary)
@@ -2195,6 +2200,7 @@ module Aws::BedrockAgentCoreControl
2195
2200
  CreatePaymentConnectorRequest.add_member(:description, Shapes::ShapeRef.new(shape: PaymentsDescription, location_name: "description"))
2196
2201
  CreatePaymentConnectorRequest.add_member(:type, Shapes::ShapeRef.new(shape: PaymentConnectorType, required: true, location_name: "type"))
2197
2202
  CreatePaymentConnectorRequest.add_member(:credential_provider_configurations, Shapes::ShapeRef.new(shape: CredentialsProviderConfigurations, required: true, location_name: "credentialProviderConfigurations"))
2203
+ CreatePaymentConnectorRequest.add_member(:provision_mode, Shapes::ShapeRef.new(shape: PaymentConnectorProvisionMode, location_name: "provisionMode"))
2198
2204
  CreatePaymentConnectorRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
2199
2205
  CreatePaymentConnectorRequest.struct_class = Types::CreatePaymentConnectorRequest
2200
2206
 
@@ -2205,6 +2211,7 @@ module Aws::BedrockAgentCoreControl
2205
2211
  CreatePaymentConnectorResponse.add_member(:credential_provider_configurations, Shapes::ShapeRef.new(shape: CredentialsProviderConfigurations, required: true, location_name: "credentialProviderConfigurations"))
2206
2212
  CreatePaymentConnectorResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
2207
2213
  CreatePaymentConnectorResponse.add_member(:status, Shapes::ShapeRef.new(shape: PaymentConnectorStatus, required: true, location_name: "status"))
2214
+ CreatePaymentConnectorResponse.add_member(:authorization_url, Shapes::ShapeRef.new(shape: PaymentConnectorAuthorizationUrl, location_name: "authorizationUrl"))
2208
2215
  CreatePaymentConnectorResponse.struct_class = Types::CreatePaymentConnectorResponse
2209
2216
 
2210
2217
  CreatePaymentCredentialProviderRequest.add_member(:name, Shapes::ShapeRef.new(shape: CredentialProviderName, required: true, location_name: "name"))
@@ -2226,6 +2233,7 @@ module Aws::BedrockAgentCoreControl
2226
2233
  CreatePaymentManagerRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "roleArn"))
2227
2234
  CreatePaymentManagerRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
2228
2235
  CreatePaymentManagerRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
2236
+ CreatePaymentManagerRequest.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
2229
2237
  CreatePaymentManagerRequest.struct_class = Types::CreatePaymentManagerRequest
2230
2238
 
2231
2239
  CreatePaymentManagerResponse.add_member(:payment_manager_arn, Shapes::ShapeRef.new(shape: PaymentManagerArn, required: true, location_name: "paymentManagerArn"))
@@ -2238,6 +2246,7 @@ module Aws::BedrockAgentCoreControl
2238
2246
  CreatePaymentManagerResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
2239
2247
  CreatePaymentManagerResponse.add_member(:status, Shapes::ShapeRef.new(shape: PaymentManagerStatus, required: true, location_name: "status"))
2240
2248
  CreatePaymentManagerResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
2249
+ CreatePaymentManagerResponse.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
2241
2250
  CreatePaymentManagerResponse.struct_class = Types::CreatePaymentManagerResponse
2242
2251
 
2243
2252
  CreatePolicyEngineRequest.add_member(:name, Shapes::ShapeRef.new(shape: PolicyEngineName, required: true, location_name: "name"))
@@ -2761,6 +2770,10 @@ module Aws::BedrockAgentCoreControl
2761
2770
 
2762
2771
  DeleteWorkloadIdentityResponse.struct_class = Types::DeleteWorkloadIdentityResponse
2763
2772
 
2773
+ DerivedEvaluatorConfig.add_member(:base_evaluator_id, Shapes::ShapeRef.new(shape: EvaluatorId, required: true, location_name: "baseEvaluatorId"))
2774
+ DerivedEvaluatorConfig.add_member(:model_config, Shapes::ShapeRef.new(shape: EvaluatorModelConfig, required: true, location_name: "modelConfig"))
2775
+ DerivedEvaluatorConfig.struct_class = Types::DerivedEvaluatorConfig
2776
+
2764
2777
  Descriptors.add_member(:mcp, Shapes::ShapeRef.new(shape: McpDescriptor, location_name: "mcp"))
2765
2778
  Descriptors.add_member(:a2a, Shapes::ShapeRef.new(shape: A2aDescriptor, location_name: "a2a"))
2766
2779
  Descriptors.add_member(:custom, Shapes::ShapeRef.new(shape: CustomDescriptor, location_name: "custom"))
@@ -2874,9 +2887,11 @@ module Aws::BedrockAgentCoreControl
2874
2887
 
2875
2888
  EvaluatorConfig.add_member(:llm_as_a_judge, Shapes::ShapeRef.new(shape: LlmAsAJudgeEvaluatorConfig, location_name: "llmAsAJudge"))
2876
2889
  EvaluatorConfig.add_member(:code_based, Shapes::ShapeRef.new(shape: CodeBasedEvaluatorConfig, location_name: "codeBased"))
2890
+ EvaluatorConfig.add_member(:derived, Shapes::ShapeRef.new(shape: DerivedEvaluatorConfig, location_name: "derived"))
2877
2891
  EvaluatorConfig.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
2878
2892
  EvaluatorConfig.add_member_subclass(:llm_as_a_judge, Types::EvaluatorConfig::LlmAsAJudge)
2879
2893
  EvaluatorConfig.add_member_subclass(:code_based, Types::EvaluatorConfig::CodeBased)
2894
+ EvaluatorConfig.add_member_subclass(:derived, Types::EvaluatorConfig::Derived)
2880
2895
  EvaluatorConfig.add_member_subclass(:unknown, Types::EvaluatorConfig::Unknown)
2881
2896
  EvaluatorConfig.struct_class = Types::EvaluatorConfig
2882
2897
 
@@ -2901,6 +2916,7 @@ module Aws::BedrockAgentCoreControl
2901
2916
  EvaluatorSummary.add_member(:evaluator_name, Shapes::ShapeRef.new(shape: EvaluatorName, required: true, location_name: "evaluatorName"))
2902
2917
  EvaluatorSummary.add_member(:description, Shapes::ShapeRef.new(shape: EvaluatorDescription, location_name: "description"))
2903
2918
  EvaluatorSummary.add_member(:evaluator_type, Shapes::ShapeRef.new(shape: EvaluatorType, required: true, location_name: "evaluatorType"))
2919
+ EvaluatorSummary.add_member(:provider, Shapes::ShapeRef.new(shape: Provider, location_name: "provider"))
2904
2920
  EvaluatorSummary.add_member(:level, Shapes::ShapeRef.new(shape: EvaluatorLevel, location_name: "level"))
2905
2921
  EvaluatorSummary.add_member(:status, Shapes::ShapeRef.new(shape: EvaluatorStatus, required: true, location_name: "status"))
2906
2922
  EvaluatorSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
@@ -3071,7 +3087,7 @@ module Aws::BedrockAgentCoreControl
3071
3087
  GetAgentRuntimeResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
3072
3088
  GetAgentRuntimeResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "lastUpdatedAt"))
3073
3089
  GetAgentRuntimeResponse.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "roleArn"))
3074
- GetAgentRuntimeResponse.add_member(:network_configuration, Shapes::ShapeRef.new(shape: NetworkConfiguration, required: true, location_name: "networkConfiguration"))
3090
+ GetAgentRuntimeResponse.add_member(:network_configuration, Shapes::ShapeRef.new(shape: NetworkConfiguration, location_name: "networkConfiguration"))
3075
3091
  GetAgentRuntimeResponse.add_member(:status, Shapes::ShapeRef.new(shape: AgentRuntimeStatus, required: true, location_name: "status"))
3076
3092
  GetAgentRuntimeResponse.add_member(:lifecycle_configuration, Shapes::ShapeRef.new(shape: LifecycleConfiguration, required: true, location_name: "lifecycleConfiguration"))
3077
3093
  GetAgentRuntimeResponse.add_member(:failure_reason, Shapes::ShapeRef.new(shape: String, location_name: "failureReason"))
@@ -3230,6 +3246,8 @@ module Aws::BedrockAgentCoreControl
3230
3246
  GetEvaluatorResponse.add_member(:evaluator_name, Shapes::ShapeRef.new(shape: EvaluatorName, required: true, location_name: "evaluatorName"))
3231
3247
  GetEvaluatorResponse.add_member(:description, Shapes::ShapeRef.new(shape: EvaluatorDescription, location_name: "description"))
3232
3248
  GetEvaluatorResponse.add_member(:evaluator_config, Shapes::ShapeRef.new(shape: EvaluatorConfig, required: true, location_name: "evaluatorConfig"))
3249
+ GetEvaluatorResponse.add_member(:evaluator_type, Shapes::ShapeRef.new(shape: EvaluatorType, location_name: "evaluatorType"))
3250
+ GetEvaluatorResponse.add_member(:provider, Shapes::ShapeRef.new(shape: Provider, location_name: "provider"))
3233
3251
  GetEvaluatorResponse.add_member(:level, Shapes::ShapeRef.new(shape: EvaluatorLevel, required: true, location_name: "level"))
3234
3252
  GetEvaluatorResponse.add_member(:status, Shapes::ShapeRef.new(shape: EvaluatorStatus, required: true, location_name: "status"))
3235
3253
  GetEvaluatorResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
@@ -3388,6 +3406,7 @@ module Aws::BedrockAgentCoreControl
3388
3406
  GetPaymentConnectorResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
3389
3407
  GetPaymentConnectorResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "lastUpdatedAt"))
3390
3408
  GetPaymentConnectorResponse.add_member(:status, Shapes::ShapeRef.new(shape: PaymentConnectorStatus, required: true, location_name: "status"))
3409
+ GetPaymentConnectorResponse.add_member(:authorization_url, Shapes::ShapeRef.new(shape: PaymentConnectorAuthorizationUrl, location_name: "authorizationUrl"))
3391
3410
  GetPaymentConnectorResponse.struct_class = Types::GetPaymentConnectorResponse
3392
3411
 
3393
3412
  GetPaymentCredentialProviderRequest.add_member(:name, Shapes::ShapeRef.new(shape: CredentialProviderName, required: true, location_name: "name"))
@@ -3417,6 +3436,7 @@ module Aws::BedrockAgentCoreControl
3417
3436
  GetPaymentManagerResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "lastUpdatedAt"))
3418
3437
  GetPaymentManagerResponse.add_member(:status, Shapes::ShapeRef.new(shape: PaymentManagerStatus, required: true, location_name: "status"))
3419
3438
  GetPaymentManagerResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
3439
+ GetPaymentManagerResponse.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
3420
3440
  GetPaymentManagerResponse.struct_class = Types::GetPaymentManagerResponse
3421
3441
 
3422
3442
  GetPolicyEngineRequest.add_member(:policy_engine_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "policyEngineId"))
@@ -4836,6 +4856,7 @@ module Aws::BedrockAgentCoreControl
4836
4856
  PaymentManagerSummary.add_member(:status, Shapes::ShapeRef.new(shape: PaymentManagerStatus, required: true, location_name: "status"))
4837
4857
  PaymentManagerSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, location_name: "createdAt"))
4838
4858
  PaymentManagerSummary.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "lastUpdatedAt"))
4859
+ PaymentManagerSummary.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
4839
4860
  PaymentManagerSummary.struct_class = Types::PaymentManagerSummary
4840
4861
 
4841
4862
  PaymentProviderConfigurationInput.add_member(:coinbase_cdp_configuration, Shapes::ShapeRef.new(shape: CoinbaseCdpConfigurationInput, location_name: "coinbaseCdpConfiguration"))
@@ -5396,6 +5417,11 @@ module Aws::BedrockAgentCoreControl
5396
5417
 
5397
5418
  Subnets.member = Shapes::ShapeRef.new(shape: SubnetId)
5398
5419
 
5420
+ SubscriptionRequiredException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
5421
+ SubscriptionRequiredException.add_member(:subscription_url, Shapes::ShapeRef.new(shape: String, location_name: "subscriptionUrl"))
5422
+ SubscriptionRequiredException.add_member(:product_name, Shapes::ShapeRef.new(shape: String, location_name: "productName"))
5423
+ SubscriptionRequiredException.struct_class = Types::SubscriptionRequiredException
5424
+
5399
5425
  SummaryConsolidationOverride.add_member(:append_to_prompt, Shapes::ShapeRef.new(shape: Prompt, required: true, location_name: "appendToPrompt"))
5400
5426
  SummaryConsolidationOverride.add_member(:model_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "modelId"))
5401
5427
  SummaryConsolidationOverride.struct_class = Types::SummaryConsolidationOverride
@@ -5902,6 +5928,7 @@ module Aws::BedrockAgentCoreControl
5902
5928
  UpdatePaymentConnectorResponse.add_member(:credential_provider_configurations, Shapes::ShapeRef.new(shape: CredentialsProviderConfigurations, required: true, location_name: "credentialProviderConfigurations"))
5903
5929
  UpdatePaymentConnectorResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "lastUpdatedAt"))
5904
5930
  UpdatePaymentConnectorResponse.add_member(:status, Shapes::ShapeRef.new(shape: PaymentConnectorStatus, required: true, location_name: "status"))
5931
+ UpdatePaymentConnectorResponse.add_member(:authorization_url, Shapes::ShapeRef.new(shape: PaymentConnectorAuthorizationUrl, location_name: "authorizationUrl"))
5905
5932
  UpdatePaymentConnectorResponse.struct_class = Types::UpdatePaymentConnectorResponse
5906
5933
 
5907
5934
  UpdatePaymentCredentialProviderRequest.add_member(:name, Shapes::ShapeRef.new(shape: CredentialProviderName, required: true, location_name: "name"))
@@ -5923,6 +5950,7 @@ module Aws::BedrockAgentCoreControl
5923
5950
  UpdatePaymentManagerRequest.add_member(:authorizer_configuration, Shapes::ShapeRef.new(shape: AuthorizerConfiguration, location_name: "authorizerConfiguration"))
5924
5951
  UpdatePaymentManagerRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "roleArn"))
5925
5952
  UpdatePaymentManagerRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
5953
+ UpdatePaymentManagerRequest.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
5926
5954
  UpdatePaymentManagerRequest.struct_class = Types::UpdatePaymentManagerRequest
5927
5955
 
5928
5956
  UpdatePaymentManagerResponse.add_member(:payment_manager_arn, Shapes::ShapeRef.new(shape: PaymentManagerArn, required: true, location_name: "paymentManagerArn"))
@@ -5933,6 +5961,7 @@ module Aws::BedrockAgentCoreControl
5933
5961
  UpdatePaymentManagerResponse.add_member(:workload_identity_details, Shapes::ShapeRef.new(shape: WorkloadIdentityDetails, location_name: "workloadIdentityDetails"))
5934
5962
  UpdatePaymentManagerResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "lastUpdatedAt"))
5935
5963
  UpdatePaymentManagerResponse.add_member(:status, Shapes::ShapeRef.new(shape: PaymentManagerStatus, required: true, location_name: "status"))
5964
+ UpdatePaymentManagerResponse.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
5936
5965
  UpdatePaymentManagerResponse.struct_class = Types::UpdatePaymentManagerResponse
5937
5966
 
5938
5967
  UpdatePolicyEngineRequest.add_member(:policy_engine_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "policyEngineId"))
@@ -6565,6 +6594,7 @@ module Aws::BedrockAgentCoreControl
6565
6594
  o.input = Shapes::ShapeRef.new(shape: CreatePaymentConnectorRequest)
6566
6595
  o.output = Shapes::ShapeRef.new(shape: CreatePaymentConnectorResponse)
6567
6596
  o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
6597
+ o.errors << Shapes::ShapeRef.new(shape: SubscriptionRequiredException)
6568
6598
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
6569
6599
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
6570
6600
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -8620,6 +8650,7 @@ module Aws::BedrockAgentCoreControl
8620
8650
  o.input = Shapes::ShapeRef.new(shape: UpdatePaymentConnectorRequest)
8621
8651
  o.output = Shapes::ShapeRef.new(shape: UpdatePaymentConnectorResponse)
8622
8652
  o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
8653
+ o.errors << Shapes::ShapeRef.new(shape: SubscriptionRequiredException)
8623
8654
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
8624
8655
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
8625
8656
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)