aws-sdk-sagemaker 1.241.0 → 1.243.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.
@@ -1707,44 +1707,63 @@ module Aws::SageMaker
1707
1707
  include Aws::Structure
1708
1708
  end
1709
1709
 
1710
- # The collection of algorithms run on a dataset for training the model
1711
- # candidates of an Autopilot job.
1710
+ # The selection of algorithms trained on your dataset to generate the
1711
+ # model candidates for an Autopilot job.
1712
1712
  #
1713
1713
  # @!attribute [rw] auto_ml_algorithms
1714
- # The selection of algorithms run on a dataset to train the model
1715
- # candidates of an Autopilot job.
1714
+ # The selection of algorithms trained on your dataset to generate the
1715
+ # model candidates for an Autopilot job.
1716
1716
  #
1717
- # <note markdown="1"> Selected algorithms must belong to the list corresponding to the
1718
- # training mode set in [AutoMLJobConfig.Mode][1] (`ENSEMBLING` or
1719
- # `HYPERPARAMETER_TUNING`). Choose a minimum of 1 algorithm.
1717
+ # * **For the tabular problem type `TabularJobConfig`:**
1720
1718
  #
1721
- # </note>
1719
+ # <note markdown="1"> Selected algorithms must belong to the list corresponding to the
1720
+ # training mode set in [AutoMLJobConfig.Mode][1] (`ENSEMBLING` or
1721
+ # `HYPERPARAMETER_TUNING`). Choose a minimum of 1 algorithm.
1722
+ #
1723
+ # </note>
1724
+ #
1725
+ # * In `ENSEMBLING` mode:
1726
+ #
1727
+ # * "catboost"
1728
+ #
1729
+ # * "extra-trees"
1722
1730
  #
1723
- # * In `ENSEMBLING` mode:
1731
+ # * "fastai"
1724
1732
  #
1725
- # * "catboost"
1733
+ # * "lightgbm"
1726
1734
  #
1727
- # * "extra-trees"
1735
+ # * "linear-learner"
1728
1736
  #
1729
- # * "fastai"
1737
+ # * "nn-torch"
1730
1738
  #
1731
- # * "lightgbm"
1739
+ # * "randomforest"
1732
1740
  #
1733
- # * "linear-learner"
1741
+ # * "xgboost"
1734
1742
  #
1735
- # * "nn-torch"
1743
+ # * In `HYPERPARAMETER_TUNING` mode:
1736
1744
  #
1737
- # * "randomforest"
1745
+ # * "linear-learner"
1738
1746
  #
1739
- # * "xgboost"
1747
+ # * "mlp"
1740
1748
  #
1741
- # * In `HYPERPARAMETER_TUNING` mode:
1749
+ # * "xgboost"
1742
1750
  #
1743
- # * "linear-learner"
1751
+ # * **For the time-series forecasting problem type
1752
+ # `TimeSeriesForecastingJobConfig`:**
1744
1753
  #
1745
- # * "mlp"
1754
+ # * Choose your algorithms from this list.
1746
1755
  #
1747
- # * "xgboost"
1756
+ # * "cnn-qr"
1757
+ #
1758
+ # * "deepar"
1759
+ #
1760
+ # * "prophet"
1761
+ #
1762
+ # * "arima"
1763
+ #
1764
+ # * "npts"
1765
+ #
1766
+ # * "ets"
1748
1767
  #
1749
1768
  #
1750
1769
  #
@@ -1874,33 +1893,34 @@ module Aws::SageMaker
1874
1893
  #
1875
1894
  # @!attribute [rw] algorithms_config
1876
1895
  # Stores the configuration information for the selection of algorithms
1877
- # used to train the model candidates.
1896
+ # trained on tabular data.
1878
1897
  #
1879
1898
  # The list of available algorithms to choose from depends on the
1880
- # training mode set in [ `AutoMLJobConfig.Mode` ][1].
1899
+ # training mode set in [ `TabularJobConfig.Mode` ][1].
1881
1900
  #
1882
- # * `AlgorithmsConfig` should not be set in `AUTO` training mode.
1901
+ # * `AlgorithmsConfig` should not be set if the training mode is set
1902
+ # on `AUTO`.
1883
1903
  #
1884
1904
  # * When `AlgorithmsConfig` is provided, one `AutoMLAlgorithms`
1885
1905
  # attribute must be set and one only.
1886
1906
  #
1887
1907
  # If the list of algorithms provided as values for
1888
- # `AutoMLAlgorithms` is empty, `AutoMLCandidateGenerationConfig`
1889
- # uses the full set of algorithms for the given training mode.
1908
+ # `AutoMLAlgorithms` is empty, `CandidateGenerationConfig` uses the
1909
+ # full set of algorithms for the given training mode.
1890
1910
  #
1891
1911
  # * When `AlgorithmsConfig` is not provided,
1892
- # `AutoMLCandidateGenerationConfig` uses the full set of algorithms
1893
- # for the given training mode.
1912
+ # `CandidateGenerationConfig` uses the full set of algorithms for
1913
+ # the given training mode.
1894
1914
  #
1895
- # For the list of all algorithms per training mode, see [
1896
- # AutoMLAlgorithmConfig][2].
1915
+ # For the list of all algorithms per problem type and training mode,
1916
+ # see [ AutoMLAlgorithmConfig][2].
1897
1917
  #
1898
1918
  # For more information on each algorithm, see the [Algorithm
1899
1919
  # support][3] section in Autopilot developer guide.
1900
1920
  #
1901
1921
  #
1902
1922
  #
1903
- # [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_AutoMLJobConfig.html
1923
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_TabularJobConfig.html
1904
1924
  # [2]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_AutoMLAlgorithmConfig.html
1905
1925
  # [3]: https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-model-support-validation.html#autopilot-algorithm-support
1906
1926
  # @return [Array<Types::AutoMLAlgorithmConfig>]
@@ -3153,36 +3173,63 @@ module Aws::SageMaker
3153
3173
  # generated using an AutoML job V2.
3154
3174
  #
3155
3175
  # @!attribute [rw] algorithms_config
3156
- # Stores the configuration information for the selection of algorithms
3157
- # used to train model candidates on tabular data.
3176
+ # Your Autopilot job trains a default set of algorithms on your
3177
+ # dataset. For tabular and time-series data, you can customize the
3178
+ # algorithm list by selecting a subset of algorithms for your problem
3179
+ # type.
3158
3180
  #
3159
- # The list of available algorithms to choose from depends on the
3160
- # training mode set in [ `TabularJobConfig.Mode` ][1].
3181
+ # `AlgorithmsConfig` stores the customized selection of algorithms to
3182
+ # train on your data.
3161
3183
  #
3162
- # * `AlgorithmsConfig` should not be set in `AUTO` training mode.
3184
+ # * **For the tabular problem type `TabularJobConfig`,** the list of
3185
+ # available algorithms to choose from depends on the training mode
3186
+ # set in [ `AutoMLJobConfig.Mode` ][1].
3163
3187
  #
3164
- # * When `AlgorithmsConfig` is provided, one `AutoMLAlgorithms`
3165
- # attribute must be set and one only.
3188
+ # * `AlgorithmsConfig` should not be set when the training mode
3189
+ # `AutoMLJobConfig.Mode` is set to `AUTO`.
3166
3190
  #
3167
- # If the list of algorithms provided as values for
3168
- # `AutoMLAlgorithms` is empty, `CandidateGenerationConfig` uses the
3169
- # full set of algorithms for the given training mode.
3191
+ # * When `AlgorithmsConfig` is provided, one `AutoMLAlgorithms`
3192
+ # attribute must be set and one only.
3170
3193
  #
3171
- # * When `AlgorithmsConfig` is not provided,
3172
- # `CandidateGenerationConfig` uses the full set of algorithms for
3173
- # the given training mode.
3194
+ # If the list of algorithms provided as values for
3195
+ # `AutoMLAlgorithms` is empty, `CandidateGenerationConfig` uses
3196
+ # the full set of algorithms for the given training mode.
3174
3197
  #
3175
- # For the list of all algorithms per problem type and training mode,
3176
- # see [ AutoMLAlgorithmConfig][2].
3198
+ # * When `AlgorithmsConfig` is not provided,
3199
+ # `CandidateGenerationConfig` uses the full set of algorithms for
3200
+ # the given training mode.
3177
3201
  #
3178
- # For more information on each algorithm, see the [Algorithm
3179
- # support][3] section in Autopilot developer guide.
3202
+ # For the list of all algorithms per training mode, see [
3203
+ # AlgorithmConfig][2].
3180
3204
  #
3205
+ # For more information on each algorithm, see the [Algorithm
3206
+ # support][3] section in the Autopilot developer guide.
3181
3207
  #
3208
+ # * **For the time-series forecasting problem type
3209
+ # `TimeSeriesForecastingJobConfig`,** choose your algorithms from
3210
+ # the list provided in [ AlgorithmConfig][2].
3182
3211
  #
3183
- # [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_TabularJobConfig.html
3212
+ # For more information on each algorithm, see the [Algorithms
3213
+ # support for time-series forecasting][4] section in the Autopilot
3214
+ # developer guide.
3215
+ #
3216
+ # * When `AlgorithmsConfig` is provided, one `AutoMLAlgorithms`
3217
+ # attribute must be set and one only.
3218
+ #
3219
+ # If the list of algorithms provided as values for
3220
+ # `AutoMLAlgorithms` is empty, `CandidateGenerationConfig` uses
3221
+ # the full set of algorithms for time-series forecasting.
3222
+ #
3223
+ # * When `AlgorithmsConfig` is not provided,
3224
+ # `CandidateGenerationConfig` uses the full set of algorithms for
3225
+ # time-series forecasting.
3226
+ #
3227
+ #
3228
+ #
3229
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_AutoMLJobConfig.html
3184
3230
  # [2]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_AutoMLAlgorithmConfig.html
3185
3231
  # [3]: https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-model-support-validation.html#autopilot-algorithm-support
3232
+ # [4]: https://docs.aws.amazon.com/sagemaker/latest/dg/timeseries-forecasting-algorithms.html
3186
3233
  # @return [Array<Types::AutoMLAlgorithmConfig>]
3187
3234
  #
3188
3235
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CandidateGenerationConfig AWS API Documentation
@@ -7967,6 +8014,26 @@ module Aws::SageMaker
7967
8014
  # (ARN). If you want to register a model, set it to the model ARN.
7968
8015
  # @return [String]
7969
8016
  #
8017
+ # @!attribute [rw] security_config
8018
+ # The KMS Key ID (`KMSKeyId`) used for encryption of model package
8019
+ # information.
8020
+ # @return [Types::ModelPackageSecurityConfig]
8021
+ #
8022
+ # @!attribute [rw] model_card
8023
+ # The model card associated with the model package. Since
8024
+ # `ModelPackageModelCard` is tied to a model package, it is a specific
8025
+ # usage of a model card and its schema is simplified compared to the
8026
+ # schema of `ModelCard`. The `ModelPackageModelCard` schema does not
8027
+ # include `model_package_details`, and `model_overview` is composed of
8028
+ # the `model_creator` and `model_artifact` properties. For more
8029
+ # information about the model card associated with the model package,
8030
+ # see [View the Details of a Model Version][1].
8031
+ #
8032
+ #
8033
+ #
8034
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
8035
+ # @return [Types::ModelPackageModelCard]
8036
+ #
7970
8037
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateModelPackageInput AWS API Documentation
7971
8038
  #
7972
8039
  class CreateModelPackageInput < Struct.new(
@@ -7989,7 +8056,9 @@ module Aws::SageMaker
7989
8056
  :drift_check_baselines,
7990
8057
  :additional_inference_specifications,
7991
8058
  :skip_model_validation,
7992
- :source_uri)
8059
+ :source_uri,
8060
+ :security_config,
8061
+ :model_card)
7993
8062
  SENSITIVE = []
7994
8063
  include Aws::Structure
7995
8064
  end
@@ -9574,6 +9643,13 @@ module Aws::SageMaker
9574
9643
  # work items.
9575
9644
  # @return [Types::NotificationConfiguration]
9576
9645
  #
9646
+ # @!attribute [rw] worker_access_configuration
9647
+ # Use this optional parameter to constrain access to an Amazon S3
9648
+ # resource based on the IP address using supported IAM global
9649
+ # condition keys. The Amazon S3 resource is accessed in the worker
9650
+ # portal using a Amazon S3 presigned URL.
9651
+ # @return [Types::WorkerAccessConfiguration]
9652
+ #
9577
9653
  # @!attribute [rw] tags
9578
9654
  # An array of key-value pairs.
9579
9655
  #
@@ -9595,6 +9671,7 @@ module Aws::SageMaker
9595
9671
  :member_definitions,
9596
9672
  :description,
9597
9673
  :notification_configuration,
9674
+ :worker_access_configuration,
9598
9675
  :tags)
9599
9676
  SENSITIVE = []
9600
9677
  include Aws::Structure
@@ -15372,6 +15449,26 @@ module Aws::SageMaker
15372
15449
  # The URI of the source for the model package.
15373
15450
  # @return [String]
15374
15451
  #
15452
+ # @!attribute [rw] security_config
15453
+ # The KMS Key ID (`KMSKeyId`) used for encryption of model package
15454
+ # information.
15455
+ # @return [Types::ModelPackageSecurityConfig]
15456
+ #
15457
+ # @!attribute [rw] model_card
15458
+ # The model card associated with the model package. Since
15459
+ # `ModelPackageModelCard` is tied to a model package, it is a specific
15460
+ # usage of a model card and its schema is simplified compared to the
15461
+ # schema of `ModelCard`. The `ModelPackageModelCard` schema does not
15462
+ # include `model_package_details`, and `model_overview` is composed of
15463
+ # the `model_creator` and `model_artifact` properties. For more
15464
+ # information about the model card associated with the model package,
15465
+ # see [View the Details of a Model Version][1].
15466
+ #
15467
+ #
15468
+ #
15469
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
15470
+ # @return [Types::ModelPackageModelCard]
15471
+ #
15375
15472
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelPackageOutput AWS API Documentation
15376
15473
  #
15377
15474
  class DescribeModelPackageOutput < Struct.new(
@@ -15401,7 +15498,9 @@ module Aws::SageMaker
15401
15498
  :drift_check_baselines,
15402
15499
  :additional_inference_specifications,
15403
15500
  :skip_model_validation,
15404
- :source_uri)
15501
+ :source_uri,
15502
+ :security_config,
15503
+ :model_card)
15405
15504
  SENSITIVE = []
15406
15505
  include Aws::Structure
15407
15506
  end
@@ -22581,6 +22680,41 @@ module Aws::SageMaker
22581
22680
  include Aws::Structure
22582
22681
  end
22583
22682
 
22683
+ # Use this parameter to specify a supported global condition key that is
22684
+ # added to the IAM policy.
22685
+ #
22686
+ # @!attribute [rw] source_ip
22687
+ # When `SourceIp` is `Enabled` the worker's IP address when a task is
22688
+ # rendered in the worker portal is added to the IAM policy as a
22689
+ # `Condition` used to generate the Amazon S3 presigned URL. This IP
22690
+ # address is checked by Amazon S3 and must match in order for the
22691
+ # Amazon S3 resource to be rendered in the worker portal.
22692
+ # @return [String]
22693
+ #
22694
+ # @!attribute [rw] vpc_source_ip
22695
+ # When `VpcSourceIp` is `Enabled` the worker's IP address when a task
22696
+ # is rendered in private worker portal inside the VPC is added to the
22697
+ # IAM policy as a `Condition` used to generate the Amazon S3 presigned
22698
+ # URL. To render the task successfully Amazon S3 checks that the
22699
+ # presigned URL is being accessed over an Amazon S3 VPC Endpoint, and
22700
+ # that the worker's IP address matches the IP address in the IAM
22701
+ # policy. To learn more about configuring private worker portal, see
22702
+ # [Use Amazon VPC mode from a private worker portal][1].
22703
+ #
22704
+ #
22705
+ #
22706
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/samurai-vpc-worker-portal.html
22707
+ # @return [String]
22708
+ #
22709
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/IamPolicyConstraints AWS API Documentation
22710
+ #
22711
+ class IamPolicyConstraints < Struct.new(
22712
+ :source_ip,
22713
+ :vpc_source_ip)
22714
+ SENSITIVE = []
22715
+ include Aws::Structure
22716
+ end
22717
+
22584
22718
  # The Amazon SageMaker Canvas application setting where you configure
22585
22719
  # OAuth for connecting to an external data source, such as Snowflake.
22586
22720
  #
@@ -24895,11 +25029,13 @@ module Aws::SageMaker
24895
25029
  # @return [String]
24896
25030
  #
24897
25031
  # @!attribute [rw] max_results
24898
- # The total number of items to return in the response. If the total
24899
- # number of items available is more than the value specified, a
24900
- # `NextToken` is provided in the response. To resume pagination,
24901
- # provide the `NextToken` value in the as part of a subsequent call.
24902
- # The default value is 10.
25032
+ # This parameter defines the maximum number of results that can be
25033
+ # return in a single response. The `MaxResults` parameter is an upper
25034
+ # bound, not a target. If there are more results available than the
25035
+ # value specified, a `NextToken` is provided in the response. The
25036
+ # `NextToken` indicates that the user should get the next set of
25037
+ # results by providing this token as a part of a subsequent call. The
25038
+ # default value for `MaxResults` is 10.
24903
25039
  # @return [Integer]
24904
25040
  #
24905
25041
  # @!attribute [rw] sort_order
@@ -25911,11 +26047,13 @@ module Aws::SageMaker
25911
26047
  # @return [String]
25912
26048
  #
25913
26049
  # @!attribute [rw] max_results
25914
- # The total number of items to return in the response. If the total
25915
- # number of items available is more than the value specified, a
25916
- # `NextToken` is provided in the response. To resume pagination,
25917
- # provide the `NextToken` value in the as part of a subsequent call.
25918
- # The default value is 10.
26050
+ # This parameter defines the maximum number of results that can be
26051
+ # return in a single response. The `MaxResults` parameter is an upper
26052
+ # bound, not a target. If there are more results available than the
26053
+ # value specified, a `NextToken` is provided in the response. The
26054
+ # `NextToken` indicates that the user should get the next set of
26055
+ # results by providing this token as a part of a subsequent call. The
26056
+ # default value for `MaxResults` is 10.
25919
26057
  # @return [Integer]
25920
26058
  #
25921
26059
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListDomainsRequest AWS API Documentation
@@ -29235,11 +29373,13 @@ module Aws::SageMaker
29235
29373
  # @return [String]
29236
29374
  #
29237
29375
  # @!attribute [rw] max_results
29238
- # The total number of items to return in the response. If the total
29239
- # number of items available is more than the value specified, a
29240
- # `NextToken` is provided in the response. To resume pagination,
29241
- # provide the `NextToken` value in the as part of a subsequent call.
29242
- # The default value is 10.
29376
+ # This parameter defines the maximum number of results that can be
29377
+ # return in a single response. The `MaxResults` parameter is an upper
29378
+ # bound, not a target. If there are more results available than the
29379
+ # value specified, a `NextToken` is provided in the response. The
29380
+ # `NextToken` indicates that the user should get the next set of
29381
+ # results by providing this token as a part of a subsequent call. The
29382
+ # default value for `MaxResults` is 10.
29243
29383
  # @return [Integer]
29244
29384
  #
29245
29385
  # @!attribute [rw] sort_order
@@ -29919,11 +30059,13 @@ module Aws::SageMaker
29919
30059
  # @return [String]
29920
30060
  #
29921
30061
  # @!attribute [rw] max_results
29922
- # The total number of items to return in the response. If the total
29923
- # number of items available is more than the value specified, a
29924
- # `NextToken` is provided in the response. To resume pagination,
29925
- # provide the `NextToken` value in the as part of a subsequent call.
29926
- # The default value is 10.
30062
+ # This parameter defines the maximum number of results that can be
30063
+ # return in a single response. The `MaxResults` parameter is an upper
30064
+ # bound, not a target. If there are more results available than the
30065
+ # value specified, a `NextToken` is provided in the response. The
30066
+ # `NextToken` indicates that the user should get the next set of
30067
+ # results by providing this token as a part of a subsequent call. The
30068
+ # default value for `MaxResults` is 10.
29927
30069
  # @return [Integer]
29928
30070
  #
29929
30071
  # @!attribute [rw] sort_order
@@ -31543,6 +31685,27 @@ module Aws::SageMaker
31543
31685
  # The URI of the source for the model package.
31544
31686
  # @return [String]
31545
31687
  #
31688
+ # @!attribute [rw] security_config
31689
+ # An optional Key Management Service key to encrypt, decrypt, and
31690
+ # re-encrypt model package information for regulated workloads with
31691
+ # highly sensitive data.
31692
+ # @return [Types::ModelPackageSecurityConfig]
31693
+ #
31694
+ # @!attribute [rw] model_card
31695
+ # The model card associated with the model package. Since
31696
+ # `ModelPackageModelCard` is tied to a model package, it is a specific
31697
+ # usage of a model card and its schema is simplified compared to the
31698
+ # schema of `ModelCard`. The `ModelPackageModelCard` schema does not
31699
+ # include `model_package_details`, and `model_overview` is composed of
31700
+ # the `model_creator` and `model_artifact` properties. For more
31701
+ # information about the model card associated with the model package,
31702
+ # see [View the Details of a Model Version][1].
31703
+ #
31704
+ #
31705
+ #
31706
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
31707
+ # @return [Types::ModelPackageModelCard]
31708
+ #
31546
31709
  # @!attribute [rw] tags
31547
31710
  # A list of the tags associated with the model package. For more
31548
31711
  # information, see [Tagging Amazon Web Services resources][1] in the
@@ -31593,6 +31756,8 @@ module Aws::SageMaker
31593
31756
  :sample_payload_url,
31594
31757
  :additional_inference_specifications,
31595
31758
  :source_uri,
31759
+ :security_config,
31760
+ :model_card,
31596
31761
  :tags,
31597
31762
  :customer_metadata_properties,
31598
31763
  :drift_check_baselines,
@@ -31796,6 +31961,66 @@ module Aws::SageMaker
31796
31961
  include Aws::Structure
31797
31962
  end
31798
31963
 
31964
+ # The model card associated with the model package. Since
31965
+ # `ModelPackageModelCard` is tied to a model package, it is a specific
31966
+ # usage of a model card and its schema is simplified compared to the
31967
+ # schema of `ModelCard`. The `ModelPackageModelCard` schema does not
31968
+ # include `model_package_details`, and `model_overview` is composed of
31969
+ # the `model_creator` and `model_artifact` properties. For more
31970
+ # information about the model card associated with the model package,
31971
+ # see [View the Details of a Model Version][1].
31972
+ #
31973
+ #
31974
+ #
31975
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
31976
+ #
31977
+ # @!attribute [rw] model_card_content
31978
+ # The content of the model card.
31979
+ # @return [String]
31980
+ #
31981
+ # @!attribute [rw] model_card_status
31982
+ # The approval status of the model card within your organization.
31983
+ # Different organizations might have different criteria for model card
31984
+ # review and approval.
31985
+ #
31986
+ # * `Draft`: The model card is a work in progress.
31987
+ #
31988
+ # * `PendingReview`: The model card is pending review.
31989
+ #
31990
+ # * `Approved`: The model card is approved.
31991
+ #
31992
+ # * `Archived`: The model card is archived. No more updates can be
31993
+ # made to the model card content. If you try to update the model
31994
+ # card content, you will receive the message `Model Card is in
31995
+ # Archived state`.
31996
+ # @return [String]
31997
+ #
31998
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelPackageModelCard AWS API Documentation
31999
+ #
32000
+ class ModelPackageModelCard < Struct.new(
32001
+ :model_card_content,
32002
+ :model_card_status)
32003
+ SENSITIVE = [:model_card_content]
32004
+ include Aws::Structure
32005
+ end
32006
+
32007
+ # An optional Key Management Service key to encrypt, decrypt, and
32008
+ # re-encrypt model package information for regulated workloads with
32009
+ # highly sensitive data.
32010
+ #
32011
+ # @!attribute [rw] kms_key_id
32012
+ # The KMS Key ID (`KMSKeyId`) used for encryption of model package
32013
+ # information.
32014
+ # @return [String]
32015
+ #
32016
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelPackageSecurityConfig AWS API Documentation
32017
+ #
32018
+ class ModelPackageSecurityConfig < Struct.new(
32019
+ :kms_key_id)
32020
+ SENSITIVE = []
32021
+ include Aws::Structure
32022
+ end
32023
+
31799
32024
  # Specifies the validation and image scan statuses of the model package.
31800
32025
  #
31801
32026
  # @!attribute [rw] validation_statuses
@@ -38109,6 +38334,30 @@ module Aws::SageMaker
38109
38334
  include Aws::Structure
38110
38335
  end
38111
38336
 
38337
+ # This object defines the access restrictions to Amazon S3 resources
38338
+ # that are included in custom worker task templates using the Liquid
38339
+ # filter, `grant_read_access`.
38340
+ #
38341
+ # To learn more about how custom templates are created, see [Create
38342
+ # custom worker task templates][1].
38343
+ #
38344
+ #
38345
+ #
38346
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/a2i-custom-templates.html
38347
+ #
38348
+ # @!attribute [rw] iam_policy_constraints
38349
+ # Use this parameter to specify the allowed request source. Possible
38350
+ # sources are either `SourceIp` or `VpcSourceIp`.
38351
+ # @return [Types::IamPolicyConstraints]
38352
+ #
38353
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/S3Presign AWS API Documentation
38354
+ #
38355
+ class S3Presign < Struct.new(
38356
+ :iam_policy_constraints)
38357
+ SENSITIVE = []
38358
+ include Aws::Structure
38359
+ end
38360
+
38112
38361
  # The Amazon Simple Storage (Amazon S3) location and security
38113
38362
  # configuration for `OfflineStore`.
38114
38363
  #
@@ -40608,6 +40857,11 @@ module Aws::SageMaker
40608
40857
  # model.
40609
40858
  # @return [Array<Types::HolidayConfigAttributes>]
40610
40859
  #
40860
+ # @!attribute [rw] candidate_generation_config
40861
+ # Stores the configuration information for how model candidates are
40862
+ # generated using an AutoML job V2.
40863
+ # @return [Types::CandidateGenerationConfig]
40864
+ #
40611
40865
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TimeSeriesForecastingJobConfig AWS API Documentation
40612
40866
  #
40613
40867
  class TimeSeriesForecastingJobConfig < Struct.new(
@@ -40618,7 +40872,8 @@ module Aws::SageMaker
40618
40872
  :forecast_quantiles,
40619
40873
  :transformations,
40620
40874
  :time_series_config,
40621
- :holiday_config)
40875
+ :holiday_config,
40876
+ :candidate_generation_config)
40622
40877
  SENSITIVE = []
40623
40878
  include Aws::Structure
40624
40879
  end
@@ -43854,6 +44109,21 @@ module Aws::SageMaker
43854
44109
  # The URI of the source for the model package.
43855
44110
  # @return [String]
43856
44111
  #
44112
+ # @!attribute [rw] model_card
44113
+ # The model card associated with the model package. Since
44114
+ # `ModelPackageModelCard` is tied to a model package, it is a specific
44115
+ # usage of a model card and its schema is simplified compared to the
44116
+ # schema of `ModelCard`. The `ModelPackageModelCard` schema does not
44117
+ # include `model_package_details`, and `model_overview` is composed of
44118
+ # the `model_creator` and `model_artifact` properties. For more
44119
+ # information about the model card associated with the model package,
44120
+ # see [View the Details of a Model Version][1].
44121
+ #
44122
+ #
44123
+ #
44124
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
44125
+ # @return [Types::ModelPackageModelCard]
44126
+ #
43857
44127
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateModelPackageInput AWS API Documentation
43858
44128
  #
43859
44129
  class UpdateModelPackageInput < Struct.new(
@@ -43864,7 +44134,8 @@ module Aws::SageMaker
43864
44134
  :customer_metadata_properties_to_remove,
43865
44135
  :additional_inference_specifications_to_add,
43866
44136
  :inference_specification,
43867
- :source_uri)
44137
+ :source_uri,
44138
+ :model_card)
43868
44139
  SENSITIVE = []
43869
44140
  include Aws::Structure
43870
44141
  end
@@ -44648,13 +44919,21 @@ module Aws::SageMaker
44648
44919
  # items
44649
44920
  # @return [Types::NotificationConfiguration]
44650
44921
  #
44922
+ # @!attribute [rw] worker_access_configuration
44923
+ # Use this optional parameter to constrain access to an Amazon S3
44924
+ # resource based on the IP address using supported IAM global
44925
+ # condition keys. The Amazon S3 resource is accessed in the worker
44926
+ # portal using a Amazon S3 presigned URL.
44927
+ # @return [Types::WorkerAccessConfiguration]
44928
+ #
44651
44929
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateWorkteamRequest AWS API Documentation
44652
44930
  #
44653
44931
  class UpdateWorkteamRequest < Struct.new(
44654
44932
  :workteam_name,
44655
44933
  :member_definitions,
44656
44934
  :description,
44657
- :notification_configuration)
44935
+ :notification_configuration,
44936
+ :worker_access_configuration)
44658
44937
  SENSITIVE = []
44659
44938
  include Aws::Structure
44660
44939
  end
@@ -45043,6 +45322,23 @@ module Aws::SageMaker
45043
45322
  include Aws::Structure
45044
45323
  end
45045
45324
 
45325
+ # Use this optional parameter to constrain access to an Amazon S3
45326
+ # resource based on the IP address using supported IAM global condition
45327
+ # keys. The Amazon S3 resource is accessed in the worker portal using a
45328
+ # Amazon S3 presigned URL.
45329
+ #
45330
+ # @!attribute [rw] s3_presign
45331
+ # Defines any Amazon S3 resource constraints.
45332
+ # @return [Types::S3Presign]
45333
+ #
45334
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/WorkerAccessConfiguration AWS API Documentation
45335
+ #
45336
+ class WorkerAccessConfiguration < Struct.new(
45337
+ :s3_presign)
45338
+ SENSITIVE = []
45339
+ include Aws::Structure
45340
+ end
45341
+
45046
45342
  # A single private workforce, which is automatically created when you
45047
45343
  # create your first private work team. You can create one private work
45048
45344
  # force in each Amazon Web Services Region. By default, any
@@ -45267,6 +45563,11 @@ module Aws::SageMaker
45267
45563
  # work teams.
45268
45564
  # @return [Types::NotificationConfiguration]
45269
45565
  #
45566
+ # @!attribute [rw] worker_access_configuration
45567
+ # Describes any access constraints that have been defined for Amazon
45568
+ # S3 resources.
45569
+ # @return [Types::WorkerAccessConfiguration]
45570
+ #
45270
45571
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Workteam AWS API Documentation
45271
45572
  #
45272
45573
  class Workteam < Struct.new(
@@ -45279,7 +45580,8 @@ module Aws::SageMaker
45279
45580
  :sub_domain,
45280
45581
  :create_date,
45281
45582
  :last_updated_date,
45282
- :notification_configuration)
45583
+ :notification_configuration,
45584
+ :worker_access_configuration)
45283
45585
  SENSITIVE = []
45284
45586
  include Aws::Structure
45285
45587
  end