aws-sdk-personalize 1.57.0 → 1.58.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: 497ec8ab9d141f4d66a35ea8f66994b1ec0db37e5ff480febc5a4d8ffb75ffaf
4
- data.tar.gz: d0d7c01a94947ac6a74f0205a6e4fe96e9b9e4405c27a56abc404ab9689a49d5
3
+ metadata.gz: 82a28ded422b26b351ac757bcc13b35a07fca90729383fdee834fc3661cdb255
4
+ data.tar.gz: 9c8df332bb533e8ff4dd4b7238bef450d39d62f713de52c3b5cb5b90cf98ce74
5
5
  SHA512:
6
- metadata.gz: 196eafeab48df267c053ec31ef8dc88f730a677b6f74ed9c765f22fc9bee81b525574ad283c794ee93b336a0a18fa89d2e7abc0b076e69c69c2dc52b16ea6265
7
- data.tar.gz: 8d6d7b8423c0de6f5365ff03898db20795f7c23bf8e0d332a9da908e4ed3cfeb8ba3a920078dc459cff708f3ae0d8fc7c3637ff9f3d594bb02cb83fad96ca01a
6
+ metadata.gz: 6456b657658f8526d5e6fea81dd61eb36fdb0d72c158dbd2a8a207210c208ea065b1c8ab1bdc0df9991cfbe5c1aca6daba8bd7b0c96ae955364f791653aa9a56
7
+ data.tar.gz: fbe1676b4a6375b64eeaa0eac6cc2b2aedda5d4b250c6514da18fb8109db9e0948570194b5d39975c91e2d5ce5293e4dbe056b44e60dfd8c1b70ee5efb193296
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.58.0 (2024-01-16)
5
+ ------------------
6
+
7
+ * Feature - Documentation updates for Amazon Personalize.
8
+
4
9
  1.57.0 (2023-11-28)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.57.0
1
+ 1.58.0
@@ -644,28 +644,34 @@ module Aws::Personalize
644
644
  #
645
645
  # **Minimum Provisioned TPS and Auto-Scaling**
646
646
  #
647
- # A high `minProvisionedTPS` will increase your bill. We recommend
647
+ # A high `minProvisionedTPS` will increase your cost. We recommend
648
648
  # starting with 1 for `minProvisionedTPS` (the default). Track your
649
649
  # usage using Amazon CloudWatch metrics, and increase the
650
650
  # `minProvisionedTPS` as necessary.
651
651
  #
652
- # A transaction is a single `GetRecommendations` or
653
- # `GetPersonalizedRanking` call. Transactions per second (TPS) is the
654
- # throughput and unit of billing for Amazon Personalize. The minimum
655
- # provisioned TPS (`minProvisionedTPS`) specifies the baseline
656
- # throughput provisioned by Amazon Personalize, and thus, the minimum
657
- # billing charge.
658
- #
659
- # If your TPS increases beyond `minProvisionedTPS`, Amazon Personalize
660
- # auto-scales the provisioned capacity up and down, but never below
661
- # `minProvisionedTPS`. There's a short time delay while the capacity is
662
- # increased that might cause loss of transactions.
652
+ # When you create an Amazon Personalize campaign, you can specify the
653
+ # minimum provisioned transactions per second (`minProvisionedTPS`) for
654
+ # the campaign. This is the baseline transaction throughput for the
655
+ # campaign provisioned by Amazon Personalize. It sets the minimum
656
+ # billing charge for the campaign while it is active. A transaction is a
657
+ # single `GetRecommendations` or `GetPersonalizedRanking` request. The
658
+ # default `minProvisionedTPS` is 1.
659
+ #
660
+ # If your TPS increases beyond the `minProvisionedTPS`, Amazon
661
+ # Personalize auto-scales the provisioned capacity up and down, but
662
+ # never below `minProvisionedTPS`. There's a short time delay while the
663
+ # capacity is increased that might cause loss of transactions. When your
664
+ # traffic reduces, capacity returns to the `minProvisionedTPS`.
665
+ #
666
+ # You are charged for the the minimum provisioned TPS or, if your
667
+ # requests exceed the `minProvisionedTPS`, the actual TPS. The actual
668
+ # TPS is the total number of recommendation requests you make. We
669
+ # recommend starting with a low `minProvisionedTPS`, track your usage
670
+ # using Amazon CloudWatch metrics, and then increase the
671
+ # `minProvisionedTPS` as necessary.
663
672
  #
664
- # The actual TPS used is calculated as the average requests/second
665
- # within a 5-minute window. You pay for maximum of either the minimum
666
- # provisioned TPS or the actual TPS. We recommend starting with a low
667
- # `minProvisionedTPS`, track your usage using Amazon CloudWatch metrics,
668
- # and then increase the `minProvisionedTPS` as necessary.
673
+ # For more information about campaign costs, see [Amazon Personalize
674
+ # pricing][3].
669
675
  #
670
676
  # **Status**
671
677
  #
@@ -676,7 +682,7 @@ module Aws::Personalize
676
682
  #
677
683
  # * DELETE PENDING > DELETE IN\_PROGRESS
678
684
  #
679
- # To get the campaign status, call [DescribeCampaign][3].
685
+ # To get the campaign status, call [DescribeCampaign][4].
680
686
  #
681
687
  # <note markdown="1"> Wait until the `status` of the campaign is `ACTIVE` before asking the
682
688
  # campaign for recommendations.
@@ -685,22 +691,23 @@ module Aws::Personalize
685
691
  #
686
692
  # **Related APIs**
687
693
  #
688
- # * [ListCampaigns][4]
694
+ # * [ListCampaigns][5]
689
695
  #
690
- # * [DescribeCampaign][3]
696
+ # * [DescribeCampaign][4]
691
697
  #
692
- # * [UpdateCampaign][5]
698
+ # * [UpdateCampaign][6]
693
699
  #
694
- # * [DeleteCampaign][6]
700
+ # * [DeleteCampaign][7]
695
701
  #
696
702
  #
697
703
  #
698
704
  # [1]: https://docs.aws.amazon.com/personalize/latest/dg/API_RS_GetRecommendations.html
699
705
  # [2]: https://docs.aws.amazon.com/personalize/latest/dg/API_RS_GetPersonalizedRanking.html
700
- # [3]: https://docs.aws.amazon.com/personalize/latest/dg/API_DescribeCampaign.html
701
- # [4]: https://docs.aws.amazon.com/personalize/latest/dg/API_ListCampaigns.html
702
- # [5]: https://docs.aws.amazon.com/personalize/latest/dg/API_UpdateCampaign.html
703
- # [6]: https://docs.aws.amazon.com/personalize/latest/dg/API_DeleteCampaign.html
706
+ # [3]: https://aws.amazon.com/personalize/pricing/
707
+ # [4]: https://docs.aws.amazon.com/personalize/latest/dg/API_DescribeCampaign.html
708
+ # [5]: https://docs.aws.amazon.com/personalize/latest/dg/API_ListCampaigns.html
709
+ # [6]: https://docs.aws.amazon.com/personalize/latest/dg/API_UpdateCampaign.html
710
+ # [7]: https://docs.aws.amazon.com/personalize/latest/dg/API_DeleteCampaign.html
704
711
  #
705
712
  # @option params [required, String] :name
706
713
  # A name for the new campaign. The campaign name must be unique within
@@ -1721,7 +1728,7 @@ module Aws::Personalize
1721
1728
  # @option params [Boolean] :perform_auto_ml
1722
1729
  # We don't recommend enabling automated machine learning. Instead,
1723
1730
  # match your use case to the available Amazon Personalize recipes. For
1724
- # more information, see [Determining your use case.][1]
1731
+ # more information, see [Choosing a recipe][1].
1725
1732
  #
1726
1733
  # Whether to perform automated machine learning (AutoML). The default is
1727
1734
  # `false`. For this case, you must specify `recipeArn`.
@@ -1735,11 +1742,17 @@ module Aws::Personalize
1735
1742
  #
1736
1743
  #
1737
1744
  #
1738
- # [1]: https://docs.aws.amazon.com/personalize/latest/dg/determining-use-case.html
1745
+ # [1]: https://docs.aws.amazon.com/personalize/latest/dg/working-with-predefined-recipes.html
1739
1746
  #
1740
1747
  # @option params [String] :recipe_arn
1741
- # The ARN of the recipe to use for model training. This is required when
1742
- # `performAutoML` is false.
1748
+ # The Amazon Resource Name (ARN) of the recipe to use for model
1749
+ # training. This is required when `performAutoML` is false. For
1750
+ # information about different Amazon Personalize recipes and their ARNs,
1751
+ # see [Choosing a recipe][1].
1752
+ #
1753
+ #
1754
+ #
1755
+ # [1]: https://docs.aws.amazon.com/personalize/latest/dg/working-with-predefined-recipes.html
1743
1756
  #
1744
1757
  # @option params [required, String] :dataset_group_arn
1745
1758
  # The Amazon Resource Name (ARN) of the dataset group that provides the
@@ -4397,7 +4410,7 @@ module Aws::Personalize
4397
4410
  params: params,
4398
4411
  config: config)
4399
4412
  context[:gem_name] = 'aws-sdk-personalize'
4400
- context[:gem_version] = '1.57.0'
4413
+ context[:gem_version] = '1.58.0'
4401
4414
  Seahorse::Client::Request.new(handlers, context)
4402
4415
  end
4403
4416
 
@@ -630,14 +630,17 @@ module Aws::Personalize
630
630
  # Whether metadata with recommendations is enabled for the campaign.
631
631
  # If enabled, you can specify the columns from your Items dataset in
632
632
  # your request for recommendations. Amazon Personalize returns this
633
- # data for each item in the recommendation response.
633
+ # data for each item in the recommendation response. For information
634
+ # about enabling metadata for a campaign, see [Enabling metadata in
635
+ # recommendations for a campaign][1].
634
636
  #
635
637
  # If you enable metadata in recommendations, you will incur additional
636
- # costs. For more information, see [Amazon Personalize pricing][1].
638
+ # costs. For more information, see [Amazon Personalize pricing][2].
637
639
  #
638
640
  #
639
641
  #
640
- # [1]: https://aws.amazon.com/personalize/pricing/
642
+ # [1]: https://docs.aws.amazon.com/personalize/latest/dg/campaigns.html#create-campaign-return-metadata
643
+ # [2]: https://aws.amazon.com/personalize/pricing/
641
644
  # @return [Boolean]
642
645
  #
643
646
  # @see http://docs.aws.amazon.com/goto/WebAPI/personalize-2018-05-22/CampaignConfig AWS API Documentation
@@ -1534,7 +1537,7 @@ module Aws::Personalize
1534
1537
  # @!attribute [rw] perform_auto_ml
1535
1538
  # We don't recommend enabling automated machine learning. Instead,
1536
1539
  # match your use case to the available Amazon Personalize recipes. For
1537
- # more information, see [Determining your use case.][1]
1540
+ # more information, see [Choosing a recipe][1].
1538
1541
  #
1539
1542
  # Whether to perform automated machine learning (AutoML). The default
1540
1543
  # is `false`. For this case, you must specify `recipeArn`.
@@ -1548,12 +1551,18 @@ module Aws::Personalize
1548
1551
  #
1549
1552
  #
1550
1553
  #
1551
- # [1]: https://docs.aws.amazon.com/personalize/latest/dg/determining-use-case.html
1554
+ # [1]: https://docs.aws.amazon.com/personalize/latest/dg/working-with-predefined-recipes.html
1552
1555
  # @return [Boolean]
1553
1556
  #
1554
1557
  # @!attribute [rw] recipe_arn
1555
- # The ARN of the recipe to use for model training. This is required
1556
- # when `performAutoML` is false.
1558
+ # The Amazon Resource Name (ARN) of the recipe to use for model
1559
+ # training. This is required when `performAutoML` is false. For
1560
+ # information about different Amazon Personalize recipes and their
1561
+ # ARNs, see [Choosing a recipe][1].
1562
+ #
1563
+ #
1564
+ #
1565
+ # [1]: https://docs.aws.amazon.com/personalize/latest/dg/working-with-predefined-recipes.html
1557
1566
  # @return [String]
1558
1567
  #
1559
1568
  # @!attribute [rw] dataset_group_arn
@@ -4645,14 +4654,17 @@ module Aws::Personalize
4645
4654
  # Whether metadata with recommendations is enabled for the
4646
4655
  # recommender. If enabled, you can specify the columns from your Items
4647
4656
  # dataset in your request for recommendations. Amazon Personalize
4648
- # returns this data for each item in the recommendation response.
4657
+ # returns this data for each item in the recommendation response. For
4658
+ # information about enabling metadata for a recommender, see [Enabling
4659
+ # metadata in recommendations for a recommender][1].
4649
4660
  #
4650
4661
  # If you enable metadata in recommendations, you will incur additional
4651
- # costs. For more information, see [Amazon Personalize pricing][1].
4662
+ # costs. For more information, see [Amazon Personalize pricing][2].
4652
4663
  #
4653
4664
  #
4654
4665
  #
4655
- # [1]: https://aws.amazon.com/personalize/pricing/
4666
+ # [1]: https://docs.aws.amazon.com/personalize/latest/dg/creating-recommenders.html#create-recommender-return-metadata
4667
+ # [2]: https://aws.amazon.com/personalize/pricing/
4656
4668
  # @return [Boolean]
4657
4669
  #
4658
4670
  # @see http://docs.aws.amazon.com/goto/WebAPI/personalize-2018-05-22/RecommenderConfig AWS API Documentation
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-personalize/customizations'
52
52
  # @!group service
53
53
  module Aws::Personalize
54
54
 
55
- GEM_VERSION = '1.57.0'
55
+ GEM_VERSION = '1.58.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-personalize
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.57.0
4
+ version: 1.58.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-28 00:00:00.000000000 Z
11
+ date: 2024-01-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -72,7 +72,7 @@ licenses:
72
72
  metadata:
73
73
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-personalize
74
74
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-personalize/CHANGELOG.md
75
- post_install_message:
75
+ post_install_message:
76
76
  rdoc_options: []
77
77
  require_paths:
78
78
  - lib
@@ -87,8 +87,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
87
  - !ruby/object:Gem::Version
88
88
  version: '0'
89
89
  requirements: []
90
- rubygems_version: 3.1.6
91
- signing_key:
90
+ rubygems_version: 3.4.10
91
+ signing_key:
92
92
  specification_version: 4
93
93
  summary: AWS SDK for Ruby - Amazon Personalize
94
94
  test_files: []