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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 600db6a47adc28047248a7adb467fb761e06fde1739a714b1424d5b04f1a3df6
4
- data.tar.gz: 5ba92613c2e02722ddd7ee2329bc8234ba201b02989de7174695268681c2d336
3
+ metadata.gz: cbcf1c71edfc557a3bdb2624057b01c4b01d042d55a3974be24771bf10b169fc
4
+ data.tar.gz: ae099617b91d40f345c4de4b06709334766af37ffa26ce12465c7a3285ac55d2
5
5
  SHA512:
6
- metadata.gz: 7cfd55ef5f7197daa786a00e864017dd149062a18bb84967705ea08e1dea2b81e344d69b0d32b80c70eeb5331bf38a7b4e8ae1ffb57ae10b0be86f0d83d44d49
7
- data.tar.gz: 0054e009e20bab0ad52cd04bb573535256cc79021b202ebaed1f11f1ba35d0fb9e11380bb370974a7f7cb2fb80aa0899ecdf966b4e7d5f20db1fd1d42e1d339e
6
+ metadata.gz: dbe31d67c631e43f3445560736e9c9bad11db72b1feefe89fe760fa1ae25c5f256e71d997b00540d0ee3178a11dd0e2f07d0c94b95d39b3553e6d63d93a2c51e
7
+ data.tar.gz: 75558bf18d85a6ee570d633c6fbfa1b96243f6239ad4ccffc63825536c0e29ba23c3d07b2d5e84d9fb332dbce7e2b63c930188d0d608a1e6b3e464e3046bc4fe
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.243.0 (2024-05-30)
5
+ ------------------
6
+
7
+ * Feature - Adds Model Card information as a new component to Model Package. Autopilot launches algorithm selection for TimeSeries modality to generate AutoML candidates per algorithm.
8
+
9
+ 1.242.0 (2024-05-16)
10
+ ------------------
11
+
12
+ * Feature - Introduced WorkerAccessConfiguration to SageMaker Workteam. This allows customers to configure resource access for workers in a workteam.
13
+
4
14
  1.241.0 (2024-05-13)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.241.0
1
+ 1.243.0
@@ -1436,7 +1436,7 @@ module Aws::SageMaker
1436
1436
  # feature_specification_s3_uri: "S3Uri",
1437
1437
  # algorithms_config: [
1438
1438
  # {
1439
- # auto_ml_algorithms: ["xgboost"], # required, accepts xgboost, linear-learner, mlp, lightgbm, catboost, randomforest, extra-trees, nn-torch, fastai
1439
+ # auto_ml_algorithms: ["xgboost"], # required, accepts xgboost, linear-learner, mlp, lightgbm, catboost, randomforest, extra-trees, nn-torch, fastai, cnn-qr, deepar, prophet, npts, arima, ets
1440
1440
  # },
1441
1441
  # ],
1442
1442
  # },
@@ -1674,12 +1674,19 @@ module Aws::SageMaker
1674
1674
  # country_code: "CountryCode",
1675
1675
  # },
1676
1676
  # ],
1677
+ # candidate_generation_config: {
1678
+ # algorithms_config: [
1679
+ # {
1680
+ # auto_ml_algorithms: ["xgboost"], # required, accepts xgboost, linear-learner, mlp, lightgbm, catboost, randomforest, extra-trees, nn-torch, fastai, cnn-qr, deepar, prophet, npts, arima, ets
1681
+ # },
1682
+ # ],
1683
+ # },
1677
1684
  # },
1678
1685
  # tabular_job_config: {
1679
1686
  # candidate_generation_config: {
1680
1687
  # algorithms_config: [
1681
1688
  # {
1682
- # auto_ml_algorithms: ["xgboost"], # required, accepts xgboost, linear-learner, mlp, lightgbm, catboost, randomforest, extra-trees, nn-torch, fastai
1689
+ # auto_ml_algorithms: ["xgboost"], # required, accepts xgboost, linear-learner, mlp, lightgbm, catboost, randomforest, extra-trees, nn-torch, fastai, cnn-qr, deepar, prophet, npts, arima, ets
1683
1690
  # },
1684
1691
  # ],
1685
1692
  # },
@@ -6161,6 +6168,24 @@ module Aws::SageMaker
6161
6168
  # model package, set it to the model package Amazon Resource Name (ARN).
6162
6169
  # If you want to register a model, set it to the model ARN.
6163
6170
  #
6171
+ # @option params [Types::ModelPackageSecurityConfig] :security_config
6172
+ # The KMS Key ID (`KMSKeyId`) used for encryption of model package
6173
+ # information.
6174
+ #
6175
+ # @option params [Types::ModelPackageModelCard] :model_card
6176
+ # The model card associated with the model package. Since
6177
+ # `ModelPackageModelCard` is tied to a model package, it is a specific
6178
+ # usage of a model card and its schema is simplified compared to the
6179
+ # schema of `ModelCard`. The `ModelPackageModelCard` schema does not
6180
+ # include `model_package_details`, and `model_overview` is composed of
6181
+ # the `model_creator` and `model_artifact` properties. For more
6182
+ # information about the model card associated with the model package,
6183
+ # see [View the Details of a Model Version][1].
6184
+ #
6185
+ #
6186
+ #
6187
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
6188
+ #
6164
6189
  # @return [Types::CreateModelPackageOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6165
6190
  #
6166
6191
  # * {Types::CreateModelPackageOutput#model_package_arn #model_package_arn} => String
@@ -6437,6 +6462,13 @@ module Aws::SageMaker
6437
6462
  # ],
6438
6463
  # skip_model_validation: "All", # accepts All, None
6439
6464
  # source_uri: "ModelPackageSourceUri",
6465
+ # security_config: {
6466
+ # kms_key_id: "KmsKeyId", # required
6467
+ # },
6468
+ # model_card: {
6469
+ # model_card_content: "ModelCardContent",
6470
+ # model_card_status: "Draft", # accepts Draft, PendingReview, Approved, Archived
6471
+ # },
6440
6472
  # })
6441
6473
  #
6442
6474
  # @example Response structure
@@ -7613,7 +7645,8 @@ module Aws::SageMaker
7613
7645
  req.send_request(options)
7614
7646
  end
7615
7647
 
7616
- # Creates a space used for real time collaboration in a domain.
7648
+ # Creates a private space or a space used for real time collaboration in
7649
+ # a domain.
7617
7650
  #
7618
7651
  # @option params [required, String] :domain_id
7619
7652
  # The ID of the associated domain.
@@ -9108,6 +9141,12 @@ module Aws::SageMaker
9108
9141
  # Configures notification of workers regarding available or expiring
9109
9142
  # work items.
9110
9143
  #
9144
+ # @option params [Types::WorkerAccessConfiguration] :worker_access_configuration
9145
+ # Use this optional parameter to constrain access to an Amazon S3
9146
+ # resource based on the IP address using supported IAM global condition
9147
+ # keys. The Amazon S3 resource is accessed in the worker portal using a
9148
+ # Amazon S3 presigned URL.
9149
+ #
9111
9150
  # @option params [Array<Types::Tag>] :tags
9112
9151
  # An array of key-value pairs.
9113
9152
  #
@@ -9145,6 +9184,14 @@ module Aws::SageMaker
9145
9184
  # notification_configuration: {
9146
9185
  # notification_topic_arn: "NotificationTopicArn",
9147
9186
  # },
9187
+ # worker_access_configuration: {
9188
+ # s3_presign: {
9189
+ # iam_policy_constraints: {
9190
+ # source_ip: "Enabled", # accepts Enabled, Disabled
9191
+ # vpc_source_ip: "Enabled", # accepts Enabled, Disabled
9192
+ # },
9193
+ # },
9194
+ # },
9148
9195
  # tags: [
9149
9196
  # {
9150
9197
  # key: "TagKey", # required
@@ -11098,7 +11145,7 @@ module Aws::SageMaker
11098
11145
  # resp.auto_ml_job_config.candidate_generation_config.feature_specification_s3_uri #=> String
11099
11146
  # resp.auto_ml_job_config.candidate_generation_config.algorithms_config #=> Array
11100
11147
  # resp.auto_ml_job_config.candidate_generation_config.algorithms_config[0].auto_ml_algorithms #=> Array
11101
- # resp.auto_ml_job_config.candidate_generation_config.algorithms_config[0].auto_ml_algorithms[0] #=> String, one of "xgboost", "linear-learner", "mlp", "lightgbm", "catboost", "randomforest", "extra-trees", "nn-torch", "fastai"
11148
+ # resp.auto_ml_job_config.candidate_generation_config.algorithms_config[0].auto_ml_algorithms[0] #=> String, one of "xgboost", "linear-learner", "mlp", "lightgbm", "catboost", "randomforest", "extra-trees", "nn-torch", "fastai", "cnn-qr", "deepar", "prophet", "npts", "arima", "ets"
11102
11149
  # resp.auto_ml_job_config.data_split_config.validation_fraction #=> Float
11103
11150
  # resp.auto_ml_job_config.mode #=> String, one of "AUTO", "ENSEMBLING", "HYPERPARAMETER_TUNING"
11104
11151
  # resp.creation_time #=> Time
@@ -11248,9 +11295,12 @@ module Aws::SageMaker
11248
11295
  # resp.auto_ml_problem_type_config.time_series_forecasting_job_config.time_series_config.grouping_attribute_names[0] #=> String
11249
11296
  # resp.auto_ml_problem_type_config.time_series_forecasting_job_config.holiday_config #=> Array
11250
11297
  # resp.auto_ml_problem_type_config.time_series_forecasting_job_config.holiday_config[0].country_code #=> String
11298
+ # resp.auto_ml_problem_type_config.time_series_forecasting_job_config.candidate_generation_config.algorithms_config #=> Array
11299
+ # resp.auto_ml_problem_type_config.time_series_forecasting_job_config.candidate_generation_config.algorithms_config[0].auto_ml_algorithms #=> Array
11300
+ # resp.auto_ml_problem_type_config.time_series_forecasting_job_config.candidate_generation_config.algorithms_config[0].auto_ml_algorithms[0] #=> String, one of "xgboost", "linear-learner", "mlp", "lightgbm", "catboost", "randomforest", "extra-trees", "nn-torch", "fastai", "cnn-qr", "deepar", "prophet", "npts", "arima", "ets"
11251
11301
  # resp.auto_ml_problem_type_config.tabular_job_config.candidate_generation_config.algorithms_config #=> Array
11252
11302
  # resp.auto_ml_problem_type_config.tabular_job_config.candidate_generation_config.algorithms_config[0].auto_ml_algorithms #=> Array
11253
- # resp.auto_ml_problem_type_config.tabular_job_config.candidate_generation_config.algorithms_config[0].auto_ml_algorithms[0] #=> String, one of "xgboost", "linear-learner", "mlp", "lightgbm", "catboost", "randomforest", "extra-trees", "nn-torch", "fastai"
11303
+ # resp.auto_ml_problem_type_config.tabular_job_config.candidate_generation_config.algorithms_config[0].auto_ml_algorithms[0] #=> String, one of "xgboost", "linear-learner", "mlp", "lightgbm", "catboost", "randomforest", "extra-trees", "nn-torch", "fastai", "cnn-qr", "deepar", "prophet", "npts", "arima", "ets"
11254
11304
  # resp.auto_ml_problem_type_config.tabular_job_config.completion_criteria.max_candidates #=> Integer
11255
11305
  # resp.auto_ml_problem_type_config.tabular_job_config.completion_criteria.max_runtime_per_training_job_in_seconds #=> Integer
11256
11306
  # resp.auto_ml_problem_type_config.tabular_job_config.completion_criteria.max_auto_ml_job_runtime_in_seconds #=> Integer
@@ -14132,9 +14182,17 @@ module Aws::SageMaker
14132
14182
  # create SageMaker models or list them on Amazon Web Services
14133
14183
  # Marketplace.
14134
14184
  #
14185
+ # If you provided a KMS Key ID when you created your model package, you
14186
+ # will see the [KMS Decrypt][1] API call in your CloudTrail logs when
14187
+ # you use this API.
14188
+ #
14135
14189
  # To create models in SageMaker, buyers can subscribe to model packages
14136
14190
  # listed on Amazon Web Services Marketplace.
14137
14191
  #
14192
+ #
14193
+ #
14194
+ # [1]: https://docs.aws.amazon.com/kms/latest/APIReference/API_Decrypt.html
14195
+ #
14138
14196
  # @option params [required, String] :model_package_name
14139
14197
  # The name or Amazon Resource Name (ARN) of the model package to
14140
14198
  # describe.
@@ -14171,6 +14229,8 @@ module Aws::SageMaker
14171
14229
  # * {Types::DescribeModelPackageOutput#additional_inference_specifications #additional_inference_specifications} => Array&lt;Types::AdditionalInferenceSpecificationDefinition&gt;
14172
14230
  # * {Types::DescribeModelPackageOutput#skip_model_validation #skip_model_validation} => String
14173
14231
  # * {Types::DescribeModelPackageOutput#source_uri #source_uri} => String
14232
+ # * {Types::DescribeModelPackageOutput#security_config #security_config} => Types::ModelPackageSecurityConfig
14233
+ # * {Types::DescribeModelPackageOutput#model_card #model_card} => Types::ModelPackageModelCard
14174
14234
  #
14175
14235
  # @example Request syntax with placeholder values
14176
14236
  #
@@ -14357,6 +14417,9 @@ module Aws::SageMaker
14357
14417
  # resp.additional_inference_specifications[0].supported_response_mime_types[0] #=> String
14358
14418
  # resp.skip_model_validation #=> String, one of "All", "None"
14359
14419
  # resp.source_uri #=> String
14420
+ # resp.security_config.kms_key_id #=> String
14421
+ # resp.model_card.model_card_content #=> String
14422
+ # resp.model_card.model_card_status #=> String, one of "Draft", "PendingReview", "Approved", "Archived"
14360
14423
  #
14361
14424
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelPackage AWS API Documentation
14362
14425
  #
@@ -15958,6 +16021,8 @@ module Aws::SageMaker
15958
16021
  # resp.workteam.create_date #=> Time
15959
16022
  # resp.workteam.last_updated_date #=> Time
15960
16023
  # resp.workteam.notification_configuration.notification_topic_arn #=> String
16024
+ # resp.workteam.worker_access_configuration.s3_presign.iam_policy_constraints.source_ip #=> String, one of "Enabled", "Disabled"
16025
+ # resp.workteam.worker_access_configuration.s3_presign.iam_policy_constraints.vpc_source_ip #=> String, one of "Enabled", "Disabled"
15961
16026
  #
15962
16027
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeWorkteam AWS API Documentation
15963
16028
  #
@@ -16694,11 +16759,13 @@ module Aws::SageMaker
16694
16759
  # Use it in your next request to receive the next set of results.
16695
16760
  #
16696
16761
  # @option params [Integer] :max_results
16697
- # The total number of items to return in the response. If the total
16698
- # number of items available is more than the value specified, a
16699
- # `NextToken` is provided in the response. To resume pagination, provide
16700
- # the `NextToken` value in the as part of a subsequent call. The default
16701
- # value is 10.
16762
+ # This parameter defines the maximum number of results that can be
16763
+ # return in a single response. The `MaxResults` parameter is an upper
16764
+ # bound, not a target. If there are more results available than the
16765
+ # value specified, a `NextToken` is provided in the response. The
16766
+ # `NextToken` indicates that the user should get the next set of results
16767
+ # by providing this token as a part of a subsequent call. The default
16768
+ # value for `MaxResults` is 10.
16702
16769
  #
16703
16770
  # @option params [String] :sort_order
16704
16771
  # The sort order for the results. The default is Ascending.
@@ -17762,11 +17829,13 @@ module Aws::SageMaker
17762
17829
  # Use it in your next request to receive the next set of results.
17763
17830
  #
17764
17831
  # @option params [Integer] :max_results
17765
- # The total number of items to return in the response. If the total
17766
- # number of items available is more than the value specified, a
17767
- # `NextToken` is provided in the response. To resume pagination, provide
17768
- # the `NextToken` value in the as part of a subsequent call. The default
17769
- # value is 10.
17832
+ # This parameter defines the maximum number of results that can be
17833
+ # return in a single response. The `MaxResults` parameter is an upper
17834
+ # bound, not a target. If there are more results available than the
17835
+ # value specified, a `NextToken` is provided in the response. The
17836
+ # `NextToken` indicates that the user should get the next set of results
17837
+ # by providing this token as a part of a subsequent call. The default
17838
+ # value for `MaxResults` is 10.
17770
17839
  #
17771
17840
  # @return [Types::ListDomainsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
17772
17841
  #
@@ -21229,11 +21298,13 @@ module Aws::SageMaker
21229
21298
  # Use it in your next request to receive the next set of results.
21230
21299
  #
21231
21300
  # @option params [Integer] :max_results
21232
- # The total number of items to return in the response. If the total
21233
- # number of items available is more than the value specified, a
21234
- # `NextToken` is provided in the response. To resume pagination, provide
21235
- # the `NextToken` value in the as part of a subsequent call. The default
21236
- # value is 10.
21301
+ # This parameter defines the maximum number of results that can be
21302
+ # return in a single response. The `MaxResults` parameter is an upper
21303
+ # bound, not a target. If there are more results available than the
21304
+ # value specified, a `NextToken` is provided in the response. The
21305
+ # `NextToken` indicates that the user should get the next set of results
21306
+ # by providing this token as a part of a subsequent call. The default
21307
+ # value for `MaxResults` is 10.
21237
21308
  #
21238
21309
  # @option params [String] :sort_order
21239
21310
  # The sort order for the results. The default is `Ascending`.
@@ -21999,11 +22070,13 @@ module Aws::SageMaker
21999
22070
  # Use it in your next request to receive the next set of results.
22000
22071
  #
22001
22072
  # @option params [Integer] :max_results
22002
- # The total number of items to return in the response. If the total
22003
- # number of items available is more than the value specified, a
22004
- # `NextToken` is provided in the response. To resume pagination, provide
22005
- # the `NextToken` value in the as part of a subsequent call. The default
22006
- # value is 10.
22073
+ # This parameter defines the maximum number of results that can be
22074
+ # return in a single response. The `MaxResults` parameter is an upper
22075
+ # bound, not a target. If there are more results available than the
22076
+ # value specified, a `NextToken` is provided in the response. The
22077
+ # `NextToken` indicates that the user should get the next set of results
22078
+ # by providing this token as a part of a subsequent call. The default
22079
+ # value for `MaxResults` is 10.
22007
22080
  #
22008
22081
  # @option params [String] :sort_order
22009
22082
  # The sort order for the results. The default is Ascending.
@@ -22189,6 +22262,8 @@ module Aws::SageMaker
22189
22262
  # resp.workteams[0].create_date #=> Time
22190
22263
  # resp.workteams[0].last_updated_date #=> Time
22191
22264
  # resp.workteams[0].notification_configuration.notification_topic_arn #=> String
22265
+ # resp.workteams[0].worker_access_configuration.s3_presign.iam_policy_constraints.source_ip #=> String, one of "Enabled", "Disabled"
22266
+ # resp.workteams[0].worker_access_configuration.s3_presign.iam_policy_constraints.vpc_source_ip #=> String, one of "Enabled", "Disabled"
22192
22267
  # resp.next_token #=> String
22193
22268
  #
22194
22269
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListWorkteams AWS API Documentation
@@ -24901,6 +24976,20 @@ module Aws::SageMaker
24901
24976
  # @option params [String] :source_uri
24902
24977
  # The URI of the source for the model package.
24903
24978
  #
24979
+ # @option params [Types::ModelPackageModelCard] :model_card
24980
+ # The model card associated with the model package. Since
24981
+ # `ModelPackageModelCard` is tied to a model package, it is a specific
24982
+ # usage of a model card and its schema is simplified compared to the
24983
+ # schema of `ModelCard`. The `ModelPackageModelCard` schema does not
24984
+ # include `model_package_details`, and `model_overview` is composed of
24985
+ # the `model_creator` and `model_artifact` properties. For more
24986
+ # information about the model card associated with the model package,
24987
+ # see [View the Details of a Model Version][1].
24988
+ #
24989
+ #
24990
+ #
24991
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
24992
+ #
24904
24993
  # @return [Types::UpdateModelPackageOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
24905
24994
  #
24906
24995
  # * {Types::UpdateModelPackageOutput#model_package_arn #model_package_arn} => String
@@ -24998,6 +25087,10 @@ module Aws::SageMaker
24998
25087
  # supported_response_mime_types: ["ResponseMIMEType"],
24999
25088
  # },
25000
25089
  # source_uri: "ModelPackageSourceUri",
25090
+ # model_card: {
25091
+ # model_card_content: "ModelCardContent",
25092
+ # model_card_status: "Draft", # accepts Draft, PendingReview, Approved, Archived
25093
+ # },
25001
25094
  # })
25002
25095
  #
25003
25096
  # @example Response structure
@@ -26261,6 +26354,12 @@ module Aws::SageMaker
26261
26354
  # Configures SNS topic notifications for available or expiring work
26262
26355
  # items
26263
26356
  #
26357
+ # @option params [Types::WorkerAccessConfiguration] :worker_access_configuration
26358
+ # Use this optional parameter to constrain access to an Amazon S3
26359
+ # resource based on the IP address using supported IAM global condition
26360
+ # keys. The Amazon S3 resource is accessed in the worker portal using a
26361
+ # Amazon S3 presigned URL.
26362
+ #
26264
26363
  # @return [Types::UpdateWorkteamResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
26265
26364
  #
26266
26365
  # * {Types::UpdateWorkteamResponse#workteam #workteam} => Types::Workteam
@@ -26285,6 +26384,14 @@ module Aws::SageMaker
26285
26384
  # notification_configuration: {
26286
26385
  # notification_topic_arn: "NotificationTopicArn",
26287
26386
  # },
26387
+ # worker_access_configuration: {
26388
+ # s3_presign: {
26389
+ # iam_policy_constraints: {
26390
+ # source_ip: "Enabled", # accepts Enabled, Disabled
26391
+ # vpc_source_ip: "Enabled", # accepts Enabled, Disabled
26392
+ # },
26393
+ # },
26394
+ # },
26288
26395
  # })
26289
26396
  #
26290
26397
  # @example Response structure
@@ -26305,6 +26412,8 @@ module Aws::SageMaker
26305
26412
  # resp.workteam.create_date #=> Time
26306
26413
  # resp.workteam.last_updated_date #=> Time
26307
26414
  # resp.workteam.notification_configuration.notification_topic_arn #=> String
26415
+ # resp.workteam.worker_access_configuration.s3_presign.iam_policy_constraints.source_ip #=> String, one of "Enabled", "Disabled"
26416
+ # resp.workteam.worker_access_configuration.s3_presign.iam_policy_constraints.vpc_source_ip #=> String, one of "Enabled", "Disabled"
26308
26417
  #
26309
26418
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateWorkteam AWS API Documentation
26310
26419
  #
@@ -26328,7 +26437,7 @@ module Aws::SageMaker
26328
26437
  params: params,
26329
26438
  config: config)
26330
26439
  context[:gem_name] = 'aws-sdk-sagemaker'
26331
- context[:gem_version] = '1.241.0'
26440
+ context[:gem_version] = '1.243.0'
26332
26441
  Seahorse::Client::Request.new(handlers, context)
26333
26442
  end
26334
26443
 
@@ -783,6 +783,7 @@ module Aws::SageMaker
783
783
  EnableSagemakerServicecatalogPortfolioInput = Shapes::StructureShape.new(name: 'EnableSagemakerServicecatalogPortfolioInput')
784
784
  EnableSagemakerServicecatalogPortfolioOutput = Shapes::StructureShape.new(name: 'EnableSagemakerServicecatalogPortfolioOutput')
785
785
  EnableSessionTagChaining = Shapes::BooleanShape.new(name: 'EnableSessionTagChaining')
786
+ EnabledOrDisabled = Shapes::StringShape.new(name: 'EnabledOrDisabled')
786
787
  Endpoint = Shapes::StructureShape.new(name: 'Endpoint')
787
788
  EndpointArn = Shapes::StringShape.new(name: 'EndpointArn')
788
789
  EndpointConfigArn = Shapes::StringShape.new(name: 'EndpointConfigArn')
@@ -1002,6 +1003,7 @@ module Aws::SageMaker
1002
1003
  HyperbandStrategyMaxResource = Shapes::IntegerShape.new(name: 'HyperbandStrategyMaxResource')
1003
1004
  HyperbandStrategyMinResource = Shapes::IntegerShape.new(name: 'HyperbandStrategyMinResource')
1004
1005
  IamIdentity = Shapes::StructureShape.new(name: 'IamIdentity')
1006
+ IamPolicyConstraints = Shapes::StructureShape.new(name: 'IamPolicyConstraints')
1005
1007
  IdempotencyToken = Shapes::StringShape.new(name: 'IdempotencyToken')
1006
1008
  IdentityProviderOAuthSetting = Shapes::StructureShape.new(name: 'IdentityProviderOAuthSetting')
1007
1009
  IdentityProviderOAuthSettings = Shapes::ListShape.new(name: 'IdentityProviderOAuthSettings')
@@ -1434,6 +1436,8 @@ module Aws::SageMaker
1434
1436
  ModelPackageGroupStatus = Shapes::StringShape.new(name: 'ModelPackageGroupStatus')
1435
1437
  ModelPackageGroupSummary = Shapes::StructureShape.new(name: 'ModelPackageGroupSummary')
1436
1438
  ModelPackageGroupSummaryList = Shapes::ListShape.new(name: 'ModelPackageGroupSummaryList')
1439
+ ModelPackageModelCard = Shapes::StructureShape.new(name: 'ModelPackageModelCard')
1440
+ ModelPackageSecurityConfig = Shapes::StructureShape.new(name: 'ModelPackageSecurityConfig')
1437
1441
  ModelPackageSortBy = Shapes::StringShape.new(name: 'ModelPackageSortBy')
1438
1442
  ModelPackageSourceUri = Shapes::StringShape.new(name: 'ModelPackageSourceUri')
1439
1443
  ModelPackageStatus = Shapes::StringShape.new(name: 'ModelPackageStatus')
@@ -1837,6 +1841,7 @@ module Aws::SageMaker
1837
1841
  S3ModelDataType = Shapes::StringShape.new(name: 'S3ModelDataType')
1838
1842
  S3ModelUri = Shapes::StringShape.new(name: 'S3ModelUri')
1839
1843
  S3OutputPath = Shapes::StringShape.new(name: 'S3OutputPath')
1844
+ S3Presign = Shapes::StructureShape.new(name: 'S3Presign')
1840
1845
  S3StorageConfig = Shapes::StructureShape.new(name: 'S3StorageConfig')
1841
1846
  S3Uri = Shapes::StringShape.new(name: 'S3Uri')
1842
1847
  SageMakerImageVersionAlias = Shapes::StringShape.new(name: 'SageMakerImageVersionAlias')
@@ -2237,6 +2242,7 @@ module Aws::SageMaker
2237
2242
  WaitIntervalInSeconds = Shapes::IntegerShape.new(name: 'WaitIntervalInSeconds')
2238
2243
  WarmPoolResourceStatus = Shapes::StringShape.new(name: 'WarmPoolResourceStatus')
2239
2244
  WarmPoolStatus = Shapes::StructureShape.new(name: 'WarmPoolStatus')
2245
+ WorkerAccessConfiguration = Shapes::StructureShape.new(name: 'WorkerAccessConfiguration')
2240
2246
  Workforce = Shapes::StructureShape.new(name: 'Workforce')
2241
2247
  WorkforceArn = Shapes::StringShape.new(name: 'WorkforceArn')
2242
2248
  WorkforceFailureReason = Shapes::StringShape.new(name: 'WorkforceFailureReason')
@@ -3458,6 +3464,8 @@ module Aws::SageMaker
3458
3464
  CreateModelPackageInput.add_member(:additional_inference_specifications, Shapes::ShapeRef.new(shape: AdditionalInferenceSpecifications, location_name: "AdditionalInferenceSpecifications"))
3459
3465
  CreateModelPackageInput.add_member(:skip_model_validation, Shapes::ShapeRef.new(shape: SkipModelValidation, location_name: "SkipModelValidation"))
3460
3466
  CreateModelPackageInput.add_member(:source_uri, Shapes::ShapeRef.new(shape: ModelPackageSourceUri, location_name: "SourceUri"))
3467
+ CreateModelPackageInput.add_member(:security_config, Shapes::ShapeRef.new(shape: ModelPackageSecurityConfig, location_name: "SecurityConfig"))
3468
+ CreateModelPackageInput.add_member(:model_card, Shapes::ShapeRef.new(shape: ModelPackageModelCard, location_name: "ModelCard"))
3461
3469
  CreateModelPackageInput.struct_class = Types::CreateModelPackageInput
3462
3470
 
3463
3471
  CreateModelPackageOutput.add_member(:model_package_arn, Shapes::ShapeRef.new(shape: ModelPackageArn, required: true, location_name: "ModelPackageArn"))
@@ -3695,6 +3703,7 @@ module Aws::SageMaker
3695
3703
  CreateWorkteamRequest.add_member(:member_definitions, Shapes::ShapeRef.new(shape: MemberDefinitions, required: true, location_name: "MemberDefinitions"))
3696
3704
  CreateWorkteamRequest.add_member(:description, Shapes::ShapeRef.new(shape: String200, required: true, location_name: "Description"))
3697
3705
  CreateWorkteamRequest.add_member(:notification_configuration, Shapes::ShapeRef.new(shape: NotificationConfiguration, location_name: "NotificationConfiguration"))
3706
+ CreateWorkteamRequest.add_member(:worker_access_configuration, Shapes::ShapeRef.new(shape: WorkerAccessConfiguration, location_name: "WorkerAccessConfiguration"))
3698
3707
  CreateWorkteamRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
3699
3708
  CreateWorkteamRequest.struct_class = Types::CreateWorkteamRequest
3700
3709
 
@@ -4831,6 +4840,8 @@ module Aws::SageMaker
4831
4840
  DescribeModelPackageOutput.add_member(:additional_inference_specifications, Shapes::ShapeRef.new(shape: AdditionalInferenceSpecifications, location_name: "AdditionalInferenceSpecifications"))
4832
4841
  DescribeModelPackageOutput.add_member(:skip_model_validation, Shapes::ShapeRef.new(shape: SkipModelValidation, location_name: "SkipModelValidation"))
4833
4842
  DescribeModelPackageOutput.add_member(:source_uri, Shapes::ShapeRef.new(shape: ModelPackageSourceUri, location_name: "SourceUri"))
4843
+ DescribeModelPackageOutput.add_member(:security_config, Shapes::ShapeRef.new(shape: ModelPackageSecurityConfig, location_name: "SecurityConfig"))
4844
+ DescribeModelPackageOutput.add_member(:model_card, Shapes::ShapeRef.new(shape: ModelPackageModelCard, location_name: "ModelCard"))
4834
4845
  DescribeModelPackageOutput.struct_class = Types::DescribeModelPackageOutput
4835
4846
 
4836
4847
  DescribeModelQualityJobDefinitionRequest.add_member(:job_definition_name, Shapes::ShapeRef.new(shape: MonitoringJobDefinitionName, required: true, location_name: "JobDefinitionName"))
@@ -5956,6 +5967,10 @@ module Aws::SageMaker
5956
5967
  IamIdentity.add_member(:source_identity, Shapes::ShapeRef.new(shape: String, location_name: "SourceIdentity"))
5957
5968
  IamIdentity.struct_class = Types::IamIdentity
5958
5969
 
5970
+ IamPolicyConstraints.add_member(:source_ip, Shapes::ShapeRef.new(shape: EnabledOrDisabled, location_name: "SourceIp"))
5971
+ IamPolicyConstraints.add_member(:vpc_source_ip, Shapes::ShapeRef.new(shape: EnabledOrDisabled, location_name: "VpcSourceIp"))
5972
+ IamPolicyConstraints.struct_class = Types::IamPolicyConstraints
5973
+
5959
5974
  IdentityProviderOAuthSetting.add_member(:data_source_name, Shapes::ShapeRef.new(shape: DataSourceName, location_name: "DataSourceName"))
5960
5975
  IdentityProviderOAuthSetting.add_member(:status, Shapes::ShapeRef.new(shape: FeatureStatus, location_name: "Status"))
5961
5976
  IdentityProviderOAuthSetting.add_member(:secret_arn, Shapes::ShapeRef.new(shape: SecretArn, location_name: "SecretArn"))
@@ -7635,6 +7650,8 @@ module Aws::SageMaker
7635
7650
  ModelPackage.add_member(:sample_payload_url, Shapes::ShapeRef.new(shape: String, location_name: "SamplePayloadUrl"))
7636
7651
  ModelPackage.add_member(:additional_inference_specifications, Shapes::ShapeRef.new(shape: AdditionalInferenceSpecifications, location_name: "AdditionalInferenceSpecifications"))
7637
7652
  ModelPackage.add_member(:source_uri, Shapes::ShapeRef.new(shape: ModelPackageSourceUri, location_name: "SourceUri"))
7653
+ ModelPackage.add_member(:security_config, Shapes::ShapeRef.new(shape: ModelPackageSecurityConfig, location_name: "SecurityConfig"))
7654
+ ModelPackage.add_member(:model_card, Shapes::ShapeRef.new(shape: ModelPackageModelCard, location_name: "ModelCard"))
7638
7655
  ModelPackage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
7639
7656
  ModelPackage.add_member(:customer_metadata_properties, Shapes::ShapeRef.new(shape: CustomerMetadataMap, location_name: "CustomerMetadataProperties"))
7640
7657
  ModelPackage.add_member(:drift_check_baselines, Shapes::ShapeRef.new(shape: DriftCheckBaselines, location_name: "DriftCheckBaselines"))
@@ -7677,6 +7694,13 @@ module Aws::SageMaker
7677
7694
 
7678
7695
  ModelPackageGroupSummaryList.member = Shapes::ShapeRef.new(shape: ModelPackageGroupSummary)
7679
7696
 
7697
+ ModelPackageModelCard.add_member(:model_card_content, Shapes::ShapeRef.new(shape: ModelCardContent, location_name: "ModelCardContent"))
7698
+ ModelPackageModelCard.add_member(:model_card_status, Shapes::ShapeRef.new(shape: ModelCardStatus, location_name: "ModelCardStatus"))
7699
+ ModelPackageModelCard.struct_class = Types::ModelPackageModelCard
7700
+
7701
+ ModelPackageSecurityConfig.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, required: true, location_name: "KmsKeyId"))
7702
+ ModelPackageSecurityConfig.struct_class = Types::ModelPackageSecurityConfig
7703
+
7680
7704
  ModelPackageStatusDetails.add_member(:validation_statuses, Shapes::ShapeRef.new(shape: ModelPackageStatusItemList, required: true, location_name: "ValidationStatuses"))
7681
7705
  ModelPackageStatusDetails.add_member(:image_scan_statuses, Shapes::ShapeRef.new(shape: ModelPackageStatusItemList, location_name: "ImageScanStatuses"))
7682
7706
  ModelPackageStatusDetails.struct_class = Types::ModelPackageStatusDetails
@@ -8736,6 +8760,9 @@ module Aws::SageMaker
8736
8760
  S3ModelDataSource.add_member(:model_access_config, Shapes::ShapeRef.new(shape: ModelAccessConfig, location_name: "ModelAccessConfig"))
8737
8761
  S3ModelDataSource.struct_class = Types::S3ModelDataSource
8738
8762
 
8763
+ S3Presign.add_member(:iam_policy_constraints, Shapes::ShapeRef.new(shape: IamPolicyConstraints, location_name: "IamPolicyConstraints"))
8764
+ S3Presign.struct_class = Types::S3Presign
8765
+
8739
8766
  S3StorageConfig.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3Uri, required: true, location_name: "S3Uri"))
8740
8767
  S3StorageConfig.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
8741
8768
  S3StorageConfig.add_member(:resolved_output_s3_uri, Shapes::ShapeRef.new(shape: S3Uri, location_name: "ResolvedOutputS3Uri"))
@@ -9133,6 +9160,7 @@ module Aws::SageMaker
9133
9160
  TimeSeriesForecastingJobConfig.add_member(:transformations, Shapes::ShapeRef.new(shape: TimeSeriesTransformations, location_name: "Transformations"))
9134
9161
  TimeSeriesForecastingJobConfig.add_member(:time_series_config, Shapes::ShapeRef.new(shape: TimeSeriesConfig, required: true, location_name: "TimeSeriesConfig"))
9135
9162
  TimeSeriesForecastingJobConfig.add_member(:holiday_config, Shapes::ShapeRef.new(shape: HolidayConfig, location_name: "HolidayConfig"))
9163
+ TimeSeriesForecastingJobConfig.add_member(:candidate_generation_config, Shapes::ShapeRef.new(shape: CandidateGenerationConfig, location_name: "CandidateGenerationConfig"))
9136
9164
  TimeSeriesForecastingJobConfig.struct_class = Types::TimeSeriesForecastingJobConfig
9137
9165
 
9138
9166
  TimeSeriesForecastingSettings.add_member(:status, Shapes::ShapeRef.new(shape: FeatureStatus, location_name: "Status"))
@@ -9672,6 +9700,7 @@ module Aws::SageMaker
9672
9700
  UpdateModelPackageInput.add_member(:additional_inference_specifications_to_add, Shapes::ShapeRef.new(shape: AdditionalInferenceSpecifications, location_name: "AdditionalInferenceSpecificationsToAdd"))
9673
9701
  UpdateModelPackageInput.add_member(:inference_specification, Shapes::ShapeRef.new(shape: InferenceSpecification, location_name: "InferenceSpecification"))
9674
9702
  UpdateModelPackageInput.add_member(:source_uri, Shapes::ShapeRef.new(shape: ModelPackageSourceUri, location_name: "SourceUri"))
9703
+ UpdateModelPackageInput.add_member(:model_card, Shapes::ShapeRef.new(shape: ModelPackageModelCard, location_name: "ModelCard"))
9675
9704
  UpdateModelPackageInput.struct_class = Types::UpdateModelPackageInput
9676
9705
 
9677
9706
  UpdateModelPackageOutput.add_member(:model_package_arn, Shapes::ShapeRef.new(shape: ModelPackageArn, required: true, location_name: "ModelPackageArn"))
@@ -9812,6 +9841,7 @@ module Aws::SageMaker
9812
9841
  UpdateWorkteamRequest.add_member(:member_definitions, Shapes::ShapeRef.new(shape: MemberDefinitions, location_name: "MemberDefinitions"))
9813
9842
  UpdateWorkteamRequest.add_member(:description, Shapes::ShapeRef.new(shape: String200, location_name: "Description"))
9814
9843
  UpdateWorkteamRequest.add_member(:notification_configuration, Shapes::ShapeRef.new(shape: NotificationConfiguration, location_name: "NotificationConfiguration"))
9844
+ UpdateWorkteamRequest.add_member(:worker_access_configuration, Shapes::ShapeRef.new(shape: WorkerAccessConfiguration, location_name: "WorkerAccessConfiguration"))
9815
9845
  UpdateWorkteamRequest.struct_class = Types::UpdateWorkteamRequest
9816
9846
 
9817
9847
  UpdateWorkteamResponse.add_member(:workteam, Shapes::ShapeRef.new(shape: Workteam, required: true, location_name: "Workteam"))
@@ -9884,6 +9914,9 @@ module Aws::SageMaker
9884
9914
  WarmPoolStatus.add_member(:reused_by_job, Shapes::ShapeRef.new(shape: TrainingJobName, location_name: "ReusedByJob"))
9885
9915
  WarmPoolStatus.struct_class = Types::WarmPoolStatus
9886
9916
 
9917
+ WorkerAccessConfiguration.add_member(:s3_presign, Shapes::ShapeRef.new(shape: S3Presign, location_name: "S3Presign"))
9918
+ WorkerAccessConfiguration.struct_class = Types::WorkerAccessConfiguration
9919
+
9887
9920
  Workforce.add_member(:workforce_name, Shapes::ShapeRef.new(shape: WorkforceName, required: true, location_name: "WorkforceName"))
9888
9921
  Workforce.add_member(:workforce_arn, Shapes::ShapeRef.new(shape: WorkforceArn, required: true, location_name: "WorkforceArn"))
9889
9922
  Workforce.add_member(:last_updated_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUpdatedDate"))
@@ -9928,6 +9961,7 @@ module Aws::SageMaker
9928
9961
  Workteam.add_member(:create_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreateDate"))
9929
9962
  Workteam.add_member(:last_updated_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUpdatedDate"))
9930
9963
  Workteam.add_member(:notification_configuration, Shapes::ShapeRef.new(shape: NotificationConfiguration, location_name: "NotificationConfiguration"))
9964
+ Workteam.add_member(:worker_access_configuration, Shapes::ShapeRef.new(shape: WorkerAccessConfiguration, location_name: "WorkerAccessConfiguration"))
9931
9965
  Workteam.struct_class = Types::Workteam
9932
9966
 
9933
9967
  Workteams.member = Shapes::ShapeRef.new(shape: Workteam)