aws-sdk-bedrockagent 1.57.0 → 1.61.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: 6c7aa586ff9708d5e08083691d5274e55f457fae971713bf07facd91cd30d2e7
4
- data.tar.gz: 937a04a52e1a1a47a6107680e503f71364b478d9cf3fd8af918fc5e112da8671
3
+ metadata.gz: e9ba4284ae36022e75ad5c375adee5f8a0eb36c136b857abca66cc6c603da053
4
+ data.tar.gz: 909f1393770b8705e80c1290fdf70f26f25aafd50b08a437148734a1fa3250c9
5
5
  SHA512:
6
- metadata.gz: '009138009b4896f521c4af5a00a4920179ae7268179d00e7033114aa803fbec1402ede164eb9ef635b1ca5859367edd1281f216933bc649df5f15caaab9fc3fa'
7
- data.tar.gz: 81af1e9b443373eb7febb16becbb5eaa5b4f5f5d8721797e167303126ece01645c3d6b5b2e1713cbb088800f839512a83dfaac4a9bf3ab5cf758635d824bd22b
6
+ metadata.gz: fc60aaa5c8c67da9dacb335c1a5db94cf28d5e05a13d90554e1df85e6b5b30021250cb911ab28da8c4210c53a44577b2a373588c3b114e515a3507b081cdfe1a
7
+ data.tar.gz: 498760bfdc1e38d8a70279c14dc6c38f0e9b89dc3071d739b5fe051252588af4cbc4a579abb4ff7364cc713a7a8bfce96afada066cda66f844ea600c2883cb7e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.61.0 (2025-07-31)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.60.0 (2025-07-21)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.59.0 (2025-07-15)
15
+ ------------------
16
+
17
+ * Feature - Add support for S3 Vectors as a vector store.
18
+
19
+ 1.58.0 (2025-06-02)
20
+ ------------------
21
+
22
+ * Feature - This release adds the Agent Lifecycle Paused State feature to Amazon Bedrock agents. By using an agent's alias, you can temporarily suspend agent operations during maintenance, updates, or other situations.
23
+
4
24
  1.57.0 (2025-05-15)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.57.0
1
+ 1.61.0
@@ -95,7 +95,7 @@ module Aws::BedrockAgent
95
95
  # class name or an instance of a plugin class.
96
96
  #
97
97
  # @option options [required, Aws::CredentialProvider] :credentials
98
- # Your AWS credentials. This can be an instance of any one of the
98
+ # Your AWS credentials used for authentication. This can be an instance of any one of the
99
99
  # following classes:
100
100
  #
101
101
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
@@ -128,18 +128,23 @@ module Aws::BedrockAgent
128
128
  # locations will be searched for credentials:
129
129
  #
130
130
  # * `Aws.config[:credentials]`
131
+ #
131
132
  # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
132
133
  # `:account_id` options.
133
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
134
- # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
134
+ #
135
+ # * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
136
+ # `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
137
+ #
135
138
  # * `~/.aws/credentials`
139
+ #
136
140
  # * `~/.aws/config`
141
+ #
137
142
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
138
143
  # are very aggressive. Construct and pass an instance of
139
144
  # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
140
145
  # enable retries and extended timeouts. Instance profile credential
141
- # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
142
- # to true.
146
+ # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
147
+ # to `true`.
143
148
  #
144
149
  # @option options [required, String] :region
145
150
  # The AWS region to connect to. The configured `:region` is
@@ -167,6 +172,11 @@ module Aws::BedrockAgent
167
172
  # When false, the request will raise a `RetryCapacityNotAvailableError` and will
168
173
  # not retry instead of sleeping.
169
174
  #
175
+ # @option options [Array<String>] :auth_scheme_preference
176
+ # A list of preferred authentication schemes to use when making a request. Supported values are:
177
+ # `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
178
+ # shared config as `auth_scheme_preference`, the value should be a comma-separated list.
179
+ #
170
180
  # @option options [Boolean] :client_side_monitoring (false)
171
181
  # When `true`, client-side metrics will be collected for all API requests from
172
182
  # this client.
@@ -253,8 +263,8 @@ module Aws::BedrockAgent
253
263
  # 4 times. Used in `standard` and `adaptive` retry modes.
254
264
  #
255
265
  # @option options [String] :profile ("default")
256
- # Used when loading credentials from the shared credentials file
257
- # at HOME/.aws/credentials. When not specified, 'default' is used.
266
+ # Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
267
+ # When not specified, 'default' is used.
258
268
  #
259
269
  # @option options [String] :request_checksum_calculation ("when_supported")
260
270
  # Determines when a checksum will be calculated for request payloads. Values are:
@@ -367,7 +377,7 @@ module Aws::BedrockAgent
367
377
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
368
378
  #
369
379
  # @option options [Aws::TokenProvider] :token_provider
370
- # A Bearer Token Provider. This can be an instance of any one of the
380
+ # Your Bearer token used for authentication. This can be an instance of any one of the
371
381
  # following classes:
372
382
  #
373
383
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
@@ -965,7 +975,7 @@ module Aws::BedrockAgent
965
975
  #
966
976
  #
967
977
  #
968
- # [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agent-computer-use.html
978
+ # [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agents-computer-use.html
969
979
  #
970
980
  # @option params [Hash<String,String>] :parent_action_group_signature_params
971
981
  # The configuration settings for a computer use action.
@@ -977,7 +987,7 @@ module Aws::BedrockAgent
977
987
  #
978
988
  #
979
989
  #
980
- # [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agent-computer-use.html
990
+ # [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agents-computer-use.html
981
991
  #
982
992
  # @return [Types::CreateAgentActionGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
983
993
  #
@@ -1127,6 +1137,7 @@ module Aws::BedrockAgent
1127
1137
  # resp.agent_alias.agent_alias_name #=> String
1128
1138
  # resp.agent_alias.agent_alias_status #=> String, one of "CREATING", "PREPARED", "FAILED", "UPDATING", "DELETING", "DISSOCIATED"
1129
1139
  # resp.agent_alias.agent_id #=> String
1140
+ # resp.agent_alias.alias_invocation_state #=> String, one of "ACCEPT_INVOCATIONS", "REJECT_INVOCATIONS"
1130
1141
  # resp.agent_alias.client_token #=> String
1131
1142
  # resp.agent_alias.created_at #=> Time
1132
1143
  # resp.agent_alias.description #=> String
@@ -2435,7 +2446,12 @@ module Aws::BedrockAgent
2435
2446
  # },
2436
2447
  # vector_index_name: "RedisEnterpriseCloudIndexName", # required
2437
2448
  # },
2438
- # type: "OPENSEARCH_SERVERLESS", # required, accepts OPENSEARCH_SERVERLESS, PINECONE, REDIS_ENTERPRISE_CLOUD, RDS, MONGO_DB_ATLAS, NEPTUNE_ANALYTICS, OPENSEARCH_MANAGED_CLUSTER
2449
+ # s3_vectors_configuration: {
2450
+ # index_arn: "IndexArn",
2451
+ # index_name: "IndexName",
2452
+ # vector_bucket_arn: "VectorBucketArn",
2453
+ # },
2454
+ # type: "OPENSEARCH_SERVERLESS", # required, accepts OPENSEARCH_SERVERLESS, PINECONE, REDIS_ENTERPRISE_CLOUD, RDS, MONGO_DB_ATLAS, NEPTUNE_ANALYTICS, OPENSEARCH_MANAGED_CLUSTER, S3_VECTORS
2439
2455
  # },
2440
2456
  # tags: {
2441
2457
  # "TagKey" => "TagValue",
@@ -2531,7 +2547,10 @@ module Aws::BedrockAgent
2531
2547
  # resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.text_field #=> String
2532
2548
  # resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.vector_field #=> String
2533
2549
  # resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.vector_index_name #=> String
2534
- # resp.knowledge_base.storage_configuration.type #=> String, one of "OPENSEARCH_SERVERLESS", "PINECONE", "REDIS_ENTERPRISE_CLOUD", "RDS", "MONGO_DB_ATLAS", "NEPTUNE_ANALYTICS", "OPENSEARCH_MANAGED_CLUSTER"
2550
+ # resp.knowledge_base.storage_configuration.s3_vectors_configuration.index_arn #=> String
2551
+ # resp.knowledge_base.storage_configuration.s3_vectors_configuration.index_name #=> String
2552
+ # resp.knowledge_base.storage_configuration.s3_vectors_configuration.vector_bucket_arn #=> String
2553
+ # resp.knowledge_base.storage_configuration.type #=> String, one of "OPENSEARCH_SERVERLESS", "PINECONE", "REDIS_ENTERPRISE_CLOUD", "RDS", "MONGO_DB_ATLAS", "NEPTUNE_ANALYTICS", "OPENSEARCH_MANAGED_CLUSTER", "S3_VECTORS"
2535
2554
  # resp.knowledge_base.updated_at #=> Time
2536
2555
  #
2537
2556
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/CreateKnowledgeBase AWS API Documentation
@@ -3561,6 +3580,7 @@ module Aws::BedrockAgent
3561
3580
  # resp.agent_alias.agent_alias_name #=> String
3562
3581
  # resp.agent_alias.agent_alias_status #=> String, one of "CREATING", "PREPARED", "FAILED", "UPDATING", "DELETING", "DISSOCIATED"
3563
3582
  # resp.agent_alias.agent_id #=> String
3583
+ # resp.agent_alias.alias_invocation_state #=> String, one of "ACCEPT_INVOCATIONS", "REJECT_INVOCATIONS"
3564
3584
  # resp.agent_alias.client_token #=> String
3565
3585
  # resp.agent_alias.created_at #=> Time
3566
3586
  # resp.agent_alias.description #=> String
@@ -4411,7 +4431,10 @@ module Aws::BedrockAgent
4411
4431
  # resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.text_field #=> String
4412
4432
  # resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.vector_field #=> String
4413
4433
  # resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.vector_index_name #=> String
4414
- # resp.knowledge_base.storage_configuration.type #=> String, one of "OPENSEARCH_SERVERLESS", "PINECONE", "REDIS_ENTERPRISE_CLOUD", "RDS", "MONGO_DB_ATLAS", "NEPTUNE_ANALYTICS", "OPENSEARCH_MANAGED_CLUSTER"
4434
+ # resp.knowledge_base.storage_configuration.s3_vectors_configuration.index_arn #=> String
4435
+ # resp.knowledge_base.storage_configuration.s3_vectors_configuration.index_name #=> String
4436
+ # resp.knowledge_base.storage_configuration.s3_vectors_configuration.vector_bucket_arn #=> String
4437
+ # resp.knowledge_base.storage_configuration.type #=> String, one of "OPENSEARCH_SERVERLESS", "PINECONE", "REDIS_ENTERPRISE_CLOUD", "RDS", "MONGO_DB_ATLAS", "NEPTUNE_ANALYTICS", "OPENSEARCH_MANAGED_CLUSTER", "S3_VECTORS"
4415
4438
  # resp.knowledge_base.updated_at #=> Time
4416
4439
  #
4417
4440
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/GetKnowledgeBase AWS API Documentation
@@ -4790,6 +4813,7 @@ module Aws::BedrockAgent
4790
4813
  # resp.agent_alias_summaries[0].agent_alias_id #=> String
4791
4814
  # resp.agent_alias_summaries[0].agent_alias_name #=> String
4792
4815
  # resp.agent_alias_summaries[0].agent_alias_status #=> String, one of "CREATING", "PREPARED", "FAILED", "UPDATING", "DELETING", "DISSOCIATED"
4816
+ # resp.agent_alias_summaries[0].alias_invocation_state #=> String, one of "ACCEPT_INVOCATIONS", "REJECT_INVOCATIONS"
4793
4817
  # resp.agent_alias_summaries[0].created_at #=> Time
4794
4818
  # resp.agent_alias_summaries[0].description #=> String
4795
4819
  # resp.agent_alias_summaries[0].routing_configuration #=> Array
@@ -6086,7 +6110,7 @@ module Aws::BedrockAgent
6086
6110
  #
6087
6111
  #
6088
6112
  #
6089
- # [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agent-computer-use.html
6113
+ # [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agents-computer-use.html
6090
6114
  # [2]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_Observation.html
6091
6115
  #
6092
6116
  # @option params [Hash<String,String>] :parent_action_group_signature_params
@@ -6099,7 +6123,7 @@ module Aws::BedrockAgent
6099
6123
  #
6100
6124
  #
6101
6125
  #
6102
- # [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agent-computer-use.html
6126
+ # [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agents-computer-use.html
6103
6127
  #
6104
6128
  # @return [Types::UpdateAgentActionGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6105
6129
  #
@@ -6195,6 +6219,13 @@ module Aws::BedrockAgent
6195
6219
  # @option params [required, String] :agent_id
6196
6220
  # The unique identifier of the agent.
6197
6221
  #
6222
+ # @option params [String] :alias_invocation_state
6223
+ # The invocation state for the agent alias. To pause the agent alias,
6224
+ # set the value to `REJECT_INVOCATIONS`. To start the agent alias
6225
+ # running again, set the value to `ACCEPT_INVOCATIONS`. Use the
6226
+ # `GetAgentAlias`, or `ListAgentAliases`, operation to get the
6227
+ # invocation state of an agent alias.
6228
+ #
6198
6229
  # @option params [String] :description
6199
6230
  # Specifies a new description for the alias.
6200
6231
  #
@@ -6211,6 +6242,7 @@ module Aws::BedrockAgent
6211
6242
  # agent_alias_id: "AgentAliasId", # required
6212
6243
  # agent_alias_name: "Name", # required
6213
6244
  # agent_id: "Id", # required
6245
+ # alias_invocation_state: "ACCEPT_INVOCATIONS", # accepts ACCEPT_INVOCATIONS, REJECT_INVOCATIONS
6214
6246
  # description: "Description",
6215
6247
  # routing_configuration: [
6216
6248
  # {
@@ -6233,6 +6265,7 @@ module Aws::BedrockAgent
6233
6265
  # resp.agent_alias.agent_alias_name #=> String
6234
6266
  # resp.agent_alias.agent_alias_status #=> String, one of "CREATING", "PREPARED", "FAILED", "UPDATING", "DELETING", "DISSOCIATED"
6235
6267
  # resp.agent_alias.agent_id #=> String
6268
+ # resp.agent_alias.alias_invocation_state #=> String, one of "ACCEPT_INVOCATIONS", "REJECT_INVOCATIONS"
6236
6269
  # resp.agent_alias.client_token #=> String
6237
6270
  # resp.agent_alias.created_at #=> Time
6238
6271
  # resp.agent_alias.description #=> String
@@ -7398,7 +7431,12 @@ module Aws::BedrockAgent
7398
7431
  # },
7399
7432
  # vector_index_name: "RedisEnterpriseCloudIndexName", # required
7400
7433
  # },
7401
- # type: "OPENSEARCH_SERVERLESS", # required, accepts OPENSEARCH_SERVERLESS, PINECONE, REDIS_ENTERPRISE_CLOUD, RDS, MONGO_DB_ATLAS, NEPTUNE_ANALYTICS, OPENSEARCH_MANAGED_CLUSTER
7434
+ # s3_vectors_configuration: {
7435
+ # index_arn: "IndexArn",
7436
+ # index_name: "IndexName",
7437
+ # vector_bucket_arn: "VectorBucketArn",
7438
+ # },
7439
+ # type: "OPENSEARCH_SERVERLESS", # required, accepts OPENSEARCH_SERVERLESS, PINECONE, REDIS_ENTERPRISE_CLOUD, RDS, MONGO_DB_ATLAS, NEPTUNE_ANALYTICS, OPENSEARCH_MANAGED_CLUSTER, S3_VECTORS
7402
7440
  # },
7403
7441
  # })
7404
7442
  #
@@ -7491,7 +7529,10 @@ module Aws::BedrockAgent
7491
7529
  # resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.text_field #=> String
7492
7530
  # resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.vector_field #=> String
7493
7531
  # resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.vector_index_name #=> String
7494
- # resp.knowledge_base.storage_configuration.type #=> String, one of "OPENSEARCH_SERVERLESS", "PINECONE", "REDIS_ENTERPRISE_CLOUD", "RDS", "MONGO_DB_ATLAS", "NEPTUNE_ANALYTICS", "OPENSEARCH_MANAGED_CLUSTER"
7532
+ # resp.knowledge_base.storage_configuration.s3_vectors_configuration.index_arn #=> String
7533
+ # resp.knowledge_base.storage_configuration.s3_vectors_configuration.index_name #=> String
7534
+ # resp.knowledge_base.storage_configuration.s3_vectors_configuration.vector_bucket_arn #=> String
7535
+ # resp.knowledge_base.storage_configuration.type #=> String, one of "OPENSEARCH_SERVERLESS", "PINECONE", "REDIS_ENTERPRISE_CLOUD", "RDS", "MONGO_DB_ATLAS", "NEPTUNE_ANALYTICS", "OPENSEARCH_MANAGED_CLUSTER", "S3_VECTORS"
7495
7536
  # resp.knowledge_base.updated_at #=> Time
7496
7537
  #
7497
7538
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/UpdateKnowledgeBase AWS API Documentation
@@ -8065,7 +8106,7 @@ module Aws::BedrockAgent
8065
8106
  tracer: tracer
8066
8107
  )
8067
8108
  context[:gem_name] = 'aws-sdk-bedrockagent'
8068
- context[:gem_version] = '1.57.0'
8109
+ context[:gem_version] = '1.61.0'
8069
8110
  Seahorse::Client::Request.new(handlers, context)
8070
8111
  end
8071
8112
 
@@ -56,6 +56,7 @@ module Aws::BedrockAgent
56
56
  AgentVersion = Shapes::StructureShape.new(name: 'AgentVersion')
57
57
  AgentVersionSummaries = Shapes::ListShape.new(name: 'AgentVersionSummaries')
58
58
  AgentVersionSummary = Shapes::StructureShape.new(name: 'AgentVersionSummary')
59
+ AliasInvocationState = Shapes::StringShape.new(name: 'AliasInvocationState')
59
60
  AnyToolChoice = Shapes::StructureShape.new(name: 'AnyToolChoice')
60
61
  AssociateAgentCollaboratorRequest = Shapes::StructureShape.new(name: 'AssociateAgentCollaboratorRequest')
61
62
  AssociateAgentCollaboratorResponse = Shapes::StructureShape.new(name: 'AssociateAgentCollaboratorResponse')
@@ -297,6 +298,8 @@ module Aws::BedrockAgent
297
298
  IncludeExclude = Shapes::StringShape.new(name: 'IncludeExclude')
298
299
  IncompatibleConnectionDataTypeFlowValidationDetails = Shapes::StructureShape.new(name: 'IncompatibleConnectionDataTypeFlowValidationDetails')
299
300
  IncompatibleLoopNodeType = Shapes::StringShape.new(name: 'IncompatibleLoopNodeType')
301
+ IndexArn = Shapes::StringShape.new(name: 'IndexArn')
302
+ IndexName = Shapes::StringShape.new(name: 'IndexName')
300
303
  InferenceConfiguration = Shapes::StructureShape.new(name: 'InferenceConfiguration')
301
304
  IngestKnowledgeBaseDocumentsRequest = Shapes::StructureShape.new(name: 'IngestKnowledgeBaseDocumentsRequest')
302
305
  IngestKnowledgeBaseDocumentsResponse = Shapes::StructureShape.new(name: 'IngestKnowledgeBaseDocumentsResponse')
@@ -560,6 +563,7 @@ module Aws::BedrockAgent
560
563
  S3ObjectUri = Shapes::StringShape.new(name: 'S3ObjectUri')
561
564
  S3Prefix = Shapes::StringShape.new(name: 'S3Prefix')
562
565
  S3Prefixes = Shapes::ListShape.new(name: 'S3Prefixes')
566
+ S3VectorsConfiguration = Shapes::StructureShape.new(name: 'S3VectorsConfiguration')
563
567
  SalesforceAuthType = Shapes::StringShape.new(name: 'SalesforceAuthType')
564
568
  SalesforceCrawlerConfiguration = Shapes::StructureShape.new(name: 'SalesforceCrawlerConfiguration')
565
569
  SalesforceDataSourceConfiguration = Shapes::StructureShape.new(name: 'SalesforceDataSourceConfiguration')
@@ -674,6 +678,7 @@ module Aws::BedrockAgent
674
678
  ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
675
679
  ValidationExceptionField = Shapes::StructureShape.new(name: 'ValidationExceptionField')
676
680
  ValidationExceptionFieldList = Shapes::ListShape.new(name: 'ValidationExceptionFieldList')
681
+ VectorBucketArn = Shapes::StringShape.new(name: 'VectorBucketArn')
677
682
  VectorIngestionConfiguration = Shapes::StructureShape.new(name: 'VectorIngestionConfiguration')
678
683
  VectorKnowledgeBaseConfiguration = Shapes::StructureShape.new(name: 'VectorKnowledgeBaseConfiguration')
679
684
  VectorSearchBedrockRerankingConfiguration = Shapes::StructureShape.new(name: 'VectorSearchBedrockRerankingConfiguration')
@@ -772,6 +777,7 @@ module Aws::BedrockAgent
772
777
  AgentAlias.add_member(:agent_alias_name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "agentAliasName"))
773
778
  AgentAlias.add_member(:agent_alias_status, Shapes::ShapeRef.new(shape: AgentAliasStatus, required: true, location_name: "agentAliasStatus"))
774
779
  AgentAlias.add_member(:agent_id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "agentId"))
780
+ AgentAlias.add_member(:alias_invocation_state, Shapes::ShapeRef.new(shape: AliasInvocationState, location_name: "aliasInvocationState"))
775
781
  AgentAlias.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken"))
776
782
  AgentAlias.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
777
783
  AgentAlias.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
@@ -798,6 +804,7 @@ module Aws::BedrockAgent
798
804
  AgentAliasSummary.add_member(:agent_alias_id, Shapes::ShapeRef.new(shape: AgentAliasId, required: true, location_name: "agentAliasId"))
799
805
  AgentAliasSummary.add_member(:agent_alias_name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "agentAliasName"))
800
806
  AgentAliasSummary.add_member(:agent_alias_status, Shapes::ShapeRef.new(shape: AgentAliasStatus, required: true, location_name: "agentAliasStatus"))
807
+ AgentAliasSummary.add_member(:alias_invocation_state, Shapes::ShapeRef.new(shape: AliasInvocationState, location_name: "aliasInvocationState"))
801
808
  AgentAliasSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
802
809
  AgentAliasSummary.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
803
810
  AgentAliasSummary.add_member(:routing_configuration, Shapes::ShapeRef.new(shape: AgentAliasRoutingConfiguration, location_name: "routingConfiguration"))
@@ -2494,6 +2501,11 @@ module Aws::BedrockAgent
2494
2501
 
2495
2502
  S3Prefixes.member = Shapes::ShapeRef.new(shape: S3Prefix)
2496
2503
 
2504
+ S3VectorsConfiguration.add_member(:index_arn, Shapes::ShapeRef.new(shape: IndexArn, location_name: "indexArn"))
2505
+ S3VectorsConfiguration.add_member(:index_name, Shapes::ShapeRef.new(shape: IndexName, location_name: "indexName"))
2506
+ S3VectorsConfiguration.add_member(:vector_bucket_arn, Shapes::ShapeRef.new(shape: VectorBucketArn, location_name: "vectorBucketArn"))
2507
+ S3VectorsConfiguration.struct_class = Types::S3VectorsConfiguration
2508
+
2497
2509
  SalesforceCrawlerConfiguration.add_member(:filter_configuration, Shapes::ShapeRef.new(shape: CrawlFilterConfiguration, location_name: "filterConfiguration"))
2498
2510
  SalesforceCrawlerConfiguration.struct_class = Types::SalesforceCrawlerConfiguration
2499
2511
 
@@ -2575,6 +2587,7 @@ module Aws::BedrockAgent
2575
2587
  StorageConfiguration.add_member(:pinecone_configuration, Shapes::ShapeRef.new(shape: PineconeConfiguration, location_name: "pineconeConfiguration"))
2576
2588
  StorageConfiguration.add_member(:rds_configuration, Shapes::ShapeRef.new(shape: RdsConfiguration, location_name: "rdsConfiguration"))
2577
2589
  StorageConfiguration.add_member(:redis_enterprise_cloud_configuration, Shapes::ShapeRef.new(shape: RedisEnterpriseCloudConfiguration, location_name: "redisEnterpriseCloudConfiguration"))
2590
+ StorageConfiguration.add_member(:s3_vectors_configuration, Shapes::ShapeRef.new(shape: S3VectorsConfiguration, location_name: "s3VectorsConfiguration"))
2578
2591
  StorageConfiguration.add_member(:type, Shapes::ShapeRef.new(shape: KnowledgeBaseStorageType, required: true, location_name: "type"))
2579
2592
  StorageConfiguration.struct_class = Types::StorageConfiguration
2580
2593
 
@@ -2738,6 +2751,7 @@ module Aws::BedrockAgent
2738
2751
  UpdateAgentAliasRequest.add_member(:agent_alias_id, Shapes::ShapeRef.new(shape: AgentAliasId, required: true, location: "uri", location_name: "agentAliasId"))
2739
2752
  UpdateAgentAliasRequest.add_member(:agent_alias_name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "agentAliasName"))
2740
2753
  UpdateAgentAliasRequest.add_member(:agent_id, Shapes::ShapeRef.new(shape: Id, required: true, location: "uri", location_name: "agentId"))
2754
+ UpdateAgentAliasRequest.add_member(:alias_invocation_state, Shapes::ShapeRef.new(shape: AliasInvocationState, location_name: "aliasInvocationState"))
2741
2755
  UpdateAgentAliasRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
2742
2756
  UpdateAgentAliasRequest.add_member(:routing_configuration, Shapes::ShapeRef.new(shape: AgentAliasRoutingConfiguration, location_name: "routingConfiguration"))
2743
2757
  UpdateAgentAliasRequest.struct_class = Types::UpdateAgentAliasRequest
@@ -386,7 +386,7 @@ module Aws::BedrockAgent
386
386
  #
387
387
  #
388
388
  #
389
- # [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agent-computer-use.html
389
+ # [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agents-computer-use.html
390
390
  # @return [Hash<String,String>]
391
391
  #
392
392
  # @!attribute [rw] parent_action_signature
@@ -471,6 +471,13 @@ module Aws::BedrockAgent
471
471
  # The unique identifier of the agent.
472
472
  # @return [String]
473
473
  #
474
+ # @!attribute [rw] alias_invocation_state
475
+ # The invocation state for the agent alias. If the agent alias is
476
+ # running, the value is `ACCEPT_INVOCATIONS`. If the agent alias is
477
+ # paused, the value is `REJECT_INVOCATIONS`. Use the
478
+ # `UpdateAgentAlias` operation to change the invocation state.
479
+ # @return [String]
480
+ #
474
481
  # @!attribute [rw] client_token
475
482
  # A unique, case-sensitive identifier to ensure that the API request
476
483
  # completes no more than one time. If this token matches a previous
@@ -512,6 +519,7 @@ module Aws::BedrockAgent
512
519
  :agent_alias_name,
513
520
  :agent_alias_status,
514
521
  :agent_id,
522
+ :alias_invocation_state,
515
523
  :client_token,
516
524
  :created_at,
517
525
  :description,
@@ -583,6 +591,13 @@ module Aws::BedrockAgent
583
591
  # The status of the alias.
584
592
  # @return [String]
585
593
  #
594
+ # @!attribute [rw] alias_invocation_state
595
+ # The invocation state for the agent alias. If the agent alias is
596
+ # running, the value is `ACCEPT_INVOCATIONS`. If the agent alias is
597
+ # paused, the value is `REJECT_INVOCATIONS`. Use the
598
+ # `UpdateAgentAlias` operation to change the invocation state.
599
+ # @return [String]
600
+ #
586
601
  # @!attribute [rw] created_at
587
602
  # The time at which the alias of the agent was created.
588
603
  # @return [Time]
@@ -606,6 +621,7 @@ module Aws::BedrockAgent
606
621
  :agent_alias_id,
607
622
  :agent_alias_name,
608
623
  :agent_alias_status,
624
+ :alias_invocation_state,
609
625
  :created_at,
610
626
  :description,
611
627
  :routing_configuration,
@@ -1773,7 +1789,7 @@ module Aws::BedrockAgent
1773
1789
  #
1774
1790
  #
1775
1791
  #
1776
- # [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agent-computer-use.html
1792
+ # [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agents-computer-use.html
1777
1793
  # @return [String]
1778
1794
  #
1779
1795
  # @!attribute [rw] parent_action_group_signature_params
@@ -1786,7 +1802,7 @@ module Aws::BedrockAgent
1786
1802
  #
1787
1803
  #
1788
1804
  #
1789
- # [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agent-computer-use.html
1805
+ # [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agents-computer-use.html
1790
1806
  # @return [Hash<String,String>]
1791
1807
  #
1792
1808
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/CreateAgentActionGroupRequest AWS API Documentation
@@ -7118,7 +7134,11 @@ module Aws::BedrockAgent
7118
7134
  # inputs from nodes outside the loop and from previous loop
7119
7135
  # iterations.
7120
7136
  #
7121
- # * Body nodes - These can be
7137
+ # * Body nodes - The processing nodes that execute within each loop
7138
+ # iteration. These can be nodes for handling data in your flow, such
7139
+ # as a prompt or Lambda function nodes. Some node types aren't
7140
+ # supported inside a DoWhile loop body. For more information, see
7141
+ # [LoopIncompatibleNodeTypeFlowValidationDetails][1].
7122
7142
  #
7123
7143
  # * `LoopController` - The node that evaluates whether the loop should
7124
7144
  # continue or exit based on a condition.
@@ -7127,6 +7147,10 @@ module Aws::BedrockAgent
7127
7147
  # continues until a specified condition is met or a maximum number of
7128
7148
  # iterations is reached.
7129
7149
  #
7150
+ #
7151
+ #
7152
+ # [1]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent_LoopIncompatibleNodeTypeFlowValidationDetails.html
7153
+ #
7130
7154
  # @!attribute [rw] definition
7131
7155
  # The definition of the DoWhile loop nodes and connections between
7132
7156
  # nodes in the flow.
@@ -8268,7 +8292,7 @@ module Aws::BedrockAgent
8268
8292
  # skips that step. The default state for each `promptType` is as
8269
8293
  # follows.
8270
8294
  #
8271
- # * `PRE_PROCESSING` – `ENABLED`
8295
+ # * `PRE_PROCESSING` – `DISABLED`
8272
8296
  #
8273
8297
  # * `ORCHESTRATION` – `ENABLED`
8274
8298
  #
@@ -9388,6 +9412,36 @@ module Aws::BedrockAgent
9388
9412
  include Aws::Structure
9389
9413
  end
9390
9414
 
9415
+ # Contains the storage configuration of the knowledge base for S3
9416
+ # vectors.
9417
+ #
9418
+ # @!attribute [rw] index_arn
9419
+ # The Amazon Resource Name (ARN) of the vector index used for the
9420
+ # knowledge base. This ARN identifies the specific vector index
9421
+ # resource within Amazon Bedrock.
9422
+ # @return [String]
9423
+ #
9424
+ # @!attribute [rw] index_name
9425
+ # The name of the vector index used for the knowledge base. This name
9426
+ # identifies the vector index within the Amazon Bedrock service.
9427
+ # @return [String]
9428
+ #
9429
+ # @!attribute [rw] vector_bucket_arn
9430
+ # The Amazon Resource Name (ARN) of the S3 bucket where vector
9431
+ # embeddings are stored. This bucket contains the vector data used by
9432
+ # the knowledge base.
9433
+ # @return [String]
9434
+ #
9435
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/S3VectorsConfiguration AWS API Documentation
9436
+ #
9437
+ class S3VectorsConfiguration < Struct.new(
9438
+ :index_arn,
9439
+ :index_name,
9440
+ :vector_bucket_arn)
9441
+ SENSITIVE = [:index_arn, :index_name, :vector_bucket_arn]
9442
+ include Aws::Structure
9443
+ end
9444
+
9391
9445
  # The configuration of the Salesforce content. For example, configuring
9392
9446
  # specific types of Salesforce content.
9393
9447
  #
@@ -9835,6 +9889,12 @@ module Aws::BedrockAgent
9835
9889
  # Enterprise Cloud.
9836
9890
  # @return [Types::RedisEnterpriseCloudConfiguration]
9837
9891
  #
9892
+ # @!attribute [rw] s3_vectors_configuration
9893
+ # The configuration settings for storing knowledge base data using S3
9894
+ # vectors. This includes vector index information and S3 bucket
9895
+ # details for vector storage.
9896
+ # @return [Types::S3VectorsConfiguration]
9897
+ #
9838
9898
  # @!attribute [rw] type
9839
9899
  # The vector store service in which the knowledge base is stored.
9840
9900
  # @return [String]
@@ -9849,6 +9909,7 @@ module Aws::BedrockAgent
9849
9909
  :pinecone_configuration,
9850
9910
  :rds_configuration,
9851
9911
  :redis_enterprise_cloud_configuration,
9912
+ :s3_vectors_configuration,
9852
9913
  :type)
9853
9914
  SENSITIVE = []
9854
9915
  include Aws::Structure
@@ -10552,7 +10613,7 @@ module Aws::BedrockAgent
10552
10613
  #
10553
10614
  #
10554
10615
  #
10555
- # [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agent-computer-use.html
10616
+ # [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agents-computer-use.html
10556
10617
  # [2]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_Observation.html
10557
10618
  # @return [String]
10558
10619
  #
@@ -10566,7 +10627,7 @@ module Aws::BedrockAgent
10566
10627
  #
10567
10628
  #
10568
10629
  #
10569
- # [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agent-computer-use.html
10630
+ # [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agents-computer-use.html
10570
10631
  # @return [Hash<String,String>]
10571
10632
  #
10572
10633
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/UpdateAgentActionGroupRequest AWS API Documentation
@@ -10611,6 +10672,14 @@ module Aws::BedrockAgent
10611
10672
  # The unique identifier of the agent.
10612
10673
  # @return [String]
10613
10674
  #
10675
+ # @!attribute [rw] alias_invocation_state
10676
+ # The invocation state for the agent alias. To pause the agent alias,
10677
+ # set the value to `REJECT_INVOCATIONS`. To start the agent alias
10678
+ # running again, set the value to `ACCEPT_INVOCATIONS`. Use the
10679
+ # `GetAgentAlias`, or `ListAgentAliases`, operation to get the
10680
+ # invocation state of an agent alias.
10681
+ # @return [String]
10682
+ #
10614
10683
  # @!attribute [rw] description
10615
10684
  # Specifies a new description for the alias.
10616
10685
  # @return [String]
@@ -10625,6 +10694,7 @@ module Aws::BedrockAgent
10625
10694
  :agent_alias_id,
10626
10695
  :agent_alias_name,
10627
10696
  :agent_id,
10697
+ :alias_invocation_state,
10628
10698
  :description,
10629
10699
  :routing_configuration)
10630
10700
  SENSITIVE = []
@@ -54,7 +54,7 @@ module Aws::BedrockAgent
54
54
  autoload :EndpointProvider, 'aws-sdk-bedrockagent/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-bedrockagent/endpoints'
56
56
 
57
- GEM_VERSION = '1.57.0'
57
+ GEM_VERSION = '1.61.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
@@ -901,7 +902,12 @@ module Aws
901
902
  },
902
903
  vector_index_name: ::String
903
904
  }?,
904
- type: ("OPENSEARCH_SERVERLESS" | "PINECONE" | "REDIS_ENTERPRISE_CLOUD" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS" | "OPENSEARCH_MANAGED_CLUSTER")
905
+ s3_vectors_configuration: {
906
+ index_arn: ::String?,
907
+ index_name: ::String?,
908
+ vector_bucket_arn: ::String?
909
+ }?,
910
+ type: ("OPENSEARCH_SERVERLESS" | "PINECONE" | "REDIS_ENTERPRISE_CLOUD" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS" | "OPENSEARCH_MANAGED_CLUSTER" | "S3_VECTORS")
905
911
  },
906
912
  ?tags: Hash[::String, ::String]
907
913
  ) -> _CreateKnowledgeBaseResponseSuccess
@@ -1864,6 +1870,7 @@ module Aws
1864
1870
  agent_alias_id: ::String,
1865
1871
  agent_alias_name: ::String,
1866
1872
  agent_id: ::String,
1873
+ ?alias_invocation_state: ("ACCEPT_INVOCATIONS" | "REJECT_INVOCATIONS"),
1867
1874
  ?description: ::String,
1868
1875
  ?routing_configuration: Array[
1869
1876
  {
@@ -2555,7 +2562,12 @@ module Aws
2555
2562
  },
2556
2563
  vector_index_name: ::String
2557
2564
  }?,
2558
- type: ("OPENSEARCH_SERVERLESS" | "PINECONE" | "REDIS_ENTERPRISE_CLOUD" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS" | "OPENSEARCH_MANAGED_CLUSTER")
2565
+ s3_vectors_configuration: {
2566
+ index_arn: ::String?,
2567
+ index_name: ::String?,
2568
+ vector_bucket_arn: ::String?
2569
+ }?,
2570
+ type: ("OPENSEARCH_SERVERLESS" | "PINECONE" | "REDIS_ENTERPRISE_CLOUD" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS" | "OPENSEARCH_MANAGED_CLUSTER" | "S3_VECTORS")
2559
2571
  }
2560
2572
  ) -> _UpdateKnowledgeBaseResponseSuccess
2561
2573
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateKnowledgeBaseResponseSuccess
data/sig/resource.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
data/sig/types.rbs CHANGED
@@ -102,6 +102,7 @@ module Aws::BedrockAgent
102
102
  attr_accessor agent_alias_name: ::String
103
103
  attr_accessor agent_alias_status: ("CREATING" | "PREPARED" | "FAILED" | "UPDATING" | "DELETING" | "DISSOCIATED")
104
104
  attr_accessor agent_id: ::String
105
+ attr_accessor alias_invocation_state: ("ACCEPT_INVOCATIONS" | "REJECT_INVOCATIONS")
105
106
  attr_accessor client_token: ::String
106
107
  attr_accessor created_at: ::Time
107
108
  attr_accessor description: ::String
@@ -128,6 +129,7 @@ module Aws::BedrockAgent
128
129
  attr_accessor agent_alias_id: ::String
129
130
  attr_accessor agent_alias_name: ::String
130
131
  attr_accessor agent_alias_status: ("CREATING" | "PREPARED" | "FAILED" | "UPDATING" | "DELETING" | "DISSOCIATED")
132
+ attr_accessor alias_invocation_state: ("ACCEPT_INVOCATIONS" | "REJECT_INVOCATIONS")
131
133
  attr_accessor created_at: ::Time
132
134
  attr_accessor description: ::String
133
135
  attr_accessor routing_configuration: ::Array[Types::AgentAliasRoutingConfigurationListItem]
@@ -2392,6 +2394,13 @@ module Aws::BedrockAgent
2392
2394
  SENSITIVE: []
2393
2395
  end
2394
2396
 
2397
+ class S3VectorsConfiguration
2398
+ attr_accessor index_arn: ::String
2399
+ attr_accessor index_name: ::String
2400
+ attr_accessor vector_bucket_arn: ::String
2401
+ SENSITIVE: [:index_arn, :index_name, :vector_bucket_arn]
2402
+ end
2403
+
2395
2404
  class SalesforceCrawlerConfiguration
2396
2405
  attr_accessor filter_configuration: Types::CrawlFilterConfiguration
2397
2406
  SENSITIVE: []
@@ -2502,7 +2511,8 @@ module Aws::BedrockAgent
2502
2511
  attr_accessor pinecone_configuration: Types::PineconeConfiguration
2503
2512
  attr_accessor rds_configuration: Types::RdsConfiguration
2504
2513
  attr_accessor redis_enterprise_cloud_configuration: Types::RedisEnterpriseCloudConfiguration
2505
- attr_accessor type: ("OPENSEARCH_SERVERLESS" | "PINECONE" | "REDIS_ENTERPRISE_CLOUD" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS" | "OPENSEARCH_MANAGED_CLUSTER")
2514
+ attr_accessor s3_vectors_configuration: Types::S3VectorsConfiguration
2515
+ attr_accessor type: ("OPENSEARCH_SERVERLESS" | "PINECONE" | "REDIS_ENTERPRISE_CLOUD" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS" | "OPENSEARCH_MANAGED_CLUSTER" | "S3_VECTORS")
2506
2516
  SENSITIVE: []
2507
2517
  end
2508
2518
 
@@ -2738,6 +2748,7 @@ module Aws::BedrockAgent
2738
2748
  attr_accessor agent_alias_id: ::String
2739
2749
  attr_accessor agent_alias_name: ::String
2740
2750
  attr_accessor agent_id: ::String
2751
+ attr_accessor alias_invocation_state: ("ACCEPT_INVOCATIONS" | "REJECT_INVOCATIONS")
2741
2752
  attr_accessor description: ::String
2742
2753
  attr_accessor routing_configuration: ::Array[Types::AgentAliasRoutingConfigurationListItem]
2743
2754
  SENSITIVE: []
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-bedrockagent
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.57.0
4
+ version: 1.61.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.216.0
21
+ version: 3.228.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.216.0
31
+ version: 3.228.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement
@@ -83,7 +83,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
83
83
  requirements:
84
84
  - - ">="
85
85
  - !ruby/object:Gem::Version
86
- version: '2.5'
86
+ version: '2.7'
87
87
  required_rubygems_version: !ruby/object:Gem::Requirement
88
88
  requirements:
89
89
  - - ">="