aws-sdk-bedrockagentcorecontrol 1.50.0 → 1.52.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.
@@ -474,21 +474,10 @@ module Aws::BedrockAgentCoreControl
474
474
 
475
475
  # @!group API Operations
476
476
 
477
- # Adds examples to the dataset's DRAFT.
478
- #
479
- # **Validation:** All examples are validated against the dataset's
480
- # schemaType before any writes occur. If any example fails validation,
481
- # the entire batch is rejected with ValidationException — no examples
482
- # are written (all-or-nothing semantics).
483
- #
484
- # **Asynchronous:** Operates in-place on DRAFT. No version bump occurs.
485
- # Use CreateDatasetVersion to publish DRAFT as a new numbered version.
486
- #
487
- # **State guard:** Returns ConflictException (DATASET\_NOT\_READY) if
488
- # the dataset status is not in \{DRAFT, ACTIVE}.
489
- #
490
- # **Request size limit:** Max 5 MB total request body. Max 1000 examples
491
- # per call.
477
+ # Adds examples to the dataset's DRAFT. All examples are validated
478
+ # against the dataset's schema type before any writes occur. If any
479
+ # example fails validation, the entire batch is rejected (all-or-nothing
480
+ # semantics).
492
481
  #
493
482
  # @option params [required, String] :dataset_id
494
483
  # The unique identifier of the dataset to add examples to.
@@ -830,10 +819,21 @@ module Aws::BedrockAgentCoreControl
830
819
  # The name of the API key credential provider. The name must be unique
831
820
  # within your account.
832
821
  #
833
- # @option params [required, String] :api_key
822
+ # @option params [String] :api_key
834
823
  # The API key to use for authentication. This value is encrypted and
835
824
  # stored securely.
836
825
  #
826
+ # @option params [Types::SecretReference] :api_key_secret_config
827
+ # A reference to the AWS Secrets Manager secret that stores the API key.
828
+ # This includes the secret ID and the JSON key used to extract the API
829
+ # key value from the secret. Required when `apiKeySecretSource` is set
830
+ # to `EXTERNAL`.
831
+ #
832
+ # @option params [String] :api_key_secret_source
833
+ # The source type of the API key secret. Use `MANAGED` if the secret is
834
+ # managed by the service, or `EXTERNAL` if you manage the secret
835
+ # yourself in AWS Secrets Manager.
836
+ #
837
837
  # @option params [Hash<String,String>] :tags
838
838
  # A map of tag keys and values to assign to the API key credential
839
839
  # provider. Tags enable you to categorize your resources in different
@@ -842,6 +842,8 @@ module Aws::BedrockAgentCoreControl
842
842
  # @return [Types::CreateApiKeyCredentialProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
843
843
  #
844
844
  # * {Types::CreateApiKeyCredentialProviderResponse#api_key_secret_arn #api_key_secret_arn} => Types::Secret
845
+ # * {Types::CreateApiKeyCredentialProviderResponse#api_key_secret_json_key #api_key_secret_json_key} => String
846
+ # * {Types::CreateApiKeyCredentialProviderResponse#api_key_secret_source #api_key_secret_source} => String
845
847
  # * {Types::CreateApiKeyCredentialProviderResponse#name #name} => String
846
848
  # * {Types::CreateApiKeyCredentialProviderResponse#credential_provider_arn #credential_provider_arn} => String
847
849
  #
@@ -849,7 +851,12 @@ module Aws::BedrockAgentCoreControl
849
851
  #
850
852
  # resp = client.create_api_key_credential_provider({
851
853
  # name: "CredentialProviderName", # required
852
- # api_key: "ApiKeyType", # required
854
+ # api_key: "DefaultApiKeyType",
855
+ # api_key_secret_config: {
856
+ # secret_id: "SecretIdType", # required
857
+ # json_key: "SecretJsonKeyType", # required
858
+ # },
859
+ # api_key_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
853
860
  # tags: {
854
861
  # "TagKey" => "TagValue",
855
862
  # },
@@ -858,6 +865,8 @@ module Aws::BedrockAgentCoreControl
858
865
  # @example Response structure
859
866
  #
860
867
  # resp.api_key_secret_arn.secret_arn #=> String
868
+ # resp.api_key_secret_json_key #=> String
869
+ # resp.api_key_secret_source #=> String, one of "MANAGED", "EXTERNAL"
861
870
  # resp.name #=> String
862
871
  # resp.credential_provider_arn #=> String
863
872
  #
@@ -1230,20 +1239,27 @@ module Aws::BedrockAgentCoreControl
1230
1239
  req.send_request(options)
1231
1240
  end
1232
1241
 
1233
- # Creates a new Dataset resource asynchronously.
1234
- #
1235
- # Returns immediately with status CREATING. Poll GetDataset until status
1236
- # transitions to ACTIVE or CREATE\_FAILED (with failureReason).
1242
+ # Creates a new dataset resource asynchronously. Returns immediately
1243
+ # with status CREATING. Poll `GetDataset` until status transitions to
1244
+ # ACTIVE or CREATE\_FAILED.
1237
1245
  #
1238
1246
  # @option params [String] :client_token
1239
- # Optional idempotency token.
1247
+ # A unique, case-sensitive identifier to ensure that the API request
1248
+ # completes no more than one time. If you don't specify this field, a
1249
+ # value is randomly generated for you. If this token matches a previous
1250
+ # request, the service ignores the request, but doesn't return an
1251
+ # error. For more information, see [Ensuring idempotency][1].
1240
1252
  #
1241
1253
  # **A suitable default value is auto-generated.** You should normally
1242
1254
  # not need to pass this option.**
1243
1255
  #
1256
+ #
1257
+ #
1258
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
1259
+ #
1244
1260
  # @option params [required, String] :dataset_name
1245
- # Human-readable name for the dataset. Unique within the account
1246
- # (case-insensitive). Immutable after creation.
1261
+ # Human-readable name for the dataset. Must be unique within the
1262
+ # account. Immutable after creation.
1247
1263
  #
1248
1264
  # @option params [String] :description
1249
1265
  # A description of the dataset.
@@ -1257,7 +1273,8 @@ module Aws::BedrockAgentCoreControl
1257
1273
  # after creation.
1258
1274
  #
1259
1275
  # @option params [String] :kms_key_arn
1260
- # Optional AWS KMS key ARN for SSE-KMS on service S3 writes.
1276
+ # Optional KMS key ARN for server-side encryption on service Amazon S3
1277
+ # writes.
1261
1278
  #
1262
1279
  # @option params [Hash<String,String>] :tags
1263
1280
  # A map of tag keys and values to assign to the dataset.
@@ -1309,20 +1326,10 @@ module Aws::BedrockAgentCoreControl
1309
1326
  req.send_request(options)
1310
1327
  end
1311
1328
 
1312
- # Publishes the current DRAFT as a new numbered version.
1313
- #
1314
- # Snapshots the DRAFT examples as the next version (1, 2, 3, ...). The
1315
- # DRAFT is preserved and remains editable after publishing. Returns
1316
- # immediately with status UPDATING. Poll GetDataset until status
1317
- # transitions to ACTIVE (draftStatus=UNMODIFIED) or UPDATE\_FAILED.
1318
- #
1319
- # **State guard:** Returns ConflictException (DATASET\_NOT\_READY) if
1320
- # status is in \{CREATING, UPDATING, DELETING}, or
1321
- # DATASET\_IN\_FAILED\_STATE if status is in \{CREATE\_FAILED,
1322
- # DELETE\_FAILED}.
1323
- #
1324
- # **Quota:** MAX\_VERSIONS\_PER\_DATASET applies to published versions
1325
- # only (not DRAFT).
1329
+ # Publishes the current DRAFT as a new numbered version. The DRAFT is
1330
+ # preserved and remains editable after publishing. Returns immediately
1331
+ # with status UPDATING. Poll `GetDataset` until status transitions to
1332
+ # ACTIVE or UPDATE\_FAILED.
1326
1333
  #
1327
1334
  # @option params [required, String] :dataset_id
1328
1335
  # The unique identifier of the dataset to publish a version for.
@@ -2799,6 +2806,7 @@ module Aws::BedrockAgentCoreControl
2799
2806
  # {
2800
2807
  # key: "MetadataKey", # required
2801
2808
  # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
2809
+ # extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
2802
2810
  # extraction_config: {
2803
2811
  # llm_extraction_config: {
2804
2812
  # llm_extraction_instruction: "LlmExtractionInstruction",
@@ -2832,6 +2840,7 @@ module Aws::BedrockAgentCoreControl
2832
2840
  # {
2833
2841
  # key: "MetadataKey", # required
2834
2842
  # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
2843
+ # extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
2835
2844
  # extraction_config: {
2836
2845
  # llm_extraction_config: {
2837
2846
  # llm_extraction_instruction: "LlmExtractionInstruction",
@@ -2865,6 +2874,7 @@ module Aws::BedrockAgentCoreControl
2865
2874
  # {
2866
2875
  # key: "MetadataKey", # required
2867
2876
  # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
2877
+ # extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
2868
2878
  # extraction_config: {
2869
2879
  # llm_extraction_config: {
2870
2880
  # llm_extraction_instruction: "LlmExtractionInstruction",
@@ -2939,6 +2949,7 @@ module Aws::BedrockAgentCoreControl
2939
2949
  # {
2940
2950
  # key: "MetadataKey", # required
2941
2951
  # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
2952
+ # extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
2942
2953
  # extraction_config: {
2943
2954
  # llm_extraction_config: {
2944
2955
  # llm_extraction_instruction: "LlmExtractionInstruction",
@@ -2989,6 +3000,7 @@ module Aws::BedrockAgentCoreControl
2989
3000
  # {
2990
3001
  # key: "MetadataKey", # required
2991
3002
  # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
3003
+ # extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
2992
3004
  # extraction_config: {
2993
3005
  # llm_extraction_config: {
2994
3006
  # llm_extraction_instruction: "LlmExtractionInstruction",
@@ -3025,6 +3037,7 @@ module Aws::BedrockAgentCoreControl
3025
3037
  # {
3026
3038
  # key: "MetadataKey", # required
3027
3039
  # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
3040
+ # extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
3028
3041
  # extraction_config: {
3029
3042
  # llm_extraction_config: {
3030
3043
  # llm_extraction_instruction: "LlmExtractionInstruction",
@@ -3053,6 +3066,7 @@ module Aws::BedrockAgentCoreControl
3053
3066
  # {
3054
3067
  # key: "MetadataKey", # required
3055
3068
  # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
3069
+ # extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
3056
3070
  # extraction_config: {
3057
3071
  # llm_extraction_config: {
3058
3072
  # llm_extraction_instruction: "LlmExtractionInstruction",
@@ -3113,7 +3127,7 @@ module Aws::BedrockAgentCoreControl
3113
3127
  # resp.memory.encryption_key_arn #=> String
3114
3128
  # resp.memory.memory_execution_role_arn #=> String
3115
3129
  # resp.memory.event_expiry_duration #=> Integer
3116
- # resp.memory.status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING"
3130
+ # resp.memory.status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING", "UPDATING"
3117
3131
  # resp.memory.failure_reason #=> String
3118
3132
  # resp.memory.created_at #=> Time
3119
3133
  # resp.memory.updated_at #=> Time
@@ -3145,6 +3159,7 @@ module Aws::BedrockAgentCoreControl
3145
3159
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema #=> Array
3146
3160
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].key #=> String
3147
3161
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
3162
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_type #=> String, one of "LLM_INFERRED", "STRICTLY_CONSISTENT"
3148
3163
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
3149
3164
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
3150
3165
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
@@ -3161,6 +3176,7 @@ module Aws::BedrockAgentCoreControl
3161
3176
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema #=> Array
3162
3177
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].key #=> String
3163
3178
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
3179
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_type #=> String, one of "LLM_INFERRED", "STRICTLY_CONSISTENT"
3164
3180
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
3165
3181
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
3166
3182
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
@@ -3188,6 +3204,7 @@ module Aws::BedrockAgentCoreControl
3188
3204
  # resp.memory.strategies[0].memory_record_schema.metadata_schema #=> Array
3189
3205
  # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].key #=> String
3190
3206
  # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
3207
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_type #=> String, one of "LLM_INFERRED", "STRICTLY_CONSISTENT"
3191
3208
  # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
3192
3209
  # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
3193
3210
  # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
@@ -3237,6 +3254,8 @@ module Aws::BedrockAgentCoreControl
3237
3254
  # @return [Types::CreateOauth2CredentialProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3238
3255
  #
3239
3256
  # * {Types::CreateOauth2CredentialProviderResponse#client_secret_arn #client_secret_arn} => Types::Secret
3257
+ # * {Types::CreateOauth2CredentialProviderResponse#client_secret_json_key #client_secret_json_key} => String
3258
+ # * {Types::CreateOauth2CredentialProviderResponse#client_secret_source #client_secret_source} => String
3240
3259
  # * {Types::CreateOauth2CredentialProviderResponse#name #name} => String
3241
3260
  # * {Types::CreateOauth2CredentialProviderResponse#credential_provider_arn #credential_provider_arn} => String
3242
3261
  # * {Types::CreateOauth2CredentialProviderResponse#callback_url #callback_url} => String
@@ -3262,6 +3281,19 @@ module Aws::BedrockAgentCoreControl
3262
3281
  # },
3263
3282
  # client_id: "DefaultClientIdType",
3264
3283
  # client_secret: "DefaultClientSecretType",
3284
+ # client_secret_config: {
3285
+ # secret_id: "SecretIdType", # required
3286
+ # json_key: "SecretJsonKeyType", # required
3287
+ # },
3288
+ # client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
3289
+ # on_behalf_of_token_exchange_config: {
3290
+ # grant_type: "TOKEN_EXCHANGE", # required, accepts TOKEN_EXCHANGE, JWT_AUTHORIZATION_GRANT
3291
+ # token_exchange_grant_type_config: {
3292
+ # actor_token_content: "NONE", # required, accepts NONE, M2M, AWS_IAM_ID_TOKEN_JWT
3293
+ # actor_token_scopes: ["ScopeType"],
3294
+ # },
3295
+ # },
3296
+ # client_authentication_method: "CLIENT_SECRET_BASIC", # accepts CLIENT_SECRET_BASIC, CLIENT_SECRET_POST, AWS_IAM_ID_TOKEN_JWT
3265
3297
  # private_endpoint: {
3266
3298
  # self_managed_lattice_resource: {
3267
3299
  # resource_configuration_identifier: "ResourceConfigurationIdentifier",
@@ -3297,47 +3329,79 @@ module Aws::BedrockAgentCoreControl
3297
3329
  # },
3298
3330
  # },
3299
3331
  # ],
3300
- # on_behalf_of_token_exchange_config: {
3301
- # grant_type: "TOKEN_EXCHANGE", # required, accepts TOKEN_EXCHANGE, JWT_AUTHORIZATION_GRANT
3302
- # token_exchange_grant_type_config: {
3303
- # actor_token_content: "NONE", # required, accepts NONE, M2M, AWS_IAM_ID_TOKEN_JWT
3304
- # actor_token_scopes: ["ScopeType"],
3305
- # },
3306
- # },
3307
- # client_authentication_method: "CLIENT_SECRET_BASIC", # accepts CLIENT_SECRET_BASIC, CLIENT_SECRET_POST, AWS_IAM_ID_TOKEN_JWT
3308
3332
  # },
3309
3333
  # google_oauth_2_provider_config: {
3310
3334
  # client_id: "ClientIdType", # required
3311
- # client_secret: "ClientSecretType", # required
3335
+ # client_secret: "DefaultClientSecretType",
3336
+ # client_secret_config: {
3337
+ # secret_id: "SecretIdType", # required
3338
+ # json_key: "SecretJsonKeyType", # required
3339
+ # },
3340
+ # client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
3312
3341
  # },
3313
3342
  # github_oauth_2_provider_config: {
3314
3343
  # client_id: "ClientIdType", # required
3315
- # client_secret: "ClientSecretType", # required
3344
+ # client_secret: "DefaultClientSecretType",
3345
+ # client_secret_config: {
3346
+ # secret_id: "SecretIdType", # required
3347
+ # json_key: "SecretJsonKeyType", # required
3348
+ # },
3349
+ # client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
3316
3350
  # },
3317
3351
  # slack_oauth_2_provider_config: {
3318
3352
  # client_id: "ClientIdType", # required
3319
- # client_secret: "ClientSecretType", # required
3353
+ # client_secret: "DefaultClientSecretType",
3354
+ # client_secret_config: {
3355
+ # secret_id: "SecretIdType", # required
3356
+ # json_key: "SecretJsonKeyType", # required
3357
+ # },
3358
+ # client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
3320
3359
  # },
3321
3360
  # salesforce_oauth_2_provider_config: {
3322
3361
  # client_id: "ClientIdType", # required
3323
- # client_secret: "ClientSecretType", # required
3362
+ # client_secret: "DefaultClientSecretType",
3363
+ # client_secret_config: {
3364
+ # secret_id: "SecretIdType", # required
3365
+ # json_key: "SecretJsonKeyType", # required
3366
+ # },
3367
+ # client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
3324
3368
  # },
3325
3369
  # microsoft_oauth_2_provider_config: {
3326
3370
  # client_id: "ClientIdType", # required
3327
- # client_secret: "ClientSecretType", # required
3371
+ # client_secret: "DefaultClientSecretType",
3372
+ # client_secret_config: {
3373
+ # secret_id: "SecretIdType", # required
3374
+ # json_key: "SecretJsonKeyType", # required
3375
+ # },
3376
+ # client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
3328
3377
  # tenant_id: "TenantIdType",
3329
3378
  # },
3330
3379
  # atlassian_oauth_2_provider_config: {
3331
3380
  # client_id: "ClientIdType", # required
3332
- # client_secret: "ClientSecretType", # required
3381
+ # client_secret: "DefaultClientSecretType",
3382
+ # client_secret_config: {
3383
+ # secret_id: "SecretIdType", # required
3384
+ # json_key: "SecretJsonKeyType", # required
3385
+ # },
3386
+ # client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
3333
3387
  # },
3334
3388
  # linkedin_oauth_2_provider_config: {
3335
3389
  # client_id: "ClientIdType", # required
3336
- # client_secret: "ClientSecretType", # required
3390
+ # client_secret: "DefaultClientSecretType",
3391
+ # client_secret_config: {
3392
+ # secret_id: "SecretIdType", # required
3393
+ # json_key: "SecretJsonKeyType", # required
3394
+ # },
3395
+ # client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
3337
3396
  # },
3338
3397
  # included_oauth_2_provider_config: {
3339
3398
  # client_id: "ClientIdType", # required
3340
- # client_secret: "ClientSecretType", # required
3399
+ # client_secret: "DefaultClientSecretType",
3400
+ # client_secret_config: {
3401
+ # secret_id: "SecretIdType", # required
3402
+ # json_key: "SecretJsonKeyType", # required
3403
+ # },
3404
+ # client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
3341
3405
  # issuer: "IssuerUrlType",
3342
3406
  # authorization_endpoint: "AuthorizationEndpointType",
3343
3407
  # token_endpoint: "TokenEndpointType",
@@ -3351,6 +3415,8 @@ module Aws::BedrockAgentCoreControl
3351
3415
  # @example Response structure
3352
3416
  #
3353
3417
  # resp.client_secret_arn.secret_arn #=> String
3418
+ # resp.client_secret_json_key #=> String
3419
+ # resp.client_secret_source #=> String, one of "MANAGED", "EXTERNAL"
3354
3420
  # resp.name #=> String
3355
3421
  # resp.credential_provider_arn #=> String
3356
3422
  # resp.callback_url #=> String
@@ -3727,13 +3793,33 @@ module Aws::BedrockAgentCoreControl
3727
3793
  # provider_configuration_input: { # required
3728
3794
  # coinbase_cdp_configuration: {
3729
3795
  # api_key_id: "CoinbaseCdpApiKeyIdType", # required
3730
- # api_key_secret: "CoinbaseCdpApiKeySecretType", # required
3731
- # wallet_secret: "CoinbaseCdpWalletSecretType", # required
3796
+ # api_key_secret: "DefaultCoinbaseCdpApiKeySecretType",
3797
+ # api_key_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
3798
+ # api_key_secret_config: {
3799
+ # secret_id: "SecretIdType", # required
3800
+ # json_key: "SecretJsonKeyType", # required
3801
+ # },
3802
+ # wallet_secret: "DefaultCoinbaseCdpWalletSecretType",
3803
+ # wallet_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
3804
+ # wallet_secret_config: {
3805
+ # secret_id: "SecretIdType", # required
3806
+ # json_key: "SecretJsonKeyType", # required
3807
+ # },
3732
3808
  # },
3733
3809
  # stripe_privy_configuration: {
3734
3810
  # app_id: "StripePrivyAppIdType", # required
3735
- # app_secret: "StripePrivyAppSecretType", # required
3736
- # authorization_private_key: "StripePrivyAuthorizationPrivateKeyType", # required
3811
+ # app_secret: "DefaultStripePrivyAppSecretType",
3812
+ # app_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
3813
+ # app_secret_config: {
3814
+ # secret_id: "SecretIdType", # required
3815
+ # json_key: "SecretJsonKeyType", # required
3816
+ # },
3817
+ # authorization_private_key: "DefaultStripePrivyAuthorizationPrivateKeyType",
3818
+ # authorization_private_key_source: "MANAGED", # accepts MANAGED, EXTERNAL
3819
+ # authorization_private_key_config: {
3820
+ # secret_id: "SecretIdType", # required
3821
+ # json_key: "SecretJsonKeyType", # required
3822
+ # },
3737
3823
  # authorization_id: "StripePrivyAuthorizationIdType", # required
3738
3824
  # },
3739
3825
  # },
@@ -3749,10 +3835,18 @@ module Aws::BedrockAgentCoreControl
3749
3835
  # resp.credential_provider_arn #=> String
3750
3836
  # resp.provider_configuration_output.coinbase_cdp_configuration.api_key_id #=> String
3751
3837
  # resp.provider_configuration_output.coinbase_cdp_configuration.api_key_secret_arn.secret_arn #=> String
3838
+ # resp.provider_configuration_output.coinbase_cdp_configuration.api_key_secret_json_key #=> String
3839
+ # resp.provider_configuration_output.coinbase_cdp_configuration.api_key_secret_source #=> String, one of "MANAGED", "EXTERNAL"
3752
3840
  # resp.provider_configuration_output.coinbase_cdp_configuration.wallet_secret_arn.secret_arn #=> String
3841
+ # resp.provider_configuration_output.coinbase_cdp_configuration.wallet_secret_json_key #=> String
3842
+ # resp.provider_configuration_output.coinbase_cdp_configuration.wallet_secret_source #=> String, one of "MANAGED", "EXTERNAL"
3753
3843
  # resp.provider_configuration_output.stripe_privy_configuration.app_id #=> String
3754
3844
  # resp.provider_configuration_output.stripe_privy_configuration.app_secret_arn.secret_arn #=> String
3845
+ # resp.provider_configuration_output.stripe_privy_configuration.app_secret_json_key #=> String
3846
+ # resp.provider_configuration_output.stripe_privy_configuration.app_secret_source #=> String, one of "MANAGED", "EXTERNAL"
3755
3847
  # resp.provider_configuration_output.stripe_privy_configuration.authorization_private_key_arn.secret_arn #=> String
3848
+ # resp.provider_configuration_output.stripe_privy_configuration.authorization_private_key_json_key #=> String
3849
+ # resp.provider_configuration_output.stripe_privy_configuration.authorization_private_key_source #=> String, one of "MANAGED", "EXTERNAL"
3756
3850
  # resp.provider_configuration_output.stripe_privy_configuration.authorization_id #=> String
3757
3851
  #
3758
3852
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreatePaymentCredentialProvider AWS API Documentation
@@ -4752,48 +4846,16 @@ module Aws::BedrockAgentCoreControl
4752
4846
  req.send_request(options)
4753
4847
  end
4754
4848
 
4755
- # Deletes a dataset version or an entire dataset (all versions + name
4756
- # claim). Asynchronous 202.
4757
- #
4758
- # **State transitions:**
4759
- #
4760
- # * If `datasetVersion` is absent (full delete): status transitions to
4761
- # DELETING immediately.
4762
- # * If `datasetVersion` is provided (version-specific delete): status
4763
- # transitions to UPDATING.
4764
- #
4765
- # **State guard (full delete):** Returns ConflictException
4766
- # (DATASET\_NOT\_READY) if the dataset status is in \{CREATING,
4767
- # UPDATING}. Deletion is allowed from ACTIVE, CREATE\_FAILED,
4768
- # UPDATE\_FAILED, and DELETE\_FAILED states.
4769
- #
4770
- # **State guard (version-specific delete):** Returns ConflictException
4771
- # (DATASET\_NOT\_READY) if the dataset status is not in \{ACTIVE,
4772
- # CREATE\_FAILED, UPDATE\_FAILED}.
4773
- #
4774
- # Fails with ConflictException (REFERENCED\_BY\_EVAL\_JOB) if referenced
4775
- # by an active evaluation job (full delete only).
4776
- #
4777
- # If the delete workflow fails after retries, status is set to
4778
- # DELETE\_FAILED (full delete) or UPDATE\_FAILED (version-specific
4779
- # delete). Calling DeleteDataset on a DELETE\_FAILED dataset re-triggers
4780
- # the delete workflow (idempotent retry path).
4781
- #
4782
- # **Version parameter:**
4783
- #
4784
- # * If `datasetVersion` is absent: deletes ALL versions and the Dataset
4785
- # record itself.
4786
- # * If `datasetVersion` is provided: deletes only that specific
4787
- # DatasetVersion. Returns ResourceNotFoundException if the specified
4788
- # version does not exist.
4849
+ # Deletes a dataset version or an entire dataset asynchronously. If
4850
+ # `datasetVersion` is absent, deletes all versions and the dataset
4851
+ # record itself. If provided, deletes only that specific version.
4789
4852
  #
4790
4853
  # @option params [required, String] :dataset_id
4791
4854
  # The unique identifier of the dataset to delete.
4792
4855
  #
4793
4856
  # @option params [String] :dataset_version
4794
- # Optional version to delete. Use "DRAFT" or omit to delete the draft.
4795
- # Returns ResourceNotFoundException if the specified version does not
4796
- # exist.
4857
+ # Optional version to delete. If absent, deletes the entire dataset. If
4858
+ # provided, deletes only that specific version.
4797
4859
  #
4798
4860
  # @return [Types::DeleteDatasetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4799
4861
  #
@@ -4827,18 +4889,9 @@ module Aws::BedrockAgentCoreControl
4827
4889
  req.send_request(options)
4828
4890
  end
4829
4891
 
4830
- # Deletes specific examples by ID from DRAFT.
4831
- #
4832
- # **Validation:** All example IDs are validated before any deletes
4833
- # occur. If any ID does not exist in DRAFT, the entire batch is rejected
4834
- # with ResourceNotFoundException — no examples are deleted
4835
- # (all-or-nothing semantics).
4836
- #
4837
- # **Asynchronous:** Operates in-place on DRAFT. No version bump occurs.
4838
- # Use CreateDatasetVersion to publish DRAFT as a new numbered version.
4839
- #
4840
- # **State guard:** Returns ConflictException (DATASET\_NOT\_READY) if
4841
- # the dataset status is not in \{DRAFT, ACTIVE}.
4892
+ # Deletes specific examples by ID from DRAFT. All example IDs are
4893
+ # validated before any deletes occur. If any ID does not exist in DRAFT,
4894
+ # the entire batch is rejected (all-or-nothing semantics).
4842
4895
  #
4843
4896
  # @option params [required, String] :dataset_id
4844
4897
  # The unique identifier of the dataset.
@@ -5231,7 +5284,7 @@ module Aws::BedrockAgentCoreControl
5231
5284
  # @example Response structure
5232
5285
  #
5233
5286
  # resp.memory_id #=> String
5234
- # resp.status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING"
5287
+ # resp.status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING", "UPDATING"
5235
5288
  #
5236
5289
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteMemory AWS API Documentation
5237
5290
  #
@@ -5823,6 +5876,8 @@ module Aws::BedrockAgentCoreControl
5823
5876
  # @return [Types::GetApiKeyCredentialProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5824
5877
  #
5825
5878
  # * {Types::GetApiKeyCredentialProviderResponse#api_key_secret_arn #api_key_secret_arn} => Types::Secret
5879
+ # * {Types::GetApiKeyCredentialProviderResponse#api_key_secret_json_key #api_key_secret_json_key} => String
5880
+ # * {Types::GetApiKeyCredentialProviderResponse#api_key_secret_source #api_key_secret_source} => String
5826
5881
  # * {Types::GetApiKeyCredentialProviderResponse#name #name} => String
5827
5882
  # * {Types::GetApiKeyCredentialProviderResponse#credential_provider_arn #credential_provider_arn} => String
5828
5883
  # * {Types::GetApiKeyCredentialProviderResponse#created_time #created_time} => Time
@@ -5837,6 +5892,8 @@ module Aws::BedrockAgentCoreControl
5837
5892
  # @example Response structure
5838
5893
  #
5839
5894
  # resp.api_key_secret_arn.secret_arn #=> String
5895
+ # resp.api_key_secret_json_key #=> String
5896
+ # resp.api_key_secret_source #=> String, one of "MANAGED", "EXTERNAL"
5840
5897
  # resp.name #=> String
5841
5898
  # resp.credential_provider_arn #=> String
5842
5899
  # resp.created_time #=> Time
@@ -6130,36 +6187,16 @@ module Aws::BedrockAgentCoreControl
6130
6187
  req.send_request(options)
6131
6188
  end
6132
6189
 
6133
- # Retrieves dataset metadata only.
6134
- #
6135
- # Use `?datasetVersion=DRAFT` or `?datasetVersion=N` to retrieve a
6136
- # specific version's metadata. If absent, defaults to DRAFT (the
6137
- # mutable working copy). Returns ResourceNotFoundException if the
6138
- # specified version is not found.
6139
- #
6140
- # **Initial state after CreateDataset:** When CreateDataset completes
6141
- # successfully (status transitions to ACTIVE), only a DRAFT working copy
6142
- # exists. No published versions exist until CreateDatasetVersion is
6143
- # called. At this point draftStatus is MODIFIED because the DRAFT has
6144
- # content that has never been published.
6145
- #
6146
- # **Default version behavior:** When `datasetVersion` is omitted, the
6147
- # operation returns the DRAFT working copy. To retrieve a specific
6148
- # published version, pass the version number as a string (e.g.
6149
- # `?datasetVersion=1`).
6150
- #
6151
- # **State guard:** Allowed for all statuses including DELETING. Returns
6152
- # the dataset record with its current status so callers can observe the
6153
- # deletion in progress.
6154
- #
6155
- # For paginated example IDs use ListDatasetExamples.
6190
+ # Retrieves dataset metadata. Use the `datasetVersion` query parameter
6191
+ # to retrieve a specific version's metadata. If absent, defaults to
6192
+ # DRAFT. For paginated example content, use `ListDatasetExamples`.
6156
6193
  #
6157
6194
  # @option params [required, String] :dataset_id
6158
6195
  # The unique identifier of the dataset to retrieve.
6159
6196
  #
6160
6197
  # @option params [String] :dataset_version
6161
- # Version to retrieve: "DRAFT" or a version number. Defaults to DRAFT if
6162
- # absent.
6198
+ # Version to retrieve: "DRAFT" or a version number. Defaults to DRAFT
6199
+ # if absent.
6163
6200
  #
6164
6201
  # @return [Types::GetDatasetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6165
6202
  #
@@ -6798,7 +6835,7 @@ module Aws::BedrockAgentCoreControl
6798
6835
  # resp.memory.encryption_key_arn #=> String
6799
6836
  # resp.memory.memory_execution_role_arn #=> String
6800
6837
  # resp.memory.event_expiry_duration #=> Integer
6801
- # resp.memory.status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING"
6838
+ # resp.memory.status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING", "UPDATING"
6802
6839
  # resp.memory.failure_reason #=> String
6803
6840
  # resp.memory.created_at #=> Time
6804
6841
  # resp.memory.updated_at #=> Time
@@ -6830,6 +6867,7 @@ module Aws::BedrockAgentCoreControl
6830
6867
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema #=> Array
6831
6868
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].key #=> String
6832
6869
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
6870
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_type #=> String, one of "LLM_INFERRED", "STRICTLY_CONSISTENT"
6833
6871
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
6834
6872
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
6835
6873
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
@@ -6846,6 +6884,7 @@ module Aws::BedrockAgentCoreControl
6846
6884
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema #=> Array
6847
6885
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].key #=> String
6848
6886
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
6887
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_type #=> String, one of "LLM_INFERRED", "STRICTLY_CONSISTENT"
6849
6888
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
6850
6889
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
6851
6890
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
@@ -6873,6 +6912,7 @@ module Aws::BedrockAgentCoreControl
6873
6912
  # resp.memory.strategies[0].memory_record_schema.metadata_schema #=> Array
6874
6913
  # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].key #=> String
6875
6914
  # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
6915
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_type #=> String, one of "LLM_INFERRED", "STRICTLY_CONSISTENT"
6876
6916
  # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
6877
6917
  # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
6878
6918
  # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
@@ -6913,6 +6953,8 @@ module Aws::BedrockAgentCoreControl
6913
6953
  # @return [Types::GetOauth2CredentialProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6914
6954
  #
6915
6955
  # * {Types::GetOauth2CredentialProviderResponse#client_secret_arn #client_secret_arn} => Types::Secret
6956
+ # * {Types::GetOauth2CredentialProviderResponse#client_secret_json_key #client_secret_json_key} => String
6957
+ # * {Types::GetOauth2CredentialProviderResponse#client_secret_source #client_secret_source} => String
6916
6958
  # * {Types::GetOauth2CredentialProviderResponse#name #name} => String
6917
6959
  # * {Types::GetOauth2CredentialProviderResponse#credential_provider_arn #credential_provider_arn} => String
6918
6960
  # * {Types::GetOauth2CredentialProviderResponse#credential_provider_vendor #credential_provider_vendor} => String
@@ -6932,6 +6974,8 @@ module Aws::BedrockAgentCoreControl
6932
6974
  # @example Response structure
6933
6975
  #
6934
6976
  # resp.client_secret_arn.secret_arn #=> String
6977
+ # resp.client_secret_json_key #=> String
6978
+ # resp.client_secret_source #=> String, one of "MANAGED", "EXTERNAL"
6935
6979
  # resp.name #=> String
6936
6980
  # resp.credential_provider_arn #=> String
6937
6981
  # resp.credential_provider_vendor #=> String, one of "GoogleOauth2", "GithubOauth2", "SlackOauth2", "SalesforceOauth2", "MicrosoftOauth2", "CustomOauth2", "AtlassianOauth2", "LinkedinOauth2", "XOauth2", "OktaOauth2", "OneLoginOauth2", "PingOneOauth2", "FacebookOauth2", "YandexOauth2", "RedditOauth2", "ZoomOauth2", "TwitchOauth2", "SpotifyOauth2", "DropboxOauth2", "NotionOauth2", "HubspotOauth2", "CyberArkOauth2", "FusionAuthOauth2", "Auth0Oauth2", "CognitoOauth2"
@@ -7202,10 +7246,18 @@ module Aws::BedrockAgentCoreControl
7202
7246
  # resp.credential_provider_vendor #=> String, one of "CoinbaseCDP", "StripePrivy"
7203
7247
  # resp.provider_configuration_output.coinbase_cdp_configuration.api_key_id #=> String
7204
7248
  # resp.provider_configuration_output.coinbase_cdp_configuration.api_key_secret_arn.secret_arn #=> String
7249
+ # resp.provider_configuration_output.coinbase_cdp_configuration.api_key_secret_json_key #=> String
7250
+ # resp.provider_configuration_output.coinbase_cdp_configuration.api_key_secret_source #=> String, one of "MANAGED", "EXTERNAL"
7205
7251
  # resp.provider_configuration_output.coinbase_cdp_configuration.wallet_secret_arn.secret_arn #=> String
7252
+ # resp.provider_configuration_output.coinbase_cdp_configuration.wallet_secret_json_key #=> String
7253
+ # resp.provider_configuration_output.coinbase_cdp_configuration.wallet_secret_source #=> String, one of "MANAGED", "EXTERNAL"
7206
7254
  # resp.provider_configuration_output.stripe_privy_configuration.app_id #=> String
7207
7255
  # resp.provider_configuration_output.stripe_privy_configuration.app_secret_arn.secret_arn #=> String
7256
+ # resp.provider_configuration_output.stripe_privy_configuration.app_secret_json_key #=> String
7257
+ # resp.provider_configuration_output.stripe_privy_configuration.app_secret_source #=> String, one of "MANAGED", "EXTERNAL"
7208
7258
  # resp.provider_configuration_output.stripe_privy_configuration.authorization_private_key_arn.secret_arn #=> String
7259
+ # resp.provider_configuration_output.stripe_privy_configuration.authorization_private_key_json_key #=> String
7260
+ # resp.provider_configuration_output.stripe_privy_configuration.authorization_private_key_source #=> String, one of "MANAGED", "EXTERNAL"
7209
7261
  # resp.provider_configuration_output.stripe_privy_configuration.authorization_id #=> String
7210
7262
  # resp.created_time #=> Time
7211
7263
  # resp.last_updated_time #=> Time
@@ -8361,31 +8413,21 @@ module Aws::BedrockAgentCoreControl
8361
8413
  req.send_request(options)
8362
8414
  end
8363
8415
 
8364
- # Returns paginated examples from the dataset.
8365
- #
8366
- # **Version-pinned pagination:** The server embeds the resolved version
8367
- # in the `nextToken`. Once pagination begins, all subsequent pages are
8368
- # pinned to that version regardless of concurrent mutations or whether
8369
- # `datasetVersion` is passed on subsequent requests. The
8370
- # `datasetVersion` query parameter is only used for the first request
8371
- # (when `nextToken` is absent); if omitted, defaults to DRAFT.
8372
- #
8373
- # **State guard:** Allowed for all statuses including DELETING.
8416
+ # Returns paginated examples from the dataset. The server embeds the
8417
+ # resolved version in the pagination token. Once pagination begins, all
8418
+ # subsequent pages are pinned to that version regardless of concurrent
8419
+ # mutations.
8374
8420
  #
8375
8421
  # @option params [required, String] :dataset_id
8376
8422
  # The unique identifier of the dataset.
8377
8423
  #
8378
8424
  # @option params [String] :dataset_version
8379
- # Version to paginate: "DRAFT" or a version number. Defaults to DRAFT if
8380
- # absent. Only used on the first request (when nextToken is absent). For
8381
- # subsequent pages, the version is extracted from the nextToken and this
8382
- # parameter is ignored.
8425
+ # Version to paginate: "DRAFT" or a version number. Defaults to DRAFT
8426
+ # if absent. Only used on the first request; for subsequent pages, the
8427
+ # version is extracted from the pagination token.
8383
8428
  #
8384
8429
  # @option params [Integer] :max_results
8385
- # Maximum number of examples to return per page. Default: 1000. Min: 1,
8386
- # max: 1000. Response size is validated against 5 MB limit after
8387
- # reading. For bulk access to all examples, use the `downloadUrl` field
8388
- # from GetDataset.
8430
+ # Maximum number of examples to return per page.
8389
8431
  #
8390
8432
  # @option params [String] :next_token
8391
8433
  # The token for the next page of results.
@@ -8429,8 +8471,6 @@ module Aws::BedrockAgentCoreControl
8429
8471
  # Lists all published versions of a dataset, sorted by version number
8430
8472
  # descending (newest first). Does not include the DRAFT working copy.
8431
8473
  #
8432
- # **State guard:** Allowed for all statuses including DELETING.
8433
- #
8434
8474
  # @option params [required, String] :dataset_id
8435
8475
  # The unique identifier of the dataset.
8436
8476
  #
@@ -8472,8 +8512,7 @@ module Aws::BedrockAgentCoreControl
8472
8512
  req.send_request(options)
8473
8513
  end
8474
8514
 
8475
- # Lists all datasets in the caller's account, paginated. No presigned
8476
- # URLs in list results.
8515
+ # Lists all datasets in the caller's account, paginated.
8477
8516
  #
8478
8517
  # @option params [String] :next_token
8479
8518
  # The token for the next page of results.
@@ -8820,7 +8859,7 @@ module Aws::BedrockAgentCoreControl
8820
8859
  # resp.memories #=> Array
8821
8860
  # resp.memories[0].arn #=> String
8822
8861
  # resp.memories[0].id #=> String
8823
- # resp.memories[0].status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING"
8862
+ # resp.memories[0].status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING", "UPDATING"
8824
8863
  # resp.memories[0].created_at #=> Time
8825
8864
  # resp.memories[0].updated_at #=> Time
8826
8865
  # resp.next_token #=> String
@@ -10415,13 +10454,26 @@ module Aws::BedrockAgentCoreControl
10415
10454
  # @option params [required, String] :name
10416
10455
  # The name of the API key credential provider to update.
10417
10456
  #
10418
- # @option params [required, String] :api_key
10457
+ # @option params [String] :api_key
10419
10458
  # The new API key to use for authentication. This value replaces the
10420
10459
  # existing API key and is encrypted and stored securely.
10421
10460
  #
10461
+ # @option params [Types::SecretReference] :api_key_secret_config
10462
+ # A reference to the AWS Secrets Manager secret that stores the API key.
10463
+ # This includes the secret ID and the JSON key used to extract the API
10464
+ # key value from the secret. Required when `apiKeySecretSource` is set
10465
+ # to `EXTERNAL`.
10466
+ #
10467
+ # @option params [String] :api_key_secret_source
10468
+ # The source type of the API key secret. Use `MANAGED` if the secret is
10469
+ # managed by the service, or `EXTERNAL` if you manage the secret
10470
+ # yourself in AWS Secrets Manager.
10471
+ #
10422
10472
  # @return [Types::UpdateApiKeyCredentialProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10423
10473
  #
10424
10474
  # * {Types::UpdateApiKeyCredentialProviderResponse#api_key_secret_arn #api_key_secret_arn} => Types::Secret
10475
+ # * {Types::UpdateApiKeyCredentialProviderResponse#api_key_secret_json_key #api_key_secret_json_key} => String
10476
+ # * {Types::UpdateApiKeyCredentialProviderResponse#api_key_secret_source #api_key_secret_source} => String
10425
10477
  # * {Types::UpdateApiKeyCredentialProviderResponse#name #name} => String
10426
10478
  # * {Types::UpdateApiKeyCredentialProviderResponse#credential_provider_arn #credential_provider_arn} => String
10427
10479
  # * {Types::UpdateApiKeyCredentialProviderResponse#created_time #created_time} => Time
@@ -10431,12 +10483,19 @@ module Aws::BedrockAgentCoreControl
10431
10483
  #
10432
10484
  # resp = client.update_api_key_credential_provider({
10433
10485
  # name: "CredentialProviderName", # required
10434
- # api_key: "ApiKeyType", # required
10486
+ # api_key: "DefaultApiKeyType",
10487
+ # api_key_secret_config: {
10488
+ # secret_id: "SecretIdType", # required
10489
+ # json_key: "SecretJsonKeyType", # required
10490
+ # },
10491
+ # api_key_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
10435
10492
  # })
10436
10493
  #
10437
10494
  # @example Response structure
10438
10495
  #
10439
10496
  # resp.api_key_secret_arn.secret_arn #=> String
10497
+ # resp.api_key_secret_json_key #=> String
10498
+ # resp.api_key_secret_source #=> String, one of "MANAGED", "EXTERNAL"
10440
10499
  # resp.name #=> String
10441
10500
  # resp.credential_provider_arn #=> String
10442
10501
  # resp.created_time #=> Time
@@ -10546,12 +10605,9 @@ module Aws::BedrockAgentCoreControl
10546
10605
  end
10547
10606
 
10548
10607
  # Updates a dataset's metadata. Synchronous operation. Only provided
10549
- # fields are updated; omitted fields remain unchanged.
10550
- #
10551
- # To modify dataset content, use AddDatasetExamples,
10552
- # UpdateDatasetExamples, or DeleteDatasetExamples.
10553
- #
10554
- # Cannot update: name, schemaType, kmsKeyArn (immutable after creation).
10608
+ # fields are updated; omitted fields remain unchanged. To modify dataset
10609
+ # content, use `AddDatasetExamples`, `UpdateDatasetExamples`, or
10610
+ # `DeleteDatasetExamples`.
10555
10611
  #
10556
10612
  # @option params [required, String] :dataset_id
10557
10613
  # The unique identifier of the dataset to update.
@@ -10602,24 +10658,10 @@ module Aws::BedrockAgentCoreControl
10602
10658
  req.send_request(options)
10603
10659
  end
10604
10660
 
10605
- # Updates multiple existing examples in-place on DRAFT.
10606
- #
10607
- # **Validation:** All examples are validated against the dataset's
10608
- # schemaType before any writes occur. If any example fails validation,
10609
- # the entire batch is rejected with ValidationException — no examples
10610
- # are updated (all-or-nothing semantics).
10611
- #
10612
- # **Asynchronous:** Operates in-place on DRAFT. No version bump occurs.
10613
- # Use CreateDatasetVersion to publish DRAFT as a new numbered version.
10614
- #
10615
- # Fails with ResourceNotFoundException if any exampleId does not exist
10616
- # in DRAFT. To add new examples, use AddDatasetExamples instead.
10617
- #
10618
- # **State guard:** Returns ConflictException (DATASET\_NOT\_READY) if
10619
- # the dataset status is not in \{DRAFT, ACTIVE}.
10620
- #
10621
- # **Request size limit:** Max 5 MB total request body. Max 1000 examples
10622
- # per call.
10661
+ # Updates multiple existing examples in-place on DRAFT. All examples are
10662
+ # validated against the dataset's schema type before any writes occur.
10663
+ # If any example fails validation, the entire batch is rejected
10664
+ # (all-or-nothing semantics).
10623
10665
  #
10624
10666
  # @option params [required, String] :dataset_id
10625
10667
  # The unique identifier of the dataset.
@@ -10640,11 +10682,8 @@ module Aws::BedrockAgentCoreControl
10640
10682
  #
10641
10683
  # @option params [required, Array<Hash,Array,String,Numeric,Boolean>] :examples
10642
10684
  # Examples to update. Each element is a JSON object containing a
10643
- # required `exampleId` string field identifying the existing example,
10644
- # plus the replacement fields. The `exampleId` is extracted and removed
10645
- # before persistence; the remaining document is validated against the
10646
- # dataset's schemaType. Max 1000 examples per call. Total request body
10647
- # must not exceed 5 MB.
10685
+ # required `exampleId` field identifying the existing example, plus the
10686
+ # replacement fields. Maximum 1000 examples per call.
10648
10687
  #
10649
10688
  # @return [Types::UpdateDatasetExamplesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10650
10689
  #
@@ -12038,6 +12077,7 @@ module Aws::BedrockAgentCoreControl
12038
12077
  # {
12039
12078
  # key: "MetadataKey", # required
12040
12079
  # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
12080
+ # extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
12041
12081
  # extraction_config: {
12042
12082
  # llm_extraction_config: {
12043
12083
  # llm_extraction_instruction: "LlmExtractionInstruction",
@@ -12071,6 +12111,7 @@ module Aws::BedrockAgentCoreControl
12071
12111
  # {
12072
12112
  # key: "MetadataKey", # required
12073
12113
  # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
12114
+ # extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
12074
12115
  # extraction_config: {
12075
12116
  # llm_extraction_config: {
12076
12117
  # llm_extraction_instruction: "LlmExtractionInstruction",
@@ -12104,6 +12145,7 @@ module Aws::BedrockAgentCoreControl
12104
12145
  # {
12105
12146
  # key: "MetadataKey", # required
12106
12147
  # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
12148
+ # extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
12107
12149
  # extraction_config: {
12108
12150
  # llm_extraction_config: {
12109
12151
  # llm_extraction_instruction: "LlmExtractionInstruction",
@@ -12178,6 +12220,7 @@ module Aws::BedrockAgentCoreControl
12178
12220
  # {
12179
12221
  # key: "MetadataKey", # required
12180
12222
  # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
12223
+ # extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
12181
12224
  # extraction_config: {
12182
12225
  # llm_extraction_config: {
12183
12226
  # llm_extraction_instruction: "LlmExtractionInstruction",
@@ -12228,6 +12271,7 @@ module Aws::BedrockAgentCoreControl
12228
12271
  # {
12229
12272
  # key: "MetadataKey", # required
12230
12273
  # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
12274
+ # extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
12231
12275
  # extraction_config: {
12232
12276
  # llm_extraction_config: {
12233
12277
  # llm_extraction_instruction: "LlmExtractionInstruction",
@@ -12264,6 +12308,7 @@ module Aws::BedrockAgentCoreControl
12264
12308
  # {
12265
12309
  # key: "MetadataKey", # required
12266
12310
  # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
12311
+ # extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
12267
12312
  # extraction_config: {
12268
12313
  # llm_extraction_config: {
12269
12314
  # llm_extraction_instruction: "LlmExtractionInstruction",
@@ -12292,6 +12337,7 @@ module Aws::BedrockAgentCoreControl
12292
12337
  # {
12293
12338
  # key: "MetadataKey", # required
12294
12339
  # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
12340
+ # extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
12295
12341
  # extraction_config: {
12296
12342
  # llm_extraction_config: {
12297
12343
  # llm_extraction_instruction: "LlmExtractionInstruction",
@@ -12369,6 +12415,7 @@ module Aws::BedrockAgentCoreControl
12369
12415
  # {
12370
12416
  # key: "MetadataKey", # required
12371
12417
  # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
12418
+ # extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
12372
12419
  # extraction_config: {
12373
12420
  # llm_extraction_config: {
12374
12421
  # llm_extraction_instruction: "LlmExtractionInstruction",
@@ -12403,6 +12450,7 @@ module Aws::BedrockAgentCoreControl
12403
12450
  # {
12404
12451
  # key: "MetadataKey", # required
12405
12452
  # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
12453
+ # extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
12406
12454
  # extraction_config: {
12407
12455
  # llm_extraction_config: {
12408
12456
  # llm_extraction_instruction: "LlmExtractionInstruction",
@@ -12454,6 +12502,7 @@ module Aws::BedrockAgentCoreControl
12454
12502
  # {
12455
12503
  # key: "MetadataKey", # required
12456
12504
  # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
12505
+ # extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
12457
12506
  # extraction_config: {
12458
12507
  # llm_extraction_config: {
12459
12508
  # llm_extraction_instruction: "LlmExtractionInstruction",
@@ -12516,7 +12565,7 @@ module Aws::BedrockAgentCoreControl
12516
12565
  # resp.memory.encryption_key_arn #=> String
12517
12566
  # resp.memory.memory_execution_role_arn #=> String
12518
12567
  # resp.memory.event_expiry_duration #=> Integer
12519
- # resp.memory.status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING"
12568
+ # resp.memory.status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING", "UPDATING"
12520
12569
  # resp.memory.failure_reason #=> String
12521
12570
  # resp.memory.created_at #=> Time
12522
12571
  # resp.memory.updated_at #=> Time
@@ -12548,6 +12597,7 @@ module Aws::BedrockAgentCoreControl
12548
12597
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema #=> Array
12549
12598
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].key #=> String
12550
12599
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
12600
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_type #=> String, one of "LLM_INFERRED", "STRICTLY_CONSISTENT"
12551
12601
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
12552
12602
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
12553
12603
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
@@ -12564,6 +12614,7 @@ module Aws::BedrockAgentCoreControl
12564
12614
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema #=> Array
12565
12615
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].key #=> String
12566
12616
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
12617
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_type #=> String, one of "LLM_INFERRED", "STRICTLY_CONSISTENT"
12567
12618
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
12568
12619
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
12569
12620
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
@@ -12591,6 +12642,7 @@ module Aws::BedrockAgentCoreControl
12591
12642
  # resp.memory.strategies[0].memory_record_schema.metadata_schema #=> Array
12592
12643
  # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].key #=> String
12593
12644
  # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
12645
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_type #=> String, one of "LLM_INFERRED", "STRICTLY_CONSISTENT"
12594
12646
  # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
12595
12647
  # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
12596
12648
  # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
@@ -12632,6 +12684,8 @@ module Aws::BedrockAgentCoreControl
12632
12684
  # @return [Types::UpdateOauth2CredentialProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
12633
12685
  #
12634
12686
  # * {Types::UpdateOauth2CredentialProviderResponse#client_secret_arn #client_secret_arn} => Types::Secret
12687
+ # * {Types::UpdateOauth2CredentialProviderResponse#client_secret_json_key #client_secret_json_key} => String
12688
+ # * {Types::UpdateOauth2CredentialProviderResponse#client_secret_source #client_secret_source} => String
12635
12689
  # * {Types::UpdateOauth2CredentialProviderResponse#name #name} => String
12636
12690
  # * {Types::UpdateOauth2CredentialProviderResponse#credential_provider_vendor #credential_provider_vendor} => String
12637
12691
  # * {Types::UpdateOauth2CredentialProviderResponse#credential_provider_arn #credential_provider_arn} => String
@@ -12660,6 +12714,19 @@ module Aws::BedrockAgentCoreControl
12660
12714
  # },
12661
12715
  # client_id: "DefaultClientIdType",
12662
12716
  # client_secret: "DefaultClientSecretType",
12717
+ # client_secret_config: {
12718
+ # secret_id: "SecretIdType", # required
12719
+ # json_key: "SecretJsonKeyType", # required
12720
+ # },
12721
+ # client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
12722
+ # on_behalf_of_token_exchange_config: {
12723
+ # grant_type: "TOKEN_EXCHANGE", # required, accepts TOKEN_EXCHANGE, JWT_AUTHORIZATION_GRANT
12724
+ # token_exchange_grant_type_config: {
12725
+ # actor_token_content: "NONE", # required, accepts NONE, M2M, AWS_IAM_ID_TOKEN_JWT
12726
+ # actor_token_scopes: ["ScopeType"],
12727
+ # },
12728
+ # },
12729
+ # client_authentication_method: "CLIENT_SECRET_BASIC", # accepts CLIENT_SECRET_BASIC, CLIENT_SECRET_POST, AWS_IAM_ID_TOKEN_JWT
12663
12730
  # private_endpoint: {
12664
12731
  # self_managed_lattice_resource: {
12665
12732
  # resource_configuration_identifier: "ResourceConfigurationIdentifier",
@@ -12695,47 +12762,79 @@ module Aws::BedrockAgentCoreControl
12695
12762
  # },
12696
12763
  # },
12697
12764
  # ],
12698
- # on_behalf_of_token_exchange_config: {
12699
- # grant_type: "TOKEN_EXCHANGE", # required, accepts TOKEN_EXCHANGE, JWT_AUTHORIZATION_GRANT
12700
- # token_exchange_grant_type_config: {
12701
- # actor_token_content: "NONE", # required, accepts NONE, M2M, AWS_IAM_ID_TOKEN_JWT
12702
- # actor_token_scopes: ["ScopeType"],
12703
- # },
12704
- # },
12705
- # client_authentication_method: "CLIENT_SECRET_BASIC", # accepts CLIENT_SECRET_BASIC, CLIENT_SECRET_POST, AWS_IAM_ID_TOKEN_JWT
12706
12765
  # },
12707
12766
  # google_oauth_2_provider_config: {
12708
12767
  # client_id: "ClientIdType", # required
12709
- # client_secret: "ClientSecretType", # required
12768
+ # client_secret: "DefaultClientSecretType",
12769
+ # client_secret_config: {
12770
+ # secret_id: "SecretIdType", # required
12771
+ # json_key: "SecretJsonKeyType", # required
12772
+ # },
12773
+ # client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
12710
12774
  # },
12711
12775
  # github_oauth_2_provider_config: {
12712
12776
  # client_id: "ClientIdType", # required
12713
- # client_secret: "ClientSecretType", # required
12777
+ # client_secret: "DefaultClientSecretType",
12778
+ # client_secret_config: {
12779
+ # secret_id: "SecretIdType", # required
12780
+ # json_key: "SecretJsonKeyType", # required
12781
+ # },
12782
+ # client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
12714
12783
  # },
12715
12784
  # slack_oauth_2_provider_config: {
12716
12785
  # client_id: "ClientIdType", # required
12717
- # client_secret: "ClientSecretType", # required
12786
+ # client_secret: "DefaultClientSecretType",
12787
+ # client_secret_config: {
12788
+ # secret_id: "SecretIdType", # required
12789
+ # json_key: "SecretJsonKeyType", # required
12790
+ # },
12791
+ # client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
12718
12792
  # },
12719
12793
  # salesforce_oauth_2_provider_config: {
12720
12794
  # client_id: "ClientIdType", # required
12721
- # client_secret: "ClientSecretType", # required
12795
+ # client_secret: "DefaultClientSecretType",
12796
+ # client_secret_config: {
12797
+ # secret_id: "SecretIdType", # required
12798
+ # json_key: "SecretJsonKeyType", # required
12799
+ # },
12800
+ # client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
12722
12801
  # },
12723
12802
  # microsoft_oauth_2_provider_config: {
12724
12803
  # client_id: "ClientIdType", # required
12725
- # client_secret: "ClientSecretType", # required
12804
+ # client_secret: "DefaultClientSecretType",
12805
+ # client_secret_config: {
12806
+ # secret_id: "SecretIdType", # required
12807
+ # json_key: "SecretJsonKeyType", # required
12808
+ # },
12809
+ # client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
12726
12810
  # tenant_id: "TenantIdType",
12727
12811
  # },
12728
12812
  # atlassian_oauth_2_provider_config: {
12729
12813
  # client_id: "ClientIdType", # required
12730
- # client_secret: "ClientSecretType", # required
12814
+ # client_secret: "DefaultClientSecretType",
12815
+ # client_secret_config: {
12816
+ # secret_id: "SecretIdType", # required
12817
+ # json_key: "SecretJsonKeyType", # required
12818
+ # },
12819
+ # client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
12731
12820
  # },
12732
12821
  # linkedin_oauth_2_provider_config: {
12733
12822
  # client_id: "ClientIdType", # required
12734
- # client_secret: "ClientSecretType", # required
12823
+ # client_secret: "DefaultClientSecretType",
12824
+ # client_secret_config: {
12825
+ # secret_id: "SecretIdType", # required
12826
+ # json_key: "SecretJsonKeyType", # required
12827
+ # },
12828
+ # client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
12735
12829
  # },
12736
12830
  # included_oauth_2_provider_config: {
12737
12831
  # client_id: "ClientIdType", # required
12738
- # client_secret: "ClientSecretType", # required
12832
+ # client_secret: "DefaultClientSecretType",
12833
+ # client_secret_config: {
12834
+ # secret_id: "SecretIdType", # required
12835
+ # json_key: "SecretJsonKeyType", # required
12836
+ # },
12837
+ # client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
12739
12838
  # issuer: "IssuerUrlType",
12740
12839
  # authorization_endpoint: "AuthorizationEndpointType",
12741
12840
  # token_endpoint: "TokenEndpointType",
@@ -12746,6 +12845,8 @@ module Aws::BedrockAgentCoreControl
12746
12845
  # @example Response structure
12747
12846
  #
12748
12847
  # resp.client_secret_arn.secret_arn #=> String
12848
+ # resp.client_secret_json_key #=> String
12849
+ # resp.client_secret_source #=> String, one of "MANAGED", "EXTERNAL"
12749
12850
  # resp.name #=> String
12750
12851
  # resp.credential_provider_vendor #=> String, one of "GoogleOauth2", "GithubOauth2", "SlackOauth2", "SalesforceOauth2", "MicrosoftOauth2", "CustomOauth2", "AtlassianOauth2", "LinkedinOauth2", "XOauth2", "OktaOauth2", "OneLoginOauth2", "PingOneOauth2", "FacebookOauth2", "YandexOauth2", "RedditOauth2", "ZoomOauth2", "TwitchOauth2", "SpotifyOauth2", "DropboxOauth2", "NotionOauth2", "HubspotOauth2", "CyberArkOauth2", "FusionAuthOauth2", "Auth0Oauth2", "CognitoOauth2"
12751
12852
  # resp.credential_provider_arn #=> String
@@ -13096,13 +13197,33 @@ module Aws::BedrockAgentCoreControl
13096
13197
  # provider_configuration_input: { # required
13097
13198
  # coinbase_cdp_configuration: {
13098
13199
  # api_key_id: "CoinbaseCdpApiKeyIdType", # required
13099
- # api_key_secret: "CoinbaseCdpApiKeySecretType", # required
13100
- # wallet_secret: "CoinbaseCdpWalletSecretType", # required
13200
+ # api_key_secret: "DefaultCoinbaseCdpApiKeySecretType",
13201
+ # api_key_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
13202
+ # api_key_secret_config: {
13203
+ # secret_id: "SecretIdType", # required
13204
+ # json_key: "SecretJsonKeyType", # required
13205
+ # },
13206
+ # wallet_secret: "DefaultCoinbaseCdpWalletSecretType",
13207
+ # wallet_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
13208
+ # wallet_secret_config: {
13209
+ # secret_id: "SecretIdType", # required
13210
+ # json_key: "SecretJsonKeyType", # required
13211
+ # },
13101
13212
  # },
13102
13213
  # stripe_privy_configuration: {
13103
13214
  # app_id: "StripePrivyAppIdType", # required
13104
- # app_secret: "StripePrivyAppSecretType", # required
13105
- # authorization_private_key: "StripePrivyAuthorizationPrivateKeyType", # required
13215
+ # app_secret: "DefaultStripePrivyAppSecretType",
13216
+ # app_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
13217
+ # app_secret_config: {
13218
+ # secret_id: "SecretIdType", # required
13219
+ # json_key: "SecretJsonKeyType", # required
13220
+ # },
13221
+ # authorization_private_key: "DefaultStripePrivyAuthorizationPrivateKeyType",
13222
+ # authorization_private_key_source: "MANAGED", # accepts MANAGED, EXTERNAL
13223
+ # authorization_private_key_config: {
13224
+ # secret_id: "SecretIdType", # required
13225
+ # json_key: "SecretJsonKeyType", # required
13226
+ # },
13106
13227
  # authorization_id: "StripePrivyAuthorizationIdType", # required
13107
13228
  # },
13108
13229
  # },
@@ -13115,10 +13236,18 @@ module Aws::BedrockAgentCoreControl
13115
13236
  # resp.credential_provider_arn #=> String
13116
13237
  # resp.provider_configuration_output.coinbase_cdp_configuration.api_key_id #=> String
13117
13238
  # resp.provider_configuration_output.coinbase_cdp_configuration.api_key_secret_arn.secret_arn #=> String
13239
+ # resp.provider_configuration_output.coinbase_cdp_configuration.api_key_secret_json_key #=> String
13240
+ # resp.provider_configuration_output.coinbase_cdp_configuration.api_key_secret_source #=> String, one of "MANAGED", "EXTERNAL"
13118
13241
  # resp.provider_configuration_output.coinbase_cdp_configuration.wallet_secret_arn.secret_arn #=> String
13242
+ # resp.provider_configuration_output.coinbase_cdp_configuration.wallet_secret_json_key #=> String
13243
+ # resp.provider_configuration_output.coinbase_cdp_configuration.wallet_secret_source #=> String, one of "MANAGED", "EXTERNAL"
13119
13244
  # resp.provider_configuration_output.stripe_privy_configuration.app_id #=> String
13120
13245
  # resp.provider_configuration_output.stripe_privy_configuration.app_secret_arn.secret_arn #=> String
13246
+ # resp.provider_configuration_output.stripe_privy_configuration.app_secret_json_key #=> String
13247
+ # resp.provider_configuration_output.stripe_privy_configuration.app_secret_source #=> String, one of "MANAGED", "EXTERNAL"
13121
13248
  # resp.provider_configuration_output.stripe_privy_configuration.authorization_private_key_arn.secret_arn #=> String
13249
+ # resp.provider_configuration_output.stripe_privy_configuration.authorization_private_key_json_key #=> String
13250
+ # resp.provider_configuration_output.stripe_privy_configuration.authorization_private_key_source #=> String, one of "MANAGED", "EXTERNAL"
13122
13251
  # resp.provider_configuration_output.stripe_privy_configuration.authorization_id #=> String
13123
13252
  # resp.created_time #=> Time
13124
13253
  # resp.last_updated_time #=> Time
@@ -13898,7 +14027,7 @@ module Aws::BedrockAgentCoreControl
13898
14027
  tracer: tracer
13899
14028
  )
13900
14029
  context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
13901
- context[:gem_version] = '1.50.0'
14030
+ context[:gem_version] = '1.52.0'
13902
14031
  Seahorse::Client::Request.new(handlers, context)
13903
14032
  end
13904
14033