aws-sdk-bedrockagent 1.4.0 → 1.5.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: 5e55f4e9dbac237e10a442cfe52ce159403aefe67d887d5c1ff064ee254d0bfc
4
- data.tar.gz: 921863e83864cec6455f9573fb3faba4460072b50e734902776bbefd12fcb636
3
+ metadata.gz: 80b73b4178615eca1840c0377574039840c5368e66123261f10a064926a327bf
4
+ data.tar.gz: 73b552c48974c6e281c8b63bc21843b65a284d05203e3e2643599e82e6a634fd
5
5
  SHA512:
6
- metadata.gz: b3a40e8f0ca0233154eea5a994d84a0d1419e1eb0765b0ec10259a87eec8535934778358572c7d94d23e7d2d43932439f6885a4912c8a2ebac0a867303fc3634
7
- data.tar.gz: c30f3e73e63b04a8634247922a69ff6cc49de93790f821fc30d98df92329517f17b0cc15bbc4952e6caede6c14709e5eb371d348db7a0409469198fe4e0f1d97
6
+ metadata.gz: 61e7c6fe4dafdffbbb21589841574d19daf132a5cb86996c0077e6149e644c60ab4654195a85e1006150fde581ef40cd1b5568c12b575b3b57d46fb7a5edc1cb
7
+ data.tar.gz: 33d9520e08888caab081d1055ff95448570813fa3688a949bbe88e2d3599f761d00aba1ed419fb9df7c6705e58278c9d82e18ca742bc72696cd054449b06d490
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.5.0 (2024-04-16)
5
+ ------------------
6
+
7
+ * Feature - For Create Agent API, the agentResourceRoleArn parameter is no longer required.
8
+
4
9
  1.4.0 (2024-03-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.4.0
1
+ 1.5.0
@@ -455,11 +455,11 @@ module Aws::BedrockAgent
455
455
  #
456
456
  # * Specify the following fields for security purposes.
457
457
  #
458
- # * `agentResourceRoleArn` – The ARN of the role with permissions to
459
- # create an agent.
458
+ # * `agentResourceRoleArn` – The Amazon Resource Name (ARN) of the
459
+ # role with permissions to invoke API operations on an agent.
460
460
  #
461
- # * (Optional) `customerEncryptionKeyArn` – The ARN of a KMS key to
462
- # encrypt the creation of the agent.
461
+ # * (Optional) `customerEncryptionKeyArn` – The Amazon Resource Name
462
+ # (ARN) of a KMS key to encrypt the creation of the agent.
463
463
  #
464
464
  # * (Optional) `idleSessionTTLinSeconds` – Specify the number of
465
465
  # seconds for which the agent should maintain session information.
@@ -481,9 +481,9 @@ module Aws::BedrockAgent
481
481
  # @option params [required, String] :agent_name
482
482
  # A name for the agent that you create.
483
483
  #
484
- # @option params [required, String] :agent_resource_role_arn
485
- # The ARN of the IAM role with permissions to create the agent. The ARN
486
- # must begin with `AmazonBedrockExecutionRoleForAgents_`.
484
+ # @option params [String] :agent_resource_role_arn
485
+ # The Amazon Resource Name (ARN) of the IAM role with permissions to
486
+ # invoke API operations on the agent.
487
487
  #
488
488
  # @option params [String] :client_token
489
489
  # A unique, case-sensitive identifier to ensure that the API request
@@ -499,7 +499,8 @@ module Aws::BedrockAgent
499
499
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
500
500
  #
501
501
  # @option params [String] :customer_encryption_key_arn
502
- # The ARN of the KMS key with which to encrypt the agent.
502
+ # The Amazon Resource Name (ARN) of the KMS key with which to encrypt
503
+ # the agent.
503
504
  #
504
505
  # @option params [String] :description
505
506
  # A description of the agent.
@@ -539,7 +540,7 @@ module Aws::BedrockAgent
539
540
  #
540
541
  # resp = client.create_agent({
541
542
  # agent_name: "Name", # required
542
- # agent_resource_role_arn: "AgentRoleArn", # required
543
+ # agent_resource_role_arn: "AgentRoleArn",
543
544
  # client_token: "ClientToken",
544
545
  # customer_encryption_key_arn: "KmsKeyArn",
545
546
  # description: "Description",
@@ -633,8 +634,8 @@ module Aws::BedrockAgent
633
634
  # [1]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_Observation.html
634
635
  #
635
636
  # @option params [Types::ActionGroupExecutor] :action_group_executor
636
- # The ARN of the Lambda function containing the business logic that is
637
- # carried out upon invoking the action.
637
+ # The Amazon Resource Name (ARN) of the Lambda function containing the
638
+ # business logic that is carried out upon invoking the action.
638
639
  #
639
640
  # @option params [required, String] :action_group_name
640
641
  # The name to give the action group.
@@ -936,8 +937,8 @@ module Aws::BedrockAgent
936
937
  #
937
938
  # * Provide the `name` and an optional `description`.
938
939
  #
939
- # * Provide the ARN with permissions to create a knowledge base in the
940
- # `roleArn` field.
940
+ # * Provide the Amazon Resource Name (ARN) with permissions to create a
941
+ # knowledge base in the `roleArn` field.
941
942
  #
942
943
  # * Provide the embedding model to use in the `embeddingModelArn` field
943
944
  # in the `knowledgeBaseConfiguration` object.
@@ -993,7 +994,8 @@ module Aws::BedrockAgent
993
994
  # A name for the knowledge base.
994
995
  #
995
996
  # @option params [required, String] :role_arn
996
- # The ARN of the IAM role with permissions to create the knowledge base.
997
+ # The Amazon Resource Name (ARN) of the IAM role with permissions to
998
+ # invoke API operations on the knowledge base.
997
999
  #
998
1000
  # @option params [required, Types::StorageConfiguration] :storage_configuration
999
1001
  # Contains details about the configuration of the vector database used
@@ -2254,7 +2256,7 @@ module Aws::BedrockAgent
2254
2256
  # List all the tags for the resource you specify.
2255
2257
  #
2256
2258
  # @option params [required, String] :resource_arn
2257
- # The ARN of the resource for which to list tags.
2259
+ # The Amazon Resource Name (ARN) of the resource for which to list tags.
2258
2260
  #
2259
2261
  # @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2260
2262
  #
@@ -2391,7 +2393,7 @@ module Aws::BedrockAgent
2391
2393
  # [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/what-is-service.html
2392
2394
  #
2393
2395
  # @option params [required, String] :resource_arn
2394
- # The ARN of the resource to tag.
2396
+ # The Amazon Resource Name (ARN) of the resource to tag.
2395
2397
  #
2396
2398
  # @option params [required, Hash<String,String>] :tags
2397
2399
  # An object containing key-value pairs that define the tags to attach to
@@ -2420,7 +2422,8 @@ module Aws::BedrockAgent
2420
2422
  # Remove tags from a resource.
2421
2423
  #
2422
2424
  # @option params [required, String] :resource_arn
2423
- # The ARN of the resource from which to remove tags.
2425
+ # The Amazon Resource Name (ARN) of the resource from which to remove
2426
+ # tags.
2424
2427
  #
2425
2428
  # @option params [required, Array<String>] :tag_keys
2426
2429
  # A list of keys of the tags to remove from the resource.
@@ -2452,11 +2455,12 @@ module Aws::BedrockAgent
2452
2455
  # Specifies a new name for the agent.
2453
2456
  #
2454
2457
  # @option params [required, String] :agent_resource_role_arn
2455
- # The ARN of the IAM role with permissions to update the agent. The ARN
2456
- # must begin with `AmazonBedrockExecutionRoleForAgents_`.
2458
+ # The Amazon Resource Name (ARN) of the IAM role with permissions to
2459
+ # invoke API operations on the agent.
2457
2460
  #
2458
2461
  # @option params [String] :customer_encryption_key_arn
2459
- # The ARN of the KMS key with which to encrypt the agent.
2462
+ # The Amazon Resource Name (ARN) of the KMS key with which to encrypt
2463
+ # the agent.
2460
2464
  #
2461
2465
  # @option params [String] :description
2462
2466
  # Specifies a new description of the agent.
@@ -2568,8 +2572,8 @@ module Aws::BedrockAgent
2568
2572
  # Updates the configuration for an action group for an agent.
2569
2573
  #
2570
2574
  # @option params [Types::ActionGroupExecutor] :action_group_executor
2571
- # The ARN of the Lambda function containing the business logic that is
2572
- # carried out upon invoking the action.
2575
+ # The Amazon Resource Name (ARN) of the Lambda function containing the
2576
+ # business logic that is carried out upon invoking the action.
2573
2577
  #
2574
2578
  # @option params [required, String] :action_group_id
2575
2579
  # The unique identifier of the action group.
@@ -2919,7 +2923,7 @@ module Aws::BedrockAgent
2919
2923
  #
2920
2924
  # @option params [required, String] :role_arn
2921
2925
  # Specifies a different Amazon Resource Name (ARN) of the IAM role with
2922
- # permissions to modify the knowledge base.
2926
+ # permissions to invoke API operations on the knowledge base.
2923
2927
  #
2924
2928
  # @option params [required, Types::StorageConfiguration] :storage_configuration
2925
2929
  # Specifies the configuration for the vector store used for the
@@ -3050,7 +3054,7 @@ module Aws::BedrockAgent
3050
3054
  params: params,
3051
3055
  config: config)
3052
3056
  context[:gem_name] = 'aws-sdk-bedrockagent'
3053
- context[:gem_version] = '1.4.0'
3057
+ context[:gem_version] = '1.5.0'
3054
3058
  Seahorse::Client::Request.new(handlers, context)
3055
3059
  end
3056
3060
 
@@ -435,7 +435,7 @@ module Aws::BedrockAgent
435
435
  CreateAgentAliasResponse.struct_class = Types::CreateAgentAliasResponse
436
436
 
437
437
  CreateAgentRequest.add_member(:agent_name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "agentName"))
438
- CreateAgentRequest.add_member(:agent_resource_role_arn, Shapes::ShapeRef.new(shape: AgentRoleArn, required: true, location_name: "agentResourceRoleArn"))
438
+ CreateAgentRequest.add_member(:agent_resource_role_arn, Shapes::ShapeRef.new(shape: AgentRoleArn, location_name: "agentResourceRoleArn"))
439
439
  CreateAgentRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
440
440
  CreateAgentRequest.add_member(:customer_encryption_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "customerEncryptionKeyArn"))
441
441
  CreateAgentRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
@@ -80,8 +80,8 @@ module Aws::BedrockAgent
80
80
  # @note ActionGroupExecutor is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ActionGroupExecutor corresponding to the set member.
81
81
  #
82
82
  # @!attribute [rw] lambda
83
- # The ARN of the Lambda function containing the business logic that is
84
- # carried out upon invoking the action.
83
+ # The Amazon Resource Name (ARN) of the Lambda function containing the
84
+ # business logic that is carried out upon invoking the action.
85
85
  # @return [String]
86
86
  #
87
87
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/ActionGroupExecutor AWS API Documentation
@@ -139,7 +139,7 @@ module Aws::BedrockAgent
139
139
  # Contains details about an agent.
140
140
  #
141
141
  # @!attribute [rw] agent_arn
142
- # The ARN of the agent.
142
+ # The Amazon Resource Name (ARN) of the agent.
143
143
  # @return [String]
144
144
  #
145
145
  # @!attribute [rw] agent_id
@@ -151,9 +151,8 @@ module Aws::BedrockAgent
151
151
  # @return [String]
152
152
  #
153
153
  # @!attribute [rw] agent_resource_role_arn
154
- # The ARN of the IAM role with permissions to call API operations on
155
- # the agent. The ARN must begin with
156
- # `AmazonBedrockExecutionRoleForAgents_`.
154
+ # The Amazon Resource Name (ARN) of the IAM role with permissions to
155
+ # invoke API operations on the agent.
157
156
  # @return [String]
158
157
  #
159
158
  # @!attribute [rw] agent_status
@@ -195,7 +194,8 @@ module Aws::BedrockAgent
195
194
  # @return [Time]
196
195
  #
197
196
  # @!attribute [rw] customer_encryption_key_arn
198
- # The ARN of the KMS key that encrypts the agent.
197
+ # The Amazon Resource Name (ARN) of the KMS key that encrypts the
198
+ # agent.
199
199
  # @return [String]
200
200
  #
201
201
  # @!attribute [rw] description
@@ -275,8 +275,8 @@ module Aws::BedrockAgent
275
275
  # Contains details about an action group.
276
276
  #
277
277
  # @!attribute [rw] action_group_executor
278
- # The ARN of the Lambda function containing the business logic that is
279
- # carried out upon invoking the action.
278
+ # The Amazon Resource Name (ARN) of the Lambda function containing the
279
+ # business logic that is carried out upon invoking the action.
280
280
  # @return [Types::ActionGroupExecutor]
281
281
  #
282
282
  # @!attribute [rw] action_group_id
@@ -378,7 +378,7 @@ module Aws::BedrockAgent
378
378
  # Contains details about an alias of an agent.
379
379
  #
380
380
  # @!attribute [rw] agent_alias_arn
381
- # The ARN of the alias of the agent.
381
+ # The Amazon Resource Name (ARN) of the alias of the agent.
382
382
  # @return [String]
383
383
  #
384
384
  # @!attribute [rw] agent_alias_history_events
@@ -678,7 +678,8 @@ module Aws::BedrockAgent
678
678
  # Contains details about a version of an agent.
679
679
  #
680
680
  # @!attribute [rw] agent_arn
681
- # The ARN of the agent that the version belongs to.
681
+ # The Amazon Resource Name (ARN) of the agent that the version belongs
682
+ # to.
682
683
  # @return [String]
683
684
  #
684
685
  # @!attribute [rw] agent_id
@@ -690,9 +691,8 @@ module Aws::BedrockAgent
690
691
  # @return [String]
691
692
  #
692
693
  # @!attribute [rw] agent_resource_role_arn
693
- # The ARN of the IAM role with permissions to invoke API operations on
694
- # the agent. The ARN must begin with
695
- # `AmazonBedrockExecutionRoleForAgents_`.
694
+ # The Amazon Resource Name (ARN) of the IAM role with permissions to
695
+ # invoke API operations on the agent.
696
696
  # @return [String]
697
697
  #
698
698
  # @!attribute [rw] agent_status
@@ -704,7 +704,8 @@ module Aws::BedrockAgent
704
704
  # @return [Time]
705
705
  #
706
706
  # @!attribute [rw] customer_encryption_key_arn
707
- # The ARN of the KMS key that encrypts the agent.
707
+ # The Amazon Resource Name (ARN) of the KMS key that encrypts the
708
+ # agent.
708
709
  # @return [String]
709
710
  #
710
711
  # @!attribute [rw] description
@@ -919,8 +920,8 @@ module Aws::BedrockAgent
919
920
  end
920
921
 
921
922
  # @!attribute [rw] action_group_executor
922
- # The ARN of the Lambda function containing the business logic that is
923
- # carried out upon invoking the action.
923
+ # The Amazon Resource Name (ARN) of the Lambda function containing the
924
+ # business logic that is carried out upon invoking the action.
924
925
  # @return [Types::ActionGroupExecutor]
925
926
  #
926
927
  # @!attribute [rw] action_group_name
@@ -1083,8 +1084,8 @@ module Aws::BedrockAgent
1083
1084
  # @return [String]
1084
1085
  #
1085
1086
  # @!attribute [rw] agent_resource_role_arn
1086
- # The ARN of the IAM role with permissions to create the agent. The
1087
- # ARN must begin with `AmazonBedrockExecutionRoleForAgents_`.
1087
+ # The Amazon Resource Name (ARN) of the IAM role with permissions to
1088
+ # invoke API operations on the agent.
1088
1089
  # @return [String]
1089
1090
  #
1090
1091
  # @!attribute [rw] client_token
@@ -1102,7 +1103,8 @@ module Aws::BedrockAgent
1102
1103
  # @return [String]
1103
1104
  #
1104
1105
  # @!attribute [rw] customer_encryption_key_arn
1105
- # The ARN of the KMS key with which to encrypt the agent.
1106
+ # The Amazon Resource Name (ARN) of the KMS key with which to encrypt
1107
+ # the agent.
1106
1108
  # @return [String]
1107
1109
  #
1108
1110
  # @!attribute [rw] description
@@ -1265,8 +1267,8 @@ module Aws::BedrockAgent
1265
1267
  # @return [String]
1266
1268
  #
1267
1269
  # @!attribute [rw] role_arn
1268
- # The ARN of the IAM role with permissions to create the knowledge
1269
- # base.
1270
+ # The Amazon Resource Name (ARN) of the IAM role with permissions to
1271
+ # invoke API operations on the knowledge base.
1270
1272
  # @return [String]
1271
1273
  #
1272
1274
  # @!attribute [rw] storage_configuration
@@ -2245,7 +2247,7 @@ module Aws::BedrockAgent
2245
2247
  # @return [Array<String>]
2246
2248
  #
2247
2249
  # @!attribute [rw] knowledge_base_arn
2248
- # The ARN of the knowledge base.
2250
+ # The Amazon Resource Name (ARN) of the knowledge base.
2249
2251
  # @return [String]
2250
2252
  #
2251
2253
  # @!attribute [rw] knowledge_base_configuration
@@ -2262,9 +2264,8 @@ module Aws::BedrockAgent
2262
2264
  # @return [String]
2263
2265
  #
2264
2266
  # @!attribute [rw] role_arn
2265
- # The ARN of the IAM role with permissions to invoke API operations on
2266
- # the knowledge base. The ARN must begin with
2267
- # `AmazonBedrockExecutionRoleForKnowledgeBase_`.
2267
+ # The Amazon Resource Name (ARN) of the IAM role with permissions to
2268
+ # invoke API operations on the knowledge base.
2268
2269
  # @return [String]
2269
2270
  #
2270
2271
  # @!attribute [rw] status
@@ -2778,7 +2779,8 @@ module Aws::BedrockAgent
2778
2779
  end
2779
2780
 
2780
2781
  # @!attribute [rw] resource_arn
2781
- # The ARN of the resource for which to list tags.
2782
+ # The Amazon Resource Name (ARN) of the resource for which to list
2783
+ # tags.
2782
2784
  # @return [String]
2783
2785
  #
2784
2786
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/ListTagsForResourceRequest AWS API Documentation
@@ -2810,7 +2812,8 @@ module Aws::BedrockAgent
2810
2812
  # [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/knowledge-base-setup-oss.html
2811
2813
  #
2812
2814
  # @!attribute [rw] collection_arn
2813
- # The ARN of the OpenSearch Service vector store.
2815
+ # The Amazon Resource Name (ARN) of the OpenSearch Service vector
2816
+ # store.
2814
2817
  # @return [String]
2815
2818
  #
2816
2819
  # @!attribute [rw] field_mapping
@@ -2874,8 +2877,8 @@ module Aws::BedrockAgent
2874
2877
  # @return [String]
2875
2878
  #
2876
2879
  # @!attribute [rw] credentials_secret_arn
2877
- # The ARN of the secret that you created in Secrets Manager that is
2878
- # linked to your Pinecone API key.
2880
+ # The Amazon Resource Name (ARN) of the secret that you created in
2881
+ # Secrets Manager that is linked to your Pinecone API key.
2879
2882
  # @return [String]
2880
2883
  #
2881
2884
  # @!attribute [rw] field_mapping
@@ -3086,8 +3089,8 @@ module Aws::BedrockAgent
3086
3089
  # [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/knowledge-base-setup-rds.html
3087
3090
  #
3088
3091
  # @!attribute [rw] credentials_secret_arn
3089
- # The ARN of the secret that you created in Secrets Manager that is
3090
- # linked to your Amazon RDS database.
3092
+ # The Amazon Resource Name (ARN) of the secret that you created in
3093
+ # Secrets Manager that is linked to your Amazon RDS database.
3091
3094
  # @return [String]
3092
3095
  #
3093
3096
  # @!attribute [rw] database_name
@@ -3100,7 +3103,7 @@ module Aws::BedrockAgent
3100
3103
  # @return [Types::RdsFieldMapping]
3101
3104
  #
3102
3105
  # @!attribute [rw] resource_arn
3103
- # The ARN of the vector store.
3106
+ # The Amazon Resource Name (ARN) of the vector store.
3104
3107
  # @return [String]
3105
3108
  #
3106
3109
  # @!attribute [rw] table_name
@@ -3163,8 +3166,9 @@ module Aws::BedrockAgent
3163
3166
  # [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/knowledge-base-setup-oss.html
3164
3167
  #
3165
3168
  # @!attribute [rw] credentials_secret_arn
3166
- # The ARN of the secret that you created in Secrets Manager that is
3167
- # linked to your Redis Enterprise Cloud database.
3169
+ # The Amazon Resource Name (ARN) of the secret that you created in
3170
+ # Secrets Manager that is linked to your Redis Enterprise Cloud
3171
+ # database.
3168
3172
  # @return [String]
3169
3173
  #
3170
3174
  # @!attribute [rw] endpoint
@@ -3220,8 +3224,8 @@ module Aws::BedrockAgent
3220
3224
  include Aws::Structure
3221
3225
  end
3222
3226
 
3223
- # The specified resource ARN was not found. Check the ARN and try your
3224
- # request again.
3227
+ # The specified resource Amazon Resource Name (ARN) was not found. Check
3228
+ # the Amazon Resource Name (ARN) and try your request again.
3225
3229
  #
3226
3230
  # @!attribute [rw] message
3227
3231
  # @return [String]
@@ -3237,7 +3241,8 @@ module Aws::BedrockAgent
3237
3241
  # Contains information about the S3 configuration of the data source.
3238
3242
  #
3239
3243
  # @!attribute [rw] bucket_arn
3240
- # The ARN of the bucket that contains the data source.
3244
+ # The Amazon Resource Name (ARN) of the bucket that contains the data
3245
+ # source.
3241
3246
  # @return [String]
3242
3247
  #
3243
3248
  # @!attribute [rw] inclusion_prefixes
@@ -3281,7 +3286,8 @@ module Aws::BedrockAgent
3281
3286
  # Contains the configuration for server-side encryption.
3282
3287
  #
3283
3288
  # @!attribute [rw] kms_key_arn
3284
- # The ARN of the KMS key used to encrypt the resource.
3289
+ # The Amazon Resource Name (ARN) of the KMS key used to encrypt the
3290
+ # resource.
3285
3291
  # @return [String]
3286
3292
  #
3287
3293
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/ServerSideEncryptionConfiguration AWS API Documentation
@@ -3400,7 +3406,7 @@ module Aws::BedrockAgent
3400
3406
  end
3401
3407
 
3402
3408
  # @!attribute [rw] resource_arn
3403
- # The ARN of the resource to tag.
3409
+ # The Amazon Resource Name (ARN) of the resource to tag.
3404
3410
  # @return [String]
3405
3411
  #
3406
3412
  # @!attribute [rw] tags
@@ -3435,7 +3441,8 @@ module Aws::BedrockAgent
3435
3441
  end
3436
3442
 
3437
3443
  # @!attribute [rw] resource_arn
3438
- # The ARN of the resource from which to remove tags.
3444
+ # The Amazon Resource Name (ARN) of the resource from which to remove
3445
+ # tags.
3439
3446
  # @return [String]
3440
3447
  #
3441
3448
  # @!attribute [rw] tag_keys
@@ -3456,8 +3463,8 @@ module Aws::BedrockAgent
3456
3463
  class UntagResourceResponse < Aws::EmptyStructure; end
3457
3464
 
3458
3465
  # @!attribute [rw] action_group_executor
3459
- # The ARN of the Lambda function containing the business logic that is
3460
- # carried out upon invoking the action.
3466
+ # The Amazon Resource Name (ARN) of the Lambda function containing the
3467
+ # business logic that is carried out upon invoking the action.
3461
3468
  # @return [Types::ActionGroupExecutor]
3462
3469
  #
3463
3470
  # @!attribute [rw] action_group_id
@@ -3654,12 +3661,13 @@ module Aws::BedrockAgent
3654
3661
  # @return [String]
3655
3662
  #
3656
3663
  # @!attribute [rw] agent_resource_role_arn
3657
- # The ARN of the IAM role with permissions to update the agent. The
3658
- # ARN must begin with `AmazonBedrockExecutionRoleForAgents_`.
3664
+ # The Amazon Resource Name (ARN) of the IAM role with permissions to
3665
+ # invoke API operations on the agent.
3659
3666
  # @return [String]
3660
3667
  #
3661
3668
  # @!attribute [rw] customer_encryption_key_arn
3662
- # The ARN of the KMS key with which to encrypt the agent.
3669
+ # The Amazon Resource Name (ARN) of the KMS key with which to encrypt
3670
+ # the agent.
3663
3671
  # @return [String]
3664
3672
  #
3665
3673
  # @!attribute [rw] description
@@ -3798,7 +3806,7 @@ module Aws::BedrockAgent
3798
3806
  #
3799
3807
  # @!attribute [rw] role_arn
3800
3808
  # Specifies a different Amazon Resource Name (ARN) of the IAM role
3801
- # with permissions to modify the knowledge base.
3809
+ # with permissions to invoke API operations on the knowledge base.
3802
3810
  # @return [String]
3803
3811
  #
3804
3812
  # @!attribute [rw] storage_configuration
@@ -3892,8 +3900,8 @@ module Aws::BedrockAgent
3892
3900
  # the knowledge base.
3893
3901
  #
3894
3902
  # @!attribute [rw] embedding_model_arn
3895
- # The ARN of the model used to create vector embeddings for the
3896
- # knowledge base.
3903
+ # The Amazon Resource Name (ARN) of the model used to create vector
3904
+ # embeddings for the knowledge base.
3897
3905
  # @return [String]
3898
3906
  #
3899
3907
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/VectorKnowledgeBaseConfiguration AWS API Documentation
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-bedrockagent/customizations'
52
52
  # @!group service
53
53
  module Aws::BedrockAgent
54
54
 
55
- GEM_VERSION = '1.4.0'
55
+ GEM_VERSION = '1.5.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -93,7 +93,7 @@ module Aws
93
93
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgent/Client.html#create_agent-instance_method
94
94
  def create_agent: (
95
95
  agent_name: ::String,
96
- agent_resource_role_arn: ::String,
96
+ ?agent_resource_role_arn: ::String,
97
97
  ?client_token: ::String,
98
98
  ?customer_encryption_key_arn: ::String,
99
99
  ?description: ::String,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-bedrockagent
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-03-27 00:00:00.000000000 Z
11
+ date: 2024-04-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core