aws-sdk-sagemaker 1.242.0 → 1.244.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: beec203bdcab1b6932b1020a3e119505aa18341f0c78c1918c5c77ef88f4aa68
4
- data.tar.gz: 8fe3566a399d4f56f7abc1cf7362067e207d8cfa9d6ffe1446510db6f306db3b
3
+ metadata.gz: 027bbb7cf244d5d9be46cd690dc76ee429447d94787052040042459f572d3106
4
+ data.tar.gz: 90b6547c6ac9268f20911ed239846e128f4f8d16c12cc84cc170756502e11f26
5
5
  SHA512:
6
- metadata.gz: 5c70e8e01060eb2ccb51c26d2150c95ff561a3b86da3912652bc916dc28d1b1a4a863198701d564988906ebd35333280520278ca3e1d0e5e1036658ba8ac1d5a
7
- data.tar.gz: fe250ebf1758ebb0c6a8c28b4c498515b4bcba8768eb542597a029a484ea2a1c074599018197f681141bd60a92a8d54608b1b0f3d978f327fa08d50afd2cc4fe
6
+ metadata.gz: 8db6cc9005d62a776d72627300e8d36858192bdd21600d79ae9aa65f116053ca25ec8ed356f16ff91c4e8ada2c5b07f263614fd0b8fa44f54eb0ad19117df4e7
7
+ data.tar.gz: c61804a5123ceab6a75c861e9638a0e30f67ab4e1648ad8ef0572bb0adb118224dc8debfb22027270a6fdc5cb5aeb2c5d74eb14f87958e9b8d907efd731bb026
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.244.0 (2024-06-04)
5
+ ------------------
6
+
7
+ * Feature - Extend DescribeClusterNode response with private DNS hostname and IP address, and placement information about availability zone and availability zone ID.
8
+
9
+ 1.243.0 (2024-05-30)
10
+ ------------------
11
+
12
+ * 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.
13
+
4
14
  1.242.0 (2024-05-16)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.242.0
1
+ 1.244.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
@@ -11113,7 +11145,7 @@ module Aws::SageMaker
11113
11145
  # resp.auto_ml_job_config.candidate_generation_config.feature_specification_s3_uri #=> String
11114
11146
  # resp.auto_ml_job_config.candidate_generation_config.algorithms_config #=> Array
11115
11147
  # resp.auto_ml_job_config.candidate_generation_config.algorithms_config[0].auto_ml_algorithms #=> Array
11116
- # 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"
11117
11149
  # resp.auto_ml_job_config.data_split_config.validation_fraction #=> Float
11118
11150
  # resp.auto_ml_job_config.mode #=> String, one of "AUTO", "ENSEMBLING", "HYPERPARAMETER_TUNING"
11119
11151
  # resp.creation_time #=> Time
@@ -11263,9 +11295,12 @@ module Aws::SageMaker
11263
11295
  # resp.auto_ml_problem_type_config.time_series_forecasting_job_config.time_series_config.grouping_attribute_names[0] #=> String
11264
11296
  # resp.auto_ml_problem_type_config.time_series_forecasting_job_config.holiday_config #=> Array
11265
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"
11266
11301
  # resp.auto_ml_problem_type_config.tabular_job_config.candidate_generation_config.algorithms_config #=> Array
11267
11302
  # resp.auto_ml_problem_type_config.tabular_job_config.candidate_generation_config.algorithms_config[0].auto_ml_algorithms #=> Array
11268
- # 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"
11269
11304
  # resp.auto_ml_problem_type_config.tabular_job_config.completion_criteria.max_candidates #=> Integer
11270
11305
  # resp.auto_ml_problem_type_config.tabular_job_config.completion_criteria.max_runtime_per_training_job_in_seconds #=> Integer
11271
11306
  # resp.auto_ml_problem_type_config.tabular_job_config.completion_criteria.max_auto_ml_job_runtime_in_seconds #=> Integer
@@ -11405,15 +11440,15 @@ module Aws::SageMaker
11405
11440
  req.send_request(options)
11406
11441
  end
11407
11442
 
11408
- # Retrieves information of an instance (also called a *node*
11443
+ # Retrieves information of a node (also called a *instance*
11409
11444
  # interchangeably) of a SageMaker HyperPod cluster.
11410
11445
  #
11411
11446
  # @option params [required, String] :cluster_name
11412
11447
  # The string name or the Amazon Resource Name (ARN) of the SageMaker
11413
- # HyperPod cluster in which the instance is.
11448
+ # HyperPod cluster in which the node is.
11414
11449
  #
11415
11450
  # @option params [required, String] :node_id
11416
- # The ID of the instance.
11451
+ # The ID of the SageMaker HyperPod cluster node.
11417
11452
  #
11418
11453
  # @return [Types::DescribeClusterNodeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11419
11454
  #
@@ -11437,6 +11472,10 @@ module Aws::SageMaker
11437
11472
  # resp.node_details.life_cycle_config.source_s3_uri #=> String
11438
11473
  # resp.node_details.life_cycle_config.on_create #=> String
11439
11474
  # resp.node_details.threads_per_core #=> Integer
11475
+ # resp.node_details.private_primary_ip #=> String
11476
+ # resp.node_details.private_dns_hostname #=> String
11477
+ # resp.node_details.placement.availability_zone #=> String
11478
+ # resp.node_details.placement.availability_zone_id #=> String
11440
11479
  #
11441
11480
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeClusterNode AWS API Documentation
11442
11481
  #
@@ -14147,9 +14186,17 @@ module Aws::SageMaker
14147
14186
  # create SageMaker models or list them on Amazon Web Services
14148
14187
  # Marketplace.
14149
14188
  #
14189
+ # If you provided a KMS Key ID when you created your model package, you
14190
+ # will see the [KMS Decrypt][1] API call in your CloudTrail logs when
14191
+ # you use this API.
14192
+ #
14150
14193
  # To create models in SageMaker, buyers can subscribe to model packages
14151
14194
  # listed on Amazon Web Services Marketplace.
14152
14195
  #
14196
+ #
14197
+ #
14198
+ # [1]: https://docs.aws.amazon.com/kms/latest/APIReference/API_Decrypt.html
14199
+ #
14153
14200
  # @option params [required, String] :model_package_name
14154
14201
  # The name or Amazon Resource Name (ARN) of the model package to
14155
14202
  # describe.
@@ -14186,6 +14233,8 @@ module Aws::SageMaker
14186
14233
  # * {Types::DescribeModelPackageOutput#additional_inference_specifications #additional_inference_specifications} => Array<Types::AdditionalInferenceSpecificationDefinition>
14187
14234
  # * {Types::DescribeModelPackageOutput#skip_model_validation #skip_model_validation} => String
14188
14235
  # * {Types::DescribeModelPackageOutput#source_uri #source_uri} => String
14236
+ # * {Types::DescribeModelPackageOutput#security_config #security_config} => Types::ModelPackageSecurityConfig
14237
+ # * {Types::DescribeModelPackageOutput#model_card #model_card} => Types::ModelPackageModelCard
14189
14238
  #
14190
14239
  # @example Request syntax with placeholder values
14191
14240
  #
@@ -14372,6 +14421,9 @@ module Aws::SageMaker
14372
14421
  # resp.additional_inference_specifications[0].supported_response_mime_types[0] #=> String
14373
14422
  # resp.skip_model_validation #=> String, one of "All", "None"
14374
14423
  # resp.source_uri #=> String
14424
+ # resp.security_config.kms_key_id #=> String
14425
+ # resp.model_card.model_card_content #=> String
14426
+ # resp.model_card.model_card_status #=> String, one of "Draft", "PendingReview", "Approved", "Archived"
14375
14427
  #
14376
14428
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelPackage AWS API Documentation
14377
14429
  #
@@ -16712,7 +16764,7 @@ module Aws::SageMaker
16712
16764
  #
16713
16765
  # @option params [Integer] :max_results
16714
16766
  # This parameter defines the maximum number of results that can be
16715
- # returned in a single response. The `MaxResults` parameter is an upper
16767
+ # return in a single response. The `MaxResults` parameter is an upper
16716
16768
  # bound, not a target. If there are more results available than the
16717
16769
  # value specified, a `NextToken` is provided in the response. The
16718
16770
  # `NextToken` indicates that the user should get the next set of results
@@ -17782,7 +17834,7 @@ module Aws::SageMaker
17782
17834
  #
17783
17835
  # @option params [Integer] :max_results
17784
17836
  # This parameter defines the maximum number of results that can be
17785
- # returned in a single response. The `MaxResults` parameter is an upper
17837
+ # return in a single response. The `MaxResults` parameter is an upper
17786
17838
  # bound, not a target. If there are more results available than the
17787
17839
  # value specified, a `NextToken` is provided in the response. The
17788
17840
  # `NextToken` indicates that the user should get the next set of results
@@ -21251,7 +21303,7 @@ module Aws::SageMaker
21251
21303
  #
21252
21304
  # @option params [Integer] :max_results
21253
21305
  # This parameter defines the maximum number of results that can be
21254
- # returned in a single response. The `MaxResults` parameter is an upper
21306
+ # return in a single response. The `MaxResults` parameter is an upper
21255
21307
  # bound, not a target. If there are more results available than the
21256
21308
  # value specified, a `NextToken` is provided in the response. The
21257
21309
  # `NextToken` indicates that the user should get the next set of results
@@ -22023,7 +22075,7 @@ module Aws::SageMaker
22023
22075
  #
22024
22076
  # @option params [Integer] :max_results
22025
22077
  # This parameter defines the maximum number of results that can be
22026
- # returned in a single response. The `MaxResults` parameter is an upper
22078
+ # return in a single response. The `MaxResults` parameter is an upper
22027
22079
  # bound, not a target. If there are more results available than the
22028
22080
  # value specified, a `NextToken` is provided in the response. The
22029
22081
  # `NextToken` indicates that the user should get the next set of results
@@ -24928,6 +24980,20 @@ module Aws::SageMaker
24928
24980
  # @option params [String] :source_uri
24929
24981
  # The URI of the source for the model package.
24930
24982
  #
24983
+ # @option params [Types::ModelPackageModelCard] :model_card
24984
+ # The model card associated with the model package. Since
24985
+ # `ModelPackageModelCard` is tied to a model package, it is a specific
24986
+ # usage of a model card and its schema is simplified compared to the
24987
+ # schema of `ModelCard`. The `ModelPackageModelCard` schema does not
24988
+ # include `model_package_details`, and `model_overview` is composed of
24989
+ # the `model_creator` and `model_artifact` properties. For more
24990
+ # information about the model card associated with the model package,
24991
+ # see [View the Details of a Model Version][1].
24992
+ #
24993
+ #
24994
+ #
24995
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
24996
+ #
24931
24997
  # @return [Types::UpdateModelPackageOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
24932
24998
  #
24933
24999
  # * {Types::UpdateModelPackageOutput#model_package_arn #model_package_arn} => String
@@ -25025,6 +25091,10 @@ module Aws::SageMaker
25025
25091
  # supported_response_mime_types: ["ResponseMIMEType"],
25026
25092
  # },
25027
25093
  # source_uri: "ModelPackageSourceUri",
25094
+ # model_card: {
25095
+ # model_card_content: "ModelCardContent",
25096
+ # model_card_status: "Draft", # accepts Draft, PendingReview, Approved, Archived
25097
+ # },
25028
25098
  # })
25029
25099
  #
25030
25100
  # @example Response structure
@@ -26371,7 +26441,7 @@ module Aws::SageMaker
26371
26441
  params: params,
26372
26442
  config: config)
26373
26443
  context[:gem_name] = 'aws-sdk-sagemaker'
26374
- context[:gem_version] = '1.242.0'
26444
+ context[:gem_version] = '1.244.0'
26375
26445
  Seahorse::Client::Request.new(handlers, context)
26376
26446
  end
26377
26447
 
@@ -250,12 +250,15 @@ module Aws::SageMaker
250
250
  ClientSecret = Shapes::StringShape.new(name: 'ClientSecret')
251
251
  ClientToken = Shapes::StringShape.new(name: 'ClientToken')
252
252
  ClusterArn = Shapes::StringShape.new(name: 'ClusterArn')
253
+ ClusterAvailabilityZone = Shapes::StringShape.new(name: 'ClusterAvailabilityZone')
254
+ ClusterAvailabilityZoneId = Shapes::StringShape.new(name: 'ClusterAvailabilityZoneId')
253
255
  ClusterInstanceCount = Shapes::IntegerShape.new(name: 'ClusterInstanceCount')
254
256
  ClusterInstanceGroupDetails = Shapes::StructureShape.new(name: 'ClusterInstanceGroupDetails')
255
257
  ClusterInstanceGroupDetailsList = Shapes::ListShape.new(name: 'ClusterInstanceGroupDetailsList')
256
258
  ClusterInstanceGroupName = Shapes::StringShape.new(name: 'ClusterInstanceGroupName')
257
259
  ClusterInstanceGroupSpecification = Shapes::StructureShape.new(name: 'ClusterInstanceGroupSpecification')
258
260
  ClusterInstanceGroupSpecifications = Shapes::ListShape.new(name: 'ClusterInstanceGroupSpecifications')
261
+ ClusterInstancePlacement = Shapes::StructureShape.new(name: 'ClusterInstancePlacement')
259
262
  ClusterInstanceStatus = Shapes::StringShape.new(name: 'ClusterInstanceStatus')
260
263
  ClusterInstanceStatusDetails = Shapes::StructureShape.new(name: 'ClusterInstanceStatusDetails')
261
264
  ClusterInstanceType = Shapes::StringShape.new(name: 'ClusterInstanceType')
@@ -268,6 +271,8 @@ module Aws::SageMaker
268
271
  ClusterNodeSummaries = Shapes::ListShape.new(name: 'ClusterNodeSummaries')
269
272
  ClusterNodeSummary = Shapes::StructureShape.new(name: 'ClusterNodeSummary')
270
273
  ClusterNonNegativeInstanceCount = Shapes::IntegerShape.new(name: 'ClusterNonNegativeInstanceCount')
274
+ ClusterPrivateDnsHostname = Shapes::StringShape.new(name: 'ClusterPrivateDnsHostname')
275
+ ClusterPrivatePrimaryIp = Shapes::StringShape.new(name: 'ClusterPrivatePrimaryIp')
271
276
  ClusterSortBy = Shapes::StringShape.new(name: 'ClusterSortBy')
272
277
  ClusterStatus = Shapes::StringShape.new(name: 'ClusterStatus')
273
278
  ClusterSummaries = Shapes::ListShape.new(name: 'ClusterSummaries')
@@ -1436,6 +1441,8 @@ module Aws::SageMaker
1436
1441
  ModelPackageGroupStatus = Shapes::StringShape.new(name: 'ModelPackageGroupStatus')
1437
1442
  ModelPackageGroupSummary = Shapes::StructureShape.new(name: 'ModelPackageGroupSummary')
1438
1443
  ModelPackageGroupSummaryList = Shapes::ListShape.new(name: 'ModelPackageGroupSummaryList')
1444
+ ModelPackageModelCard = Shapes::StructureShape.new(name: 'ModelPackageModelCard')
1445
+ ModelPackageSecurityConfig = Shapes::StructureShape.new(name: 'ModelPackageSecurityConfig')
1439
1446
  ModelPackageSortBy = Shapes::StringShape.new(name: 'ModelPackageSortBy')
1440
1447
  ModelPackageSourceUri = Shapes::StringShape.new(name: 'ModelPackageSourceUri')
1441
1448
  ModelPackageStatus = Shapes::StringShape.new(name: 'ModelPackageStatus')
@@ -2844,6 +2851,10 @@ module Aws::SageMaker
2844
2851
 
2845
2852
  ClusterInstanceGroupSpecifications.member = Shapes::ShapeRef.new(shape: ClusterInstanceGroupSpecification)
2846
2853
 
2854
+ ClusterInstancePlacement.add_member(:availability_zone, Shapes::ShapeRef.new(shape: ClusterAvailabilityZone, location_name: "AvailabilityZone"))
2855
+ ClusterInstancePlacement.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: ClusterAvailabilityZoneId, location_name: "AvailabilityZoneId"))
2856
+ ClusterInstancePlacement.struct_class = Types::ClusterInstancePlacement
2857
+
2847
2858
  ClusterInstanceStatusDetails.add_member(:status, Shapes::ShapeRef.new(shape: ClusterInstanceStatus, required: true, location_name: "Status"))
2848
2859
  ClusterInstanceStatusDetails.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
2849
2860
  ClusterInstanceStatusDetails.struct_class = Types::ClusterInstanceStatusDetails
@@ -2859,6 +2870,9 @@ module Aws::SageMaker
2859
2870
  ClusterNodeDetails.add_member(:launch_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LaunchTime"))
2860
2871
  ClusterNodeDetails.add_member(:life_cycle_config, Shapes::ShapeRef.new(shape: ClusterLifeCycleConfig, location_name: "LifeCycleConfig"))
2861
2872
  ClusterNodeDetails.add_member(:threads_per_core, Shapes::ShapeRef.new(shape: ClusterThreadsPerCore, location_name: "ThreadsPerCore"))
2873
+ ClusterNodeDetails.add_member(:private_primary_ip, Shapes::ShapeRef.new(shape: ClusterPrivatePrimaryIp, location_name: "PrivatePrimaryIp"))
2874
+ ClusterNodeDetails.add_member(:private_dns_hostname, Shapes::ShapeRef.new(shape: ClusterPrivateDnsHostname, location_name: "PrivateDnsHostname"))
2875
+ ClusterNodeDetails.add_member(:placement, Shapes::ShapeRef.new(shape: ClusterInstancePlacement, location_name: "Placement"))
2862
2876
  ClusterNodeDetails.struct_class = Types::ClusterNodeDetails
2863
2877
 
2864
2878
  ClusterNodeSummaries.member = Shapes::ShapeRef.new(shape: ClusterNodeSummary)
@@ -3462,6 +3476,8 @@ module Aws::SageMaker
3462
3476
  CreateModelPackageInput.add_member(:additional_inference_specifications, Shapes::ShapeRef.new(shape: AdditionalInferenceSpecifications, location_name: "AdditionalInferenceSpecifications"))
3463
3477
  CreateModelPackageInput.add_member(:skip_model_validation, Shapes::ShapeRef.new(shape: SkipModelValidation, location_name: "SkipModelValidation"))
3464
3478
  CreateModelPackageInput.add_member(:source_uri, Shapes::ShapeRef.new(shape: ModelPackageSourceUri, location_name: "SourceUri"))
3479
+ CreateModelPackageInput.add_member(:security_config, Shapes::ShapeRef.new(shape: ModelPackageSecurityConfig, location_name: "SecurityConfig"))
3480
+ CreateModelPackageInput.add_member(:model_card, Shapes::ShapeRef.new(shape: ModelPackageModelCard, location_name: "ModelCard"))
3465
3481
  CreateModelPackageInput.struct_class = Types::CreateModelPackageInput
3466
3482
 
3467
3483
  CreateModelPackageOutput.add_member(:model_package_arn, Shapes::ShapeRef.new(shape: ModelPackageArn, required: true, location_name: "ModelPackageArn"))
@@ -4836,6 +4852,8 @@ module Aws::SageMaker
4836
4852
  DescribeModelPackageOutput.add_member(:additional_inference_specifications, Shapes::ShapeRef.new(shape: AdditionalInferenceSpecifications, location_name: "AdditionalInferenceSpecifications"))
4837
4853
  DescribeModelPackageOutput.add_member(:skip_model_validation, Shapes::ShapeRef.new(shape: SkipModelValidation, location_name: "SkipModelValidation"))
4838
4854
  DescribeModelPackageOutput.add_member(:source_uri, Shapes::ShapeRef.new(shape: ModelPackageSourceUri, location_name: "SourceUri"))
4855
+ DescribeModelPackageOutput.add_member(:security_config, Shapes::ShapeRef.new(shape: ModelPackageSecurityConfig, location_name: "SecurityConfig"))
4856
+ DescribeModelPackageOutput.add_member(:model_card, Shapes::ShapeRef.new(shape: ModelPackageModelCard, location_name: "ModelCard"))
4839
4857
  DescribeModelPackageOutput.struct_class = Types::DescribeModelPackageOutput
4840
4858
 
4841
4859
  DescribeModelQualityJobDefinitionRequest.add_member(:job_definition_name, Shapes::ShapeRef.new(shape: MonitoringJobDefinitionName, required: true, location_name: "JobDefinitionName"))
@@ -7644,6 +7662,8 @@ module Aws::SageMaker
7644
7662
  ModelPackage.add_member(:sample_payload_url, Shapes::ShapeRef.new(shape: String, location_name: "SamplePayloadUrl"))
7645
7663
  ModelPackage.add_member(:additional_inference_specifications, Shapes::ShapeRef.new(shape: AdditionalInferenceSpecifications, location_name: "AdditionalInferenceSpecifications"))
7646
7664
  ModelPackage.add_member(:source_uri, Shapes::ShapeRef.new(shape: ModelPackageSourceUri, location_name: "SourceUri"))
7665
+ ModelPackage.add_member(:security_config, Shapes::ShapeRef.new(shape: ModelPackageSecurityConfig, location_name: "SecurityConfig"))
7666
+ ModelPackage.add_member(:model_card, Shapes::ShapeRef.new(shape: ModelPackageModelCard, location_name: "ModelCard"))
7647
7667
  ModelPackage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
7648
7668
  ModelPackage.add_member(:customer_metadata_properties, Shapes::ShapeRef.new(shape: CustomerMetadataMap, location_name: "CustomerMetadataProperties"))
7649
7669
  ModelPackage.add_member(:drift_check_baselines, Shapes::ShapeRef.new(shape: DriftCheckBaselines, location_name: "DriftCheckBaselines"))
@@ -7686,6 +7706,13 @@ module Aws::SageMaker
7686
7706
 
7687
7707
  ModelPackageGroupSummaryList.member = Shapes::ShapeRef.new(shape: ModelPackageGroupSummary)
7688
7708
 
7709
+ ModelPackageModelCard.add_member(:model_card_content, Shapes::ShapeRef.new(shape: ModelCardContent, location_name: "ModelCardContent"))
7710
+ ModelPackageModelCard.add_member(:model_card_status, Shapes::ShapeRef.new(shape: ModelCardStatus, location_name: "ModelCardStatus"))
7711
+ ModelPackageModelCard.struct_class = Types::ModelPackageModelCard
7712
+
7713
+ ModelPackageSecurityConfig.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, required: true, location_name: "KmsKeyId"))
7714
+ ModelPackageSecurityConfig.struct_class = Types::ModelPackageSecurityConfig
7715
+
7689
7716
  ModelPackageStatusDetails.add_member(:validation_statuses, Shapes::ShapeRef.new(shape: ModelPackageStatusItemList, required: true, location_name: "ValidationStatuses"))
7690
7717
  ModelPackageStatusDetails.add_member(:image_scan_statuses, Shapes::ShapeRef.new(shape: ModelPackageStatusItemList, location_name: "ImageScanStatuses"))
7691
7718
  ModelPackageStatusDetails.struct_class = Types::ModelPackageStatusDetails
@@ -9145,6 +9172,7 @@ module Aws::SageMaker
9145
9172
  TimeSeriesForecastingJobConfig.add_member(:transformations, Shapes::ShapeRef.new(shape: TimeSeriesTransformations, location_name: "Transformations"))
9146
9173
  TimeSeriesForecastingJobConfig.add_member(:time_series_config, Shapes::ShapeRef.new(shape: TimeSeriesConfig, required: true, location_name: "TimeSeriesConfig"))
9147
9174
  TimeSeriesForecastingJobConfig.add_member(:holiday_config, Shapes::ShapeRef.new(shape: HolidayConfig, location_name: "HolidayConfig"))
9175
+ TimeSeriesForecastingJobConfig.add_member(:candidate_generation_config, Shapes::ShapeRef.new(shape: CandidateGenerationConfig, location_name: "CandidateGenerationConfig"))
9148
9176
  TimeSeriesForecastingJobConfig.struct_class = Types::TimeSeriesForecastingJobConfig
9149
9177
 
9150
9178
  TimeSeriesForecastingSettings.add_member(:status, Shapes::ShapeRef.new(shape: FeatureStatus, location_name: "Status"))
@@ -9684,6 +9712,7 @@ module Aws::SageMaker
9684
9712
  UpdateModelPackageInput.add_member(:additional_inference_specifications_to_add, Shapes::ShapeRef.new(shape: AdditionalInferenceSpecifications, location_name: "AdditionalInferenceSpecificationsToAdd"))
9685
9713
  UpdateModelPackageInput.add_member(:inference_specification, Shapes::ShapeRef.new(shape: InferenceSpecification, location_name: "InferenceSpecification"))
9686
9714
  UpdateModelPackageInput.add_member(:source_uri, Shapes::ShapeRef.new(shape: ModelPackageSourceUri, location_name: "SourceUri"))
9715
+ UpdateModelPackageInput.add_member(:model_card, Shapes::ShapeRef.new(shape: ModelPackageModelCard, location_name: "ModelCard"))
9687
9716
  UpdateModelPackageInput.struct_class = Types::UpdateModelPackageInput
9688
9717
 
9689
9718
  UpdateModelPackageOutput.add_member(:model_package_arn, Shapes::ShapeRef.new(shape: ModelPackageArn, required: true, location_name: "ModelPackageArn"))
@@ -9957,6 +9986,7 @@ module Aws::SageMaker
9957
9986
 
9958
9987
  api.metadata = {
9959
9988
  "apiVersion" => "2017-07-24",
9989
+ "auth" => ["aws.auth#sigv4"],
9960
9990
  "endpointPrefix" => "api.sagemaker",
9961
9991
  "jsonVersion" => "1.1",
9962
9992
  "protocol" => "json",
@@ -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"
1730
+ #
1731
+ # * "fastai"
1732
+ #
1733
+ # * "lightgbm"
1734
+ #
1735
+ # * "linear-learner"
1722
1736
  #
1723
- # * In `ENSEMBLING` mode:
1737
+ # * "nn-torch"
1724
1738
  #
1725
- # * "catboost"
1739
+ # * "randomforest"
1726
1740
  #
1727
- # * "extra-trees"
1741
+ # * "xgboost"
1728
1742
  #
1729
- # * "fastai"
1743
+ # * In `HYPERPARAMETER_TUNING` mode:
1730
1744
  #
1731
- # * "lightgbm"
1745
+ # * "linear-learner"
1732
1746
  #
1733
- # * "linear-learner"
1747
+ # * "mlp"
1734
1748
  #
1735
- # * "nn-torch"
1749
+ # * "xgboost"
1736
1750
  #
1737
- # * "randomforest"
1751
+ # * **For the time-series forecasting problem type
1752
+ # `TimeSeriesForecastingJobConfig`:**
1738
1753
  #
1739
- # * "xgboost"
1754
+ # * Choose your algorithms from this list.
1740
1755
  #
1741
- # * In `HYPERPARAMETER_TUNING` mode:
1756
+ # * "cnn-qr"
1742
1757
  #
1743
- # * "linear-learner"
1758
+ # * "deepar"
1744
1759
  #
1745
- # * "mlp"
1760
+ # * "prophet"
1746
1761
  #
1747
- # * "xgboost"
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
@@ -4042,6 +4089,29 @@ module Aws::SageMaker
4042
4089
  include Aws::Structure
4043
4090
  end
4044
4091
 
4092
+ # Specifies the placement details for the node in the SageMaker HyperPod
4093
+ # cluster, including the Availability Zone and the unique identifier
4094
+ # (ID) of the Availability Zone.
4095
+ #
4096
+ # @!attribute [rw] availability_zone
4097
+ # The Availability Zone where the node in the SageMaker HyperPod
4098
+ # cluster is launched.
4099
+ # @return [String]
4100
+ #
4101
+ # @!attribute [rw] availability_zone_id
4102
+ # The unique identifier (ID) of the Availability Zone where the node
4103
+ # in the SageMaker HyperPod cluster is launched.
4104
+ # @return [String]
4105
+ #
4106
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterInstancePlacement AWS API Documentation
4107
+ #
4108
+ class ClusterInstancePlacement < Struct.new(
4109
+ :availability_zone,
4110
+ :availability_zone_id)
4111
+ SENSITIVE = []
4112
+ include Aws::Structure
4113
+ end
4114
+
4045
4115
  # Details of an instance in a SageMaker HyperPod cluster.
4046
4116
  #
4047
4117
  # @!attribute [rw] status
@@ -4123,6 +4193,19 @@ module Aws::SageMaker
4123
4193
  # `CreateCluster`.
4124
4194
  # @return [Integer]
4125
4195
  #
4196
+ # @!attribute [rw] private_primary_ip
4197
+ # The private primary IP address of the SageMaker HyperPod cluster
4198
+ # node.
4199
+ # @return [String]
4200
+ #
4201
+ # @!attribute [rw] private_dns_hostname
4202
+ # The private DNS hostname of the SageMaker HyperPod cluster node.
4203
+ # @return [String]
4204
+ #
4205
+ # @!attribute [rw] placement
4206
+ # The placement details of the SageMaker HyperPod cluster node.
4207
+ # @return [Types::ClusterInstancePlacement]
4208
+ #
4126
4209
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterNodeDetails AWS API Documentation
4127
4210
  #
4128
4211
  class ClusterNodeDetails < Struct.new(
@@ -4132,7 +4215,10 @@ module Aws::SageMaker
4132
4215
  :instance_type,
4133
4216
  :launch_time,
4134
4217
  :life_cycle_config,
4135
- :threads_per_core)
4218
+ :threads_per_core,
4219
+ :private_primary_ip,
4220
+ :private_dns_hostname,
4221
+ :placement)
4136
4222
  SENSITIVE = []
4137
4223
  include Aws::Structure
4138
4224
  end
@@ -7967,6 +8053,26 @@ module Aws::SageMaker
7967
8053
  # (ARN). If you want to register a model, set it to the model ARN.
7968
8054
  # @return [String]
7969
8055
  #
8056
+ # @!attribute [rw] security_config
8057
+ # The KMS Key ID (`KMSKeyId`) used for encryption of model package
8058
+ # information.
8059
+ # @return [Types::ModelPackageSecurityConfig]
8060
+ #
8061
+ # @!attribute [rw] model_card
8062
+ # The model card associated with the model package. Since
8063
+ # `ModelPackageModelCard` is tied to a model package, it is a specific
8064
+ # usage of a model card and its schema is simplified compared to the
8065
+ # schema of `ModelCard`. The `ModelPackageModelCard` schema does not
8066
+ # include `model_package_details`, and `model_overview` is composed of
8067
+ # the `model_creator` and `model_artifact` properties. For more
8068
+ # information about the model card associated with the model package,
8069
+ # see [View the Details of a Model Version][1].
8070
+ #
8071
+ #
8072
+ #
8073
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
8074
+ # @return [Types::ModelPackageModelCard]
8075
+ #
7970
8076
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateModelPackageInput AWS API Documentation
7971
8077
  #
7972
8078
  class CreateModelPackageInput < Struct.new(
@@ -7989,7 +8095,9 @@ module Aws::SageMaker
7989
8095
  :drift_check_baselines,
7990
8096
  :additional_inference_specifications,
7991
8097
  :skip_model_validation,
7992
- :source_uri)
8098
+ :source_uri,
8099
+ :security_config,
8100
+ :model_card)
7993
8101
  SENSITIVE = []
7994
8102
  include Aws::Structure
7995
8103
  end
@@ -12063,11 +12171,11 @@ module Aws::SageMaker
12063
12171
 
12064
12172
  # @!attribute [rw] cluster_name
12065
12173
  # The string name or the Amazon Resource Name (ARN) of the SageMaker
12066
- # HyperPod cluster in which the instance is.
12174
+ # HyperPod cluster in which the node is.
12067
12175
  # @return [String]
12068
12176
  #
12069
12177
  # @!attribute [rw] node_id
12070
- # The ID of the instance.
12178
+ # The ID of the SageMaker HyperPod cluster node.
12071
12179
  # @return [String]
12072
12180
  #
12073
12181
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeClusterNodeRequest AWS API Documentation
@@ -12080,7 +12188,7 @@ module Aws::SageMaker
12080
12188
  end
12081
12189
 
12082
12190
  # @!attribute [rw] node_details
12083
- # The details of the instance.
12191
+ # The details of the SageMaker HyperPod cluster node.
12084
12192
  # @return [Types::ClusterNodeDetails]
12085
12193
  #
12086
12194
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeClusterNodeResponse AWS API Documentation
@@ -15380,6 +15488,26 @@ module Aws::SageMaker
15380
15488
  # The URI of the source for the model package.
15381
15489
  # @return [String]
15382
15490
  #
15491
+ # @!attribute [rw] security_config
15492
+ # The KMS Key ID (`KMSKeyId`) used for encryption of model package
15493
+ # information.
15494
+ # @return [Types::ModelPackageSecurityConfig]
15495
+ #
15496
+ # @!attribute [rw] model_card
15497
+ # The model card associated with the model package. Since
15498
+ # `ModelPackageModelCard` is tied to a model package, it is a specific
15499
+ # usage of a model card and its schema is simplified compared to the
15500
+ # schema of `ModelCard`. The `ModelPackageModelCard` schema does not
15501
+ # include `model_package_details`, and `model_overview` is composed of
15502
+ # the `model_creator` and `model_artifact` properties. For more
15503
+ # information about the model card associated with the model package,
15504
+ # see [View the Details of a Model Version][1].
15505
+ #
15506
+ #
15507
+ #
15508
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
15509
+ # @return [Types::ModelPackageModelCard]
15510
+ #
15383
15511
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelPackageOutput AWS API Documentation
15384
15512
  #
15385
15513
  class DescribeModelPackageOutput < Struct.new(
@@ -15409,7 +15537,9 @@ module Aws::SageMaker
15409
15537
  :drift_check_baselines,
15410
15538
  :additional_inference_specifications,
15411
15539
  :skip_model_validation,
15412
- :source_uri)
15540
+ :source_uri,
15541
+ :security_config,
15542
+ :model_card)
15413
15543
  SENSITIVE = []
15414
15544
  include Aws::Structure
15415
15545
  end
@@ -24939,9 +25069,9 @@ module Aws::SageMaker
24939
25069
  #
24940
25070
  # @!attribute [rw] max_results
24941
25071
  # This parameter defines the maximum number of results that can be
24942
- # returned in a single response. The `MaxResults` parameter is an
24943
- # upper bound, not a target. If there are more results available than
24944
- # the value specified, a `NextToken` is provided in the response. The
25072
+ # return in a single response. The `MaxResults` parameter is an upper
25073
+ # bound, not a target. If there are more results available than the
25074
+ # value specified, a `NextToken` is provided in the response. The
24945
25075
  # `NextToken` indicates that the user should get the next set of
24946
25076
  # results by providing this token as a part of a subsequent call. The
24947
25077
  # default value for `MaxResults` is 10.
@@ -25957,9 +26087,9 @@ module Aws::SageMaker
25957
26087
  #
25958
26088
  # @!attribute [rw] max_results
25959
26089
  # This parameter defines the maximum number of results that can be
25960
- # returned in a single response. The `MaxResults` parameter is an
25961
- # upper bound, not a target. If there are more results available than
25962
- # the value specified, a `NextToken` is provided in the response. The
26090
+ # return in a single response. The `MaxResults` parameter is an upper
26091
+ # bound, not a target. If there are more results available than the
26092
+ # value specified, a `NextToken` is provided in the response. The
25963
26093
  # `NextToken` indicates that the user should get the next set of
25964
26094
  # results by providing this token as a part of a subsequent call. The
25965
26095
  # default value for `MaxResults` is 10.
@@ -29283,9 +29413,9 @@ module Aws::SageMaker
29283
29413
  #
29284
29414
  # @!attribute [rw] max_results
29285
29415
  # This parameter defines the maximum number of results that can be
29286
- # returned in a single response. The `MaxResults` parameter is an
29287
- # upper bound, not a target. If there are more results available than
29288
- # the value specified, a `NextToken` is provided in the response. The
29416
+ # return in a single response. The `MaxResults` parameter is an upper
29417
+ # bound, not a target. If there are more results available than the
29418
+ # value specified, a `NextToken` is provided in the response. The
29289
29419
  # `NextToken` indicates that the user should get the next set of
29290
29420
  # results by providing this token as a part of a subsequent call. The
29291
29421
  # default value for `MaxResults` is 10.
@@ -29969,9 +30099,9 @@ module Aws::SageMaker
29969
30099
  #
29970
30100
  # @!attribute [rw] max_results
29971
30101
  # This parameter defines the maximum number of results that can be
29972
- # returned in a single response. The `MaxResults` parameter is an
29973
- # upper bound, not a target. If there are more results available than
29974
- # the value specified, a `NextToken` is provided in the response. The
30102
+ # return in a single response. The `MaxResults` parameter is an upper
30103
+ # bound, not a target. If there are more results available than the
30104
+ # value specified, a `NextToken` is provided in the response. The
29975
30105
  # `NextToken` indicates that the user should get the next set of
29976
30106
  # results by providing this token as a part of a subsequent call. The
29977
30107
  # default value for `MaxResults` is 10.
@@ -31594,6 +31724,27 @@ module Aws::SageMaker
31594
31724
  # The URI of the source for the model package.
31595
31725
  # @return [String]
31596
31726
  #
31727
+ # @!attribute [rw] security_config
31728
+ # An optional Key Management Service key to encrypt, decrypt, and
31729
+ # re-encrypt model package information for regulated workloads with
31730
+ # highly sensitive data.
31731
+ # @return [Types::ModelPackageSecurityConfig]
31732
+ #
31733
+ # @!attribute [rw] model_card
31734
+ # The model card associated with the model package. Since
31735
+ # `ModelPackageModelCard` is tied to a model package, it is a specific
31736
+ # usage of a model card and its schema is simplified compared to the
31737
+ # schema of `ModelCard`. The `ModelPackageModelCard` schema does not
31738
+ # include `model_package_details`, and `model_overview` is composed of
31739
+ # the `model_creator` and `model_artifact` properties. For more
31740
+ # information about the model card associated with the model package,
31741
+ # see [View the Details of a Model Version][1].
31742
+ #
31743
+ #
31744
+ #
31745
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
31746
+ # @return [Types::ModelPackageModelCard]
31747
+ #
31597
31748
  # @!attribute [rw] tags
31598
31749
  # A list of the tags associated with the model package. For more
31599
31750
  # information, see [Tagging Amazon Web Services resources][1] in the
@@ -31644,6 +31795,8 @@ module Aws::SageMaker
31644
31795
  :sample_payload_url,
31645
31796
  :additional_inference_specifications,
31646
31797
  :source_uri,
31798
+ :security_config,
31799
+ :model_card,
31647
31800
  :tags,
31648
31801
  :customer_metadata_properties,
31649
31802
  :drift_check_baselines,
@@ -31847,6 +32000,66 @@ module Aws::SageMaker
31847
32000
  include Aws::Structure
31848
32001
  end
31849
32002
 
32003
+ # The model card associated with the model package. Since
32004
+ # `ModelPackageModelCard` is tied to a model package, it is a specific
32005
+ # usage of a model card and its schema is simplified compared to the
32006
+ # schema of `ModelCard`. The `ModelPackageModelCard` schema does not
32007
+ # include `model_package_details`, and `model_overview` is composed of
32008
+ # the `model_creator` and `model_artifact` properties. For more
32009
+ # information about the model card associated with the model package,
32010
+ # see [View the Details of a Model Version][1].
32011
+ #
32012
+ #
32013
+ #
32014
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
32015
+ #
32016
+ # @!attribute [rw] model_card_content
32017
+ # The content of the model card.
32018
+ # @return [String]
32019
+ #
32020
+ # @!attribute [rw] model_card_status
32021
+ # The approval status of the model card within your organization.
32022
+ # Different organizations might have different criteria for model card
32023
+ # review and approval.
32024
+ #
32025
+ # * `Draft`: The model card is a work in progress.
32026
+ #
32027
+ # * `PendingReview`: The model card is pending review.
32028
+ #
32029
+ # * `Approved`: The model card is approved.
32030
+ #
32031
+ # * `Archived`: The model card is archived. No more updates can be
32032
+ # made to the model card content. If you try to update the model
32033
+ # card content, you will receive the message `Model Card is in
32034
+ # Archived state`.
32035
+ # @return [String]
32036
+ #
32037
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelPackageModelCard AWS API Documentation
32038
+ #
32039
+ class ModelPackageModelCard < Struct.new(
32040
+ :model_card_content,
32041
+ :model_card_status)
32042
+ SENSITIVE = [:model_card_content]
32043
+ include Aws::Structure
32044
+ end
32045
+
32046
+ # An optional Key Management Service key to encrypt, decrypt, and
32047
+ # re-encrypt model package information for regulated workloads with
32048
+ # highly sensitive data.
32049
+ #
32050
+ # @!attribute [rw] kms_key_id
32051
+ # The KMS Key ID (`KMSKeyId`) used for encryption of model package
32052
+ # information.
32053
+ # @return [String]
32054
+ #
32055
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelPackageSecurityConfig AWS API Documentation
32056
+ #
32057
+ class ModelPackageSecurityConfig < Struct.new(
32058
+ :kms_key_id)
32059
+ SENSITIVE = []
32060
+ include Aws::Structure
32061
+ end
32062
+
31850
32063
  # Specifies the validation and image scan statuses of the model package.
31851
32064
  #
31852
32065
  # @!attribute [rw] validation_statuses
@@ -40683,6 +40896,11 @@ module Aws::SageMaker
40683
40896
  # model.
40684
40897
  # @return [Array<Types::HolidayConfigAttributes>]
40685
40898
  #
40899
+ # @!attribute [rw] candidate_generation_config
40900
+ # Stores the configuration information for how model candidates are
40901
+ # generated using an AutoML job V2.
40902
+ # @return [Types::CandidateGenerationConfig]
40903
+ #
40686
40904
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TimeSeriesForecastingJobConfig AWS API Documentation
40687
40905
  #
40688
40906
  class TimeSeriesForecastingJobConfig < Struct.new(
@@ -40693,7 +40911,8 @@ module Aws::SageMaker
40693
40911
  :forecast_quantiles,
40694
40912
  :transformations,
40695
40913
  :time_series_config,
40696
- :holiday_config)
40914
+ :holiday_config,
40915
+ :candidate_generation_config)
40697
40916
  SENSITIVE = []
40698
40917
  include Aws::Structure
40699
40918
  end
@@ -43929,6 +44148,21 @@ module Aws::SageMaker
43929
44148
  # The URI of the source for the model package.
43930
44149
  # @return [String]
43931
44150
  #
44151
+ # @!attribute [rw] model_card
44152
+ # The model card associated with the model package. Since
44153
+ # `ModelPackageModelCard` is tied to a model package, it is a specific
44154
+ # usage of a model card and its schema is simplified compared to the
44155
+ # schema of `ModelCard`. The `ModelPackageModelCard` schema does not
44156
+ # include `model_package_details`, and `model_overview` is composed of
44157
+ # the `model_creator` and `model_artifact` properties. For more
44158
+ # information about the model card associated with the model package,
44159
+ # see [View the Details of a Model Version][1].
44160
+ #
44161
+ #
44162
+ #
44163
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
44164
+ # @return [Types::ModelPackageModelCard]
44165
+ #
43932
44166
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateModelPackageInput AWS API Documentation
43933
44167
  #
43934
44168
  class UpdateModelPackageInput < Struct.new(
@@ -43939,7 +44173,8 @@ module Aws::SageMaker
43939
44173
  :customer_metadata_properties_to_remove,
43940
44174
  :additional_inference_specifications_to_add,
43941
44175
  :inference_specification,
43942
- :source_uri)
44176
+ :source_uri,
44177
+ :model_card)
43943
44178
  SENSITIVE = []
43944
44179
  include Aws::Structure
43945
44180
  end
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-sagemaker/customizations'
53
53
  # @!group service
54
54
  module Aws::SageMaker
55
55
 
56
- GEM_VERSION = '1.242.0'
56
+ GEM_VERSION = '1.244.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -519,7 +519,7 @@ module Aws
519
519
  feature_specification_s3_uri: ::String?,
520
520
  algorithms_config: Array[
521
521
  {
522
- auto_ml_algorithms: Array[("xgboost" | "linear-learner" | "mlp" | "lightgbm" | "catboost" | "randomforest" | "extra-trees" | "nn-torch" | "fastai")]
522
+ auto_ml_algorithms: Array[("xgboost" | "linear-learner" | "mlp" | "lightgbm" | "catboost" | "randomforest" | "extra-trees" | "nn-torch" | "fastai" | "cnn-qr" | "deepar" | "prophet" | "npts" | "arima" | "ets")]
523
523
  },
524
524
  ]?
525
525
  }?,
@@ -608,13 +608,20 @@ module Aws
608
608
  {
609
609
  country_code: ::String?
610
610
  },
611
- ]?
611
+ ]?,
612
+ candidate_generation_config: {
613
+ algorithms_config: Array[
614
+ {
615
+ auto_ml_algorithms: Array[("xgboost" | "linear-learner" | "mlp" | "lightgbm" | "catboost" | "randomforest" | "extra-trees" | "nn-torch" | "fastai" | "cnn-qr" | "deepar" | "prophet" | "npts" | "arima" | "ets")]
616
+ },
617
+ ]?
618
+ }?
612
619
  }?,
613
620
  tabular_job_config: {
614
621
  candidate_generation_config: {
615
622
  algorithms_config: Array[
616
623
  {
617
- auto_ml_algorithms: Array[("xgboost" | "linear-learner" | "mlp" | "lightgbm" | "catboost" | "randomforest" | "extra-trees" | "nn-torch" | "fastai")]
624
+ auto_ml_algorithms: Array[("xgboost" | "linear-learner" | "mlp" | "lightgbm" | "catboost" | "randomforest" | "extra-trees" | "nn-torch" | "fastai" | "cnn-qr" | "deepar" | "prophet" | "npts" | "arima" | "ets")]
618
625
  },
619
626
  ]?
620
627
  }?,
@@ -2887,7 +2894,14 @@ module Aws
2887
2894
  },
2888
2895
  ],
2889
2896
  ?skip_model_validation: ("All" | "None"),
2890
- ?source_uri: ::String
2897
+ ?source_uri: ::String,
2898
+ ?security_config: {
2899
+ kms_key_id: ::String
2900
+ },
2901
+ ?model_card: {
2902
+ model_card_content: ::String?,
2903
+ model_card_status: ("Draft" | "PendingReview" | "Approved" | "Archived")?
2904
+ }
2891
2905
  ) -> _CreateModelPackageResponseSuccess
2892
2906
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateModelPackageResponseSuccess
2893
2907
 
@@ -5307,6 +5321,8 @@ module Aws
5307
5321
  def additional_inference_specifications: () -> ::Array[Types::AdditionalInferenceSpecificationDefinition]
5308
5322
  def skip_model_validation: () -> ("All" | "None")
5309
5323
  def source_uri: () -> ::String
5324
+ def security_config: () -> Types::ModelPackageSecurityConfig
5325
+ def model_card: () -> Types::ModelPackageModelCard
5310
5326
  end
5311
5327
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#describe_model_package-instance_method
5312
5328
  def describe_model_package: (
@@ -8362,7 +8378,11 @@ module Aws
8362
8378
  supported_content_types: Array[::String]?,
8363
8379
  supported_response_mime_types: Array[::String]?
8364
8380
  },
8365
- ?source_uri: ::String
8381
+ ?source_uri: ::String,
8382
+ ?model_card: {
8383
+ model_card_content: ::String?,
8384
+ model_card_status: ("Draft" | "PendingReview" | "Approved" | "Archived")?
8385
+ }
8366
8386
  ) -> _UpdateModelPackageResponseSuccess
8367
8387
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateModelPackageResponseSuccess
8368
8388
 
data/sig/types.rbs CHANGED
@@ -247,7 +247,7 @@ module Aws::SageMaker
247
247
  end
248
248
 
249
249
  class AutoMLAlgorithmConfig
250
- attr_accessor auto_ml_algorithms: ::Array[("xgboost" | "linear-learner" | "mlp" | "lightgbm" | "catboost" | "randomforest" | "extra-trees" | "nn-torch" | "fastai")]
250
+ attr_accessor auto_ml_algorithms: ::Array[("xgboost" | "linear-learner" | "mlp" | "lightgbm" | "catboost" | "randomforest" | "extra-trees" | "nn-torch" | "fastai" | "cnn-qr" | "deepar" | "prophet" | "npts" | "arima" | "ets")]
251
251
  SENSITIVE: []
252
252
  end
253
253
 
@@ -694,6 +694,12 @@ module Aws::SageMaker
694
694
  SENSITIVE: []
695
695
  end
696
696
 
697
+ class ClusterInstancePlacement
698
+ attr_accessor availability_zone: ::String
699
+ attr_accessor availability_zone_id: ::String
700
+ SENSITIVE: []
701
+ end
702
+
697
703
  class ClusterInstanceStatusDetails
698
704
  attr_accessor status: ("Running" | "Failure" | "Pending" | "ShuttingDown" | "SystemUpdating")
699
705
  attr_accessor message: ::String
@@ -714,6 +720,9 @@ module Aws::SageMaker
714
720
  attr_accessor launch_time: ::Time
715
721
  attr_accessor life_cycle_config: Types::ClusterLifeCycleConfig
716
722
  attr_accessor threads_per_core: ::Integer
723
+ attr_accessor private_primary_ip: ::String
724
+ attr_accessor private_dns_hostname: ::String
725
+ attr_accessor placement: Types::ClusterInstancePlacement
717
726
  SENSITIVE: []
718
727
  end
719
728
 
@@ -1473,6 +1482,8 @@ module Aws::SageMaker
1473
1482
  attr_accessor additional_inference_specifications: ::Array[Types::AdditionalInferenceSpecificationDefinition]
1474
1483
  attr_accessor skip_model_validation: ("All" | "None")
1475
1484
  attr_accessor source_uri: ::String
1485
+ attr_accessor security_config: Types::ModelPackageSecurityConfig
1486
+ attr_accessor model_card: Types::ModelPackageModelCard
1476
1487
  SENSITIVE: []
1477
1488
  end
1478
1489
 
@@ -3245,6 +3256,8 @@ module Aws::SageMaker
3245
3256
  attr_accessor additional_inference_specifications: ::Array[Types::AdditionalInferenceSpecificationDefinition]
3246
3257
  attr_accessor skip_model_validation: ("All" | "None")
3247
3258
  attr_accessor source_uri: ::String
3259
+ attr_accessor security_config: Types::ModelPackageSecurityConfig
3260
+ attr_accessor model_card: Types::ModelPackageModelCard
3248
3261
  SENSITIVE: []
3249
3262
  end
3250
3263
 
@@ -6667,6 +6680,8 @@ module Aws::SageMaker
6667
6680
  attr_accessor sample_payload_url: ::String
6668
6681
  attr_accessor additional_inference_specifications: ::Array[Types::AdditionalInferenceSpecificationDefinition]
6669
6682
  attr_accessor source_uri: ::String
6683
+ attr_accessor security_config: Types::ModelPackageSecurityConfig
6684
+ attr_accessor model_card: Types::ModelPackageModelCard
6670
6685
  attr_accessor tags: ::Array[Types::Tag]
6671
6686
  attr_accessor customer_metadata_properties: ::Hash[::String, ::String]
6672
6687
  attr_accessor drift_check_baselines: Types::DriftCheckBaselines
@@ -6710,6 +6725,17 @@ module Aws::SageMaker
6710
6725
  SENSITIVE: []
6711
6726
  end
6712
6727
 
6728
+ class ModelPackageModelCard
6729
+ attr_accessor model_card_content: ::String
6730
+ attr_accessor model_card_status: ("Draft" | "PendingReview" | "Approved" | "Archived")
6731
+ SENSITIVE: [:model_card_content]
6732
+ end
6733
+
6734
+ class ModelPackageSecurityConfig
6735
+ attr_accessor kms_key_id: ::String
6736
+ SENSITIVE: []
6737
+ end
6738
+
6713
6739
  class ModelPackageStatusDetails
6714
6740
  attr_accessor validation_statuses: ::Array[Types::ModelPackageStatusItem]
6715
6741
  attr_accessor image_scan_statuses: ::Array[Types::ModelPackageStatusItem]
@@ -8476,6 +8502,7 @@ module Aws::SageMaker
8476
8502
  attr_accessor transformations: Types::TimeSeriesTransformations
8477
8503
  attr_accessor time_series_config: Types::TimeSeriesConfig
8478
8504
  attr_accessor holiday_config: ::Array[Types::HolidayConfigAttributes]
8505
+ attr_accessor candidate_generation_config: Types::CandidateGenerationConfig
8479
8506
  SENSITIVE: []
8480
8507
  end
8481
8508
 
@@ -9145,6 +9172,7 @@ module Aws::SageMaker
9145
9172
  attr_accessor additional_inference_specifications_to_add: ::Array[Types::AdditionalInferenceSpecificationDefinition]
9146
9173
  attr_accessor inference_specification: Types::InferenceSpecification
9147
9174
  attr_accessor source_uri: ::String
9175
+ attr_accessor model_card: Types::ModelPackageModelCard
9148
9176
  SENSITIVE: []
9149
9177
  end
9150
9178
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sagemaker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.242.0
4
+ version: 1.244.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-16 00:00:00.000000000 Z
11
+ date: 2024-06-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core