aws-sdk-personalize 1.56.0 → 1.58.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c7daeac7194e519e51c19b3c071131c0b6fe08345bc89c14598ff66c59133311
4
- data.tar.gz: 3b5d14a30c53697c62bd7fcf5225b3618a16e0177f4fa956bd4e51824815fdd6
3
+ metadata.gz: 82a28ded422b26b351ac757bcc13b35a07fca90729383fdee834fc3661cdb255
4
+ data.tar.gz: 9c8df332bb533e8ff4dd4b7238bef450d39d62f713de52c3b5cb5b90cf98ce74
5
5
  SHA512:
6
- metadata.gz: 8249caaeae22b0da592a66919f33953809851d6109bb16579caf462d0ffac907c0399740b4676e477ae022ba8c2ee60382c471947a53941799dc0776f4d8d74f
7
- data.tar.gz: f29fcdaea018ee05cceb6ce38147a78802af59bbbf22387fc97b9c449cd4697f28bdef7a0f720d39c05b0e16210604c39396a6010e3e04223f05dc31a2160bd4
6
+ metadata.gz: 6456b657658f8526d5e6fea81dd61eb36fdb0d72c158dbd2a8a207210c208ea065b1c8ab1bdc0df9991cfbe5c1aca6daba8bd7b0c96ae955364f791653aa9a56
7
+ data.tar.gz: fbe1676b4a6375b64eeaa0eac6cc2b2aedda5d4b250c6514da18fb8109db9e0948570194b5d39975c91e2d5ce5293e4dbe056b44e60dfd8c1b70ee5efb193296
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.57.0 (2023-11-28)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.56.0 (2023-11-27)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.56.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.56.0'
4413
+ context[:gem_version] = '1.58.0'
4401
4414
  Seahorse::Client::Request.new(handlers, context)
4402
4415
  end
4403
4416
 
@@ -25,16 +25,17 @@ module Aws::Personalize
25
25
  # @api private
26
26
  class Handler < Seahorse::Client::Handler
27
27
  def call(context)
28
- # If endpoint was discovered, do not resolve or apply the endpoint.
29
28
  unless context[:discovered_endpoint]
30
29
  params = parameters_for_operation(context)
31
30
  endpoint = context.config.endpoint_provider.resolve_endpoint(params)
32
31
 
33
32
  context.http_request.endpoint = endpoint.url
34
33
  apply_endpoint_headers(context, endpoint.headers)
34
+
35
+ context[:endpoint_params] = params
36
+ context[:endpoint_properties] = endpoint.properties
35
37
  end
36
38
 
37
- context[:endpoint_params] = params
38
39
  context[:auth_scheme] =
39
40
  Aws::Endpoints.resolve_auth_scheme(context, endpoint)
40
41
 
@@ -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.56.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.56.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-27 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: []