aws-sdk-bedrock 1.48.0 → 1.49.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: 9da64c73d6ab8ebf236ca72e8aa3ee6a7a805e6cc2addef982fd87c8ea77f4cb
4
- data.tar.gz: ee4d1fccf514c505f9177083aa8ca5ca656ab81d61436424bd58cf010f0dd72d
3
+ metadata.gz: d7b6ec3426343d251fbf8350973c9da8e1faa52a7e19ce001034a27c175da5a3
4
+ data.tar.gz: 4e2eb677fb8feed5cdecf95c684e89ac7c9992c00efab0262cb0516b61be0e5b
5
5
  SHA512:
6
- metadata.gz: 407f20598a71f3387d202b6228533da520bdc194613c0328e7363ba114514ce247d7eecccc68e678aded86120517fd7c945dac11fd74711f1143b2aab9ea4744
7
- data.tar.gz: e169084a99d77fe1af399b808d2a61a70296b7544b954d14734756a34db00c273aeafd1fa768003e59d66ad0332a010562f8254741f1549045ea06ae006f112a
6
+ metadata.gz: 88caf502af89364b828bc8ac07f70e842db21b81d8973f7ac874857ea70963d16b7440897b25677bb19bdb7053a8bf1d5f7a4850099336922c3a8c417054f668
7
+ data.tar.gz: 728112c087dd09b1c0bbd2283db6a70523a64f4d377273af0d46ecfd5277473add0a4e34ff3405e7a5c8e566cb675c2cfeeaeecdb377869af08b901c4d1cde72
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.49.0 (2025-06-17)
5
+ ------------------
6
+
7
+ * Feature - This release of the SDK has the API and documentation for the createcustommodel API. This feature lets you copy a trained model into Amazon Bedrock for inference.
8
+
4
9
  1.48.0 (2025-06-16)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.48.0
1
+ 1.49.0
@@ -537,10 +537,8 @@ module Aws::Bedrock
537
537
  req.send_request(options)
538
538
  end
539
539
 
540
- # Creates a new custom model in Amazon Bedrock from an existing
541
- # SageMaker AI-trained Amazon Nova model stored in an Amazon-managed
542
- # Amazon S3 bucket. After the model is active, you can use it for
543
- # inference.
540
+ # Creates a new custom model in Amazon Bedrock. After the model is
541
+ # active, you can use it for inference.
544
542
  #
545
543
  # To use the model for inference, you must purchase Provisioned
546
544
  # Throughput for it. You can't use On-demand inference with these
@@ -558,32 +556,20 @@ module Aws::Bedrock
558
556
  #
559
557
  # * `Failed` - Creation process encountered an error
560
558
  #
561
- # For more information about creating custom models, including specific
562
- # model requirements, see [Import a SageMaker AI-trained Amazon Nova
563
- # model][2] in the Amazon Bedrock User Guide.
564
- #
565
- # <note markdown="1"> You use the `CreateCustomModel` API to import only SageMaker
566
- # AI-trained Amazon Nova models. To import open-source models, you use
567
- # the [CreateModelImportJob][3].
568
- #
569
- # </note>
570
- #
571
559
  # **Related APIs**
572
560
  #
573
- # * [GetCustomModel][4]
561
+ # * [GetCustomModel][2]
574
562
  #
575
- # * [ListCustomModels][5]
563
+ # * [ListCustomModels][3]
576
564
  #
577
- # * [DeleteCustomModel][6]
565
+ # * [DeleteCustomModel][4]
578
566
  #
579
567
  #
580
568
  #
581
569
  # [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/prov-throughput.html
582
- # [2]: https://docs.aws.amazon.com/bedrock/latest/userguide/create-custom-model-from-existing.html
583
- # [3]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_CreateModelImportJob.html
584
- # [4]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_GetCustomModel.html
585
- # [5]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_ListCustomModels.html
586
- # [6]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_DeleteCustomModel.html
570
+ # [2]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_GetCustomModel.html
571
+ # [3]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_ListCustomModels.html
572
+ # [4]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_DeleteCustomModel.html
587
573
  #
588
574
  # @option params [required, String] :model_name
589
575
  # A unique name for the custom model.
@@ -591,8 +577,7 @@ module Aws::Bedrock
591
577
  # @option params [required, Types::ModelDataSource] :model_source_config
592
578
  # The data source for the model. The Amazon S3 URI in the model source
593
579
  # must be for the Amazon-managed Amazon S3 bucket containing your model
594
- # artifacts. SageMaker AI creates this bucket when you run your first
595
- # SageMaker AI training job.
580
+ # artifacts.
596
581
  #
597
582
  # @option params [String] :model_kms_key_arn
598
583
  # The Amazon Resource Name (ARN) of the customer managed KMS key to
@@ -5180,7 +5165,7 @@ module Aws::Bedrock
5180
5165
  tracer: tracer
5181
5166
  )
5182
5167
  context[:gem_name] = 'aws-sdk-bedrock'
5183
- context[:gem_version] = '1.48.0'
5168
+ context[:gem_version] = '1.49.0'
5184
5169
  Seahorse::Client::Request.new(handlers, context)
5185
5170
  end
5186
5171
 
@@ -271,8 +271,7 @@ module Aws::Bedrock
271
271
  # @!attribute [rw] model_source_config
272
272
  # The data source for the model. The Amazon S3 URI in the model source
273
273
  # must be for the Amazon-managed Amazon S3 bucket containing your
274
- # model artifacts. SageMaker AI creates this bucket when you run your
275
- # first SageMaker AI training job.
274
+ # model artifacts.
276
275
  # @return [Types::ModelDataSource]
277
276
  #
278
277
  # @!attribute [rw] model_kms_key_arn
@@ -7874,15 +7873,7 @@ module Aws::Bedrock
7874
7873
  include Aws::Structure
7875
7874
  end
7876
7875
 
7877
- # The Amazon S3 data source of the model to import. For the
7878
- # [CreateCustomModel][1] API operation, you must specify the Amazon S3
7879
- # URI for the Amazon-managed Amazon S3 bucket containing your model
7880
- # artifacts. SageMaker AI creates this bucket when you run your first
7881
- # SageMaker AI training job.
7882
- #
7883
- #
7884
- #
7885
- # [1]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_CreateCustomModel.html
7876
+ # The Amazon S3 data source of the model to import.
7886
7877
  #
7887
7878
  # @!attribute [rw] s3_uri
7888
7879
  # The URI of the Amazon S3 data source.
@@ -55,7 +55,7 @@ module Aws::Bedrock
55
55
  autoload :EndpointProvider, 'aws-sdk-bedrock/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-bedrock/endpoints'
57
57
 
58
- GEM_VERSION = '1.48.0'
58
+ GEM_VERSION = '1.49.0'
59
59
 
60
60
  end
61
61
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-bedrock
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.48.0
4
+ version: 1.49.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services