aws-sdk-sagemaker 1.124.0 → 1.125.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: 9ceab2f327775120810a9168b484c2136443fd8965214dc62167020d086cf515
4
- data.tar.gz: 276c373d6d2dea96c4db956f50b0e5ea11805e4976619c88585c0e80ab66813b
3
+ metadata.gz: 1f97206ef17f703b610f4f7a9cda71cc9c62446f1f2876d6c5871b7d83988cc0
4
+ data.tar.gz: 71b2008205344c8f06d5714f6b05da1b87b34f769c5afc97b5287842899befbc
5
5
  SHA512:
6
- metadata.gz: 28e72f8543f5b02c0b989e0402acfc2435c4a39ab963e36c333e06b638a537d3d902a8fd7ab3e4a646c6129c7e2fed73ac10202e88cc7acea0fa063cd3e57c0e
7
- data.tar.gz: d21e871f1aaeb6022b63dd17051a1806c589b28bfdec4377d233db548aa89ab0cc19eb2a6c19c299289047bc23d8315b62a41c170d436de27a27ad3895f77bad
6
+ metadata.gz: 2a2e678525eb7d763c856e027d83064b2fc7f4fb447f202616333d66db697e2379bdca47961208f0c277a1ec5c6456344c6bb33e7b372cec5fbe50127d0e4593
7
+ data.tar.gz: b4acd782158706a87c791d3ec67de1c6f8711e07ed8d1611e1fd0d463a84b33d38b07b6ac9e8d722516e048c2707e799f4f449bffd70abf24acc8ee80fd1fc99
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.125.0 (2022-05-25)
5
+ ------------------
6
+
7
+ * Feature - Amazon SageMaker Autopilot adds support for manually selecting features from the input dataset using the CreateAutoMLJob API.
8
+
4
9
  1.124.0 (2022-05-03)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.124.0
1
+ 1.125.0
@@ -1148,8 +1148,9 @@ module Aws::SageMaker
1148
1148
  # @option params [required, Array<Types::AutoMLChannel>] :input_data_config
1149
1149
  # An array of channel objects that describes the input data and its
1150
1150
  # location. Each channel is a named input source. Similar to
1151
- # `InputDataConfig` supported by . Format(s) supported: CSV. Minimum of
1152
- # 500 rows.
1151
+ # `InputDataConfig` supported by . Format(s) supported: CSV, Parquet. A
1152
+ # minimum of 500 rows is required for the training dataset. There is not
1153
+ # a minimum number of rows required for the validation dataset.
1153
1154
  #
1154
1155
  # @option params [required, Types::AutoMLOutputDataConfig] :output_data_config
1155
1156
  # Provides information about encryption and the Amazon S3 output path
@@ -1158,9 +1159,8 @@ module Aws::SageMaker
1158
1159
  #
1159
1160
  # @option params [String] :problem_type
1160
1161
  # Defines the type of supervised learning available for the candidates.
1161
- # Options include: `BinaryClassification`, `MulticlassClassification`,
1162
- # and `Regression`. For more information, see [ Amazon SageMaker
1163
- # Autopilot problem types and algorithm support][1].
1162
+ # For more information, see [ Amazon SageMaker Autopilot problem types
1163
+ # and algorithm support][1].
1164
1164
  #
1165
1165
  #
1166
1166
  #
@@ -1172,8 +1172,7 @@ module Aws::SageMaker
1172
1172
  # Autopilot infers whether to minimize or maximize it.
1173
1173
  #
1174
1174
  # @option params [Types::AutoMLJobConfig] :auto_ml_job_config
1175
- # Contains `CompletionCriteria` and `SecurityConfig` settings for the
1176
- # AutoML job.
1175
+ # A collection of settings used to configure an AutoML job.
1177
1176
  #
1178
1177
  # @option params [required, String] :role_arn
1179
1178
  # The ARN of the role that is used to access the data.
@@ -1238,6 +1237,9 @@ module Aws::SageMaker
1238
1237
  # data_split_config: {
1239
1238
  # validation_fraction: 1.0,
1240
1239
  # },
1240
+ # candidate_generation_config: {
1241
+ # feature_specification_s3_uri: "S3Uri",
1242
+ # },
1241
1243
  # },
1242
1244
  # role_arn: "RoleArn", # required
1243
1245
  # generate_candidate_definitions_only: false,
@@ -2269,6 +2271,7 @@ module Aws::SageMaker
2269
2271
  # want to host at this endpoint.
2270
2272
  #
2271
2273
  # @option params [Types::DataCaptureConfig] :data_capture_config
2274
+ # Configuration to control how SageMaker captures inference data.
2272
2275
  #
2273
2276
  # @option params [Array<Types::Tag>] :tags
2274
2277
  # An array of key-value pairs. You can use tags to categorize your
@@ -4235,7 +4238,12 @@ module Aws::SageMaker
4235
4238
  # @option params [String] :task
4236
4239
  # The machine learning task your model package accomplishes. Common
4237
4240
  # machine learning tasks include object detection and image
4238
- # classification.
4241
+ # classification. The following tasks are supported by Inference
4242
+ # Recommender: `"IMAGE_CLASSIFICATION"` \| `"OBJECT_DETECTION"` \|
4243
+ # `"TEXT_GENERATION"` \|`"IMAGE_SEGMENTATION"` \| `"FILL_MASK"` \|
4244
+ # `"CLASSIFICATION"` \| `"REGRESSION"` \| `"OTHER"`.
4245
+ #
4246
+ # Specify "OTHER" if none of the tasks listed fit your use case.
4239
4247
  #
4240
4248
  # @option params [String] :sample_payload_url
4241
4249
  # The Amazon Simple Storage Service (Amazon S3) path where the sample
@@ -6038,7 +6046,7 @@ module Aws::SageMaker
6038
6046
  # * `ModelName` - Identifies the model to use. `ModelName` must be the
6039
6047
  # name of an existing Amazon SageMaker model in the same Amazon Web
6040
6048
  # Services Region and Amazon Web Services account. For information on
6041
- # creating a model, see CreateModel.
6049
+ # creating a model, see [CreateModel][1].
6042
6050
  #
6043
6051
  # * `TransformInput` - Describes the dataset to be transformed and the
6044
6052
  # Amazon S3 location where it is stored.
@@ -6050,11 +6058,12 @@ module Aws::SageMaker
6050
6058
  # transform job.
6051
6059
  #
6052
6060
  # For more information about how batch transformation works, see [Batch
6053
- # Transform][1].
6061
+ # Transform][2].
6054
6062
  #
6055
6063
  #
6056
6064
  #
6057
- # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/batch-transform.html
6065
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateModel.html
6066
+ # [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/batch-transform.html
6058
6067
  #
6059
6068
  # @option params [required, String] :transform_job_name
6060
6069
  # The name of the transform job. The name must be unique within an
@@ -8287,6 +8296,7 @@ module Aws::SageMaker
8287
8296
  # resp.auto_ml_job_config.security_config.vpc_config.subnets #=> Array
8288
8297
  # resp.auto_ml_job_config.security_config.vpc_config.subnets[0] #=> String
8289
8298
  # resp.auto_ml_job_config.data_split_config.validation_fraction #=> Float
8299
+ # resp.auto_ml_job_config.candidate_generation_config.feature_specification_s3_uri #=> String
8290
8300
  # resp.creation_time #=> Time
8291
8301
  # resp.end_time #=> Time
8292
8302
  # resp.last_modified_time #=> Time
@@ -19538,7 +19548,7 @@ module Aws::SageMaker
19538
19548
  params: params,
19539
19549
  config: config)
19540
19550
  context[:gem_name] = 'aws-sdk-sagemaker'
19541
- context[:gem_version] = '1.124.0'
19551
+ context[:gem_version] = '1.125.0'
19542
19552
  Seahorse::Client::Request.new(handlers, context)
19543
19553
  end
19544
19554
 
@@ -96,6 +96,7 @@ module Aws::SageMaker
96
96
  AuthMode = Shapes::StringShape.new(name: 'AuthMode')
97
97
  AutoGenerateEndpointName = Shapes::BooleanShape.new(name: 'AutoGenerateEndpointName')
98
98
  AutoMLCandidate = Shapes::StructureShape.new(name: 'AutoMLCandidate')
99
+ AutoMLCandidateGenerationConfig = Shapes::StructureShape.new(name: 'AutoMLCandidateGenerationConfig')
99
100
  AutoMLCandidateStep = Shapes::StructureShape.new(name: 'AutoMLCandidateStep')
100
101
  AutoMLCandidates = Shapes::ListShape.new(name: 'AutoMLCandidates')
101
102
  AutoMLChannel = Shapes::StructureShape.new(name: 'AutoMLChannel')
@@ -1826,6 +1827,9 @@ module Aws::SageMaker
1826
1827
  AutoMLCandidate.add_member(:candidate_properties, Shapes::ShapeRef.new(shape: CandidateProperties, location_name: "CandidateProperties"))
1827
1828
  AutoMLCandidate.struct_class = Types::AutoMLCandidate
1828
1829
 
1830
+ AutoMLCandidateGenerationConfig.add_member(:feature_specification_s3_uri, Shapes::ShapeRef.new(shape: S3Uri, location_name: "FeatureSpecificationS3Uri"))
1831
+ AutoMLCandidateGenerationConfig.struct_class = Types::AutoMLCandidateGenerationConfig
1832
+
1829
1833
  AutoMLCandidateStep.add_member(:candidate_step_type, Shapes::ShapeRef.new(shape: CandidateStepType, required: true, location_name: "CandidateStepType"))
1830
1834
  AutoMLCandidateStep.add_member(:candidate_step_arn, Shapes::ShapeRef.new(shape: CandidateStepArn, required: true, location_name: "CandidateStepArn"))
1831
1835
  AutoMLCandidateStep.add_member(:candidate_step_name, Shapes::ShapeRef.new(shape: CandidateStepName, required: true, location_name: "CandidateStepName"))
@@ -1867,6 +1871,7 @@ module Aws::SageMaker
1867
1871
  AutoMLJobConfig.add_member(:completion_criteria, Shapes::ShapeRef.new(shape: AutoMLJobCompletionCriteria, location_name: "CompletionCriteria"))
1868
1872
  AutoMLJobConfig.add_member(:security_config, Shapes::ShapeRef.new(shape: AutoMLSecurityConfig, location_name: "SecurityConfig"))
1869
1873
  AutoMLJobConfig.add_member(:data_split_config, Shapes::ShapeRef.new(shape: AutoMLDataSplitConfig, location_name: "DataSplitConfig"))
1874
+ AutoMLJobConfig.add_member(:candidate_generation_config, Shapes::ShapeRef.new(shape: AutoMLCandidateGenerationConfig, location_name: "CandidateGenerationConfig"))
1870
1875
  AutoMLJobConfig.struct_class = Types::AutoMLJobConfig
1871
1876
 
1872
1877
  AutoMLJobObjective.add_member(:metric_name, Shapes::ShapeRef.new(shape: AutoMLMetricEnum, required: true, location_name: "MetricName"))
@@ -2007,6 +2007,38 @@ module Aws::SageMaker
2007
2007
  include Aws::Structure
2008
2008
  end
2009
2009
 
2010
+ # Stores the config information for how a candidate is generated
2011
+ # (optional).
2012
+ #
2013
+ # @note When making an API call, you may pass AutoMLCandidateGenerationConfig
2014
+ # data as a hash:
2015
+ #
2016
+ # {
2017
+ # feature_specification_s3_uri: "S3Uri",
2018
+ # }
2019
+ #
2020
+ # @!attribute [rw] feature_specification_s3_uri
2021
+ # A URL to the Amazon S3 data source containing selected features from
2022
+ # the input data source to run an Autopilot job (optional). This file
2023
+ # should be in json format as shown below:
2024
+ #
2025
+ # `\{ "FeatureAttributeNames":["col1", "col2", ...] \}`.
2026
+ #
2027
+ # The key name `FeatureAttributeNames` is fixed. The values listed in
2028
+ # `["col1", "col2", ...]` is case sensitive and should be a list of
2029
+ # strings containing unique values that are a subset of the column
2030
+ # names in the input data. The list of columns provided must not
2031
+ # include the target column.
2032
+ # @return [String]
2033
+ #
2034
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AutoMLCandidateGenerationConfig AWS API Documentation
2035
+ #
2036
+ class AutoMLCandidateGenerationConfig < Struct.new(
2037
+ :feature_specification_s3_uri)
2038
+ SENSITIVE = []
2039
+ include Aws::Structure
2040
+ end
2041
+
2010
2042
  # Information about the steps for a candidate and what step it is
2011
2043
  # working on.
2012
2044
  #
@@ -2079,9 +2111,15 @@ module Aws::SageMaker
2079
2111
  # @return [String]
2080
2112
  #
2081
2113
  # @!attribute [rw] channel_type
2082
- # The channel type (optional) is an enum string. The default value is
2083
- # `training`. Channels for training and validation must share the same
2084
- # `ContentType` and `TargetAttributeName`.
2114
+ # The channel type (optional) is an `enum` string. The default value
2115
+ # is `training`. Channels for training and validation must share the
2116
+ # same `ContentType` and `TargetAttributeName`. For information on
2117
+ # specifying training and validation channel types, see [ `How to
2118
+ # specify training and validation datasets` ][1].
2119
+ #
2120
+ #
2121
+ #
2122
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-datasets-problem-types.html#autopilot-data-sources-training-or-validation
2085
2123
  # @return [String]
2086
2124
  #
2087
2125
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AutoMLChannel AWS API Documentation
@@ -2165,8 +2203,8 @@ module Aws::SageMaker
2165
2203
  # @!attribute [rw] validation_fraction
2166
2204
  # The validation fraction (optional) is a float that specifies the
2167
2205
  # portion of the training dataset to be used for validation. The
2168
- # default value is 0.2, and values can range from 0 to 1. We recommend
2169
- # setting this value to be less than 0.5.
2206
+ # default value is 0.2, and values must be greater than 0 and less
2207
+ # than 1. We recommend setting this value to be less than 0.5.
2170
2208
  # @return [Float]
2171
2209
  #
2172
2210
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AutoMLDataSplitConfig AWS API Documentation
@@ -2261,6 +2299,9 @@ module Aws::SageMaker
2261
2299
  # data_split_config: {
2262
2300
  # validation_fraction: 1.0,
2263
2301
  # },
2302
+ # candidate_generation_config: {
2303
+ # feature_specification_s3_uri: "S3Uri",
2304
+ # },
2264
2305
  # }
2265
2306
  #
2266
2307
  # @!attribute [rw] completion_criteria
@@ -2279,12 +2320,18 @@ module Aws::SageMaker
2279
2320
  # Type: AutoMLDataSplitConfig
2280
2321
  # @return [Types::AutoMLDataSplitConfig]
2281
2322
  #
2323
+ # @!attribute [rw] candidate_generation_config
2324
+ # The configuration for generating a candidate for an AutoML job
2325
+ # (optional).
2326
+ # @return [Types::AutoMLCandidateGenerationConfig]
2327
+ #
2282
2328
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AutoMLJobConfig AWS API Documentation
2283
2329
  #
2284
2330
  class AutoMLJobConfig < Struct.new(
2285
2331
  :completion_criteria,
2286
2332
  :security_config,
2287
- :data_split_config)
2333
+ :data_split_config,
2334
+ :candidate_generation_config)
2288
2335
  SENSITIVE = []
2289
2336
  include Aws::Structure
2290
2337
  end
@@ -2888,6 +2935,10 @@ module Aws::SageMaker
2888
2935
  include Aws::Structure
2889
2936
  end
2890
2937
 
2938
+ # Configuration specifying how to treat different headers. If no headers
2939
+ # are specified SageMaker will by default base64 encode when capturing
2940
+ # the data.
2941
+ #
2891
2942
  # @note When making an API call, you may pass CaptureContentTypeHeader
2892
2943
  # data as a hash:
2893
2944
  #
@@ -2897,9 +2948,13 @@ module Aws::SageMaker
2897
2948
  # }
2898
2949
  #
2899
2950
  # @!attribute [rw] csv_content_types
2951
+ # The list of all content type headers that SageMaker will treat as
2952
+ # CSV and capture accordingly.
2900
2953
  # @return [Array<String>]
2901
2954
  #
2902
2955
  # @!attribute [rw] json_content_types
2956
+ # The list of all content type headers that SageMaker will treat as
2957
+ # JSON and capture accordingly.
2903
2958
  # @return [Array<String>]
2904
2959
  #
2905
2960
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CaptureContentTypeHeader AWS API Documentation
@@ -2911,6 +2966,8 @@ module Aws::SageMaker
2911
2966
  include Aws::Structure
2912
2967
  end
2913
2968
 
2969
+ # Specifies data Model Monitor will capture.
2970
+ #
2914
2971
  # @note When making an API call, you may pass CaptureOption
2915
2972
  # data as a hash:
2916
2973
  #
@@ -2919,6 +2976,7 @@ module Aws::SageMaker
2919
2976
  # }
2920
2977
  #
2921
2978
  # @!attribute [rw] capture_mode
2979
+ # Specify the boundary of data to capture.
2922
2980
  # @return [String]
2923
2981
  #
2924
2982
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CaptureOption AWS API Documentation
@@ -4455,6 +4513,9 @@ module Aws::SageMaker
4455
4513
  # data_split_config: {
4456
4514
  # validation_fraction: 1.0,
4457
4515
  # },
4516
+ # candidate_generation_config: {
4517
+ # feature_specification_s3_uri: "S3Uri",
4518
+ # },
4458
4519
  # },
4459
4520
  # role_arn: "RoleArn", # required
4460
4521
  # generate_candidate_definitions_only: false,
@@ -4478,8 +4539,9 @@ module Aws::SageMaker
4478
4539
  # @!attribute [rw] input_data_config
4479
4540
  # An array of channel objects that describes the input data and its
4480
4541
  # location. Each channel is a named input source. Similar to
4481
- # `InputDataConfig` supported by . Format(s) supported: CSV. Minimum
4482
- # of 500 rows.
4542
+ # `InputDataConfig` supported by . Format(s) supported: CSV, Parquet.
4543
+ # A minimum of 500 rows is required for the training dataset. There is
4544
+ # not a minimum number of rows required for the validation dataset.
4483
4545
  # @return [Array<Types::AutoMLChannel>]
4484
4546
  #
4485
4547
  # @!attribute [rw] output_data_config
@@ -4490,10 +4552,8 @@ module Aws::SageMaker
4490
4552
  #
4491
4553
  # @!attribute [rw] problem_type
4492
4554
  # Defines the type of supervised learning available for the
4493
- # candidates. Options include: `BinaryClassification`,
4494
- # `MulticlassClassification`, and `Regression`. For more information,
4495
- # see [ Amazon SageMaker Autopilot problem types and algorithm
4496
- # support][1].
4555
+ # candidates. For more information, see [ Amazon SageMaker Autopilot
4556
+ # problem types and algorithm support][1].
4497
4557
  #
4498
4558
  #
4499
4559
  #
@@ -4507,8 +4567,7 @@ module Aws::SageMaker
4507
4567
  # @return [Types::AutoMLJobObjective]
4508
4568
  #
4509
4569
  # @!attribute [rw] auto_ml_job_config
4510
- # Contains `CompletionCriteria` and `SecurityConfig` settings for the
4511
- # AutoML job.
4570
+ # A collection of settings used to configure an AutoML job.
4512
4571
  # @return [Types::AutoMLJobConfig]
4513
4572
  #
4514
4573
  # @!attribute [rw] role_arn
@@ -5414,6 +5473,7 @@ module Aws::SageMaker
5414
5473
  # @return [Array<Types::ProductionVariant>]
5415
5474
  #
5416
5475
  # @!attribute [rw] data_capture_config
5476
+ # Configuration to control how SageMaker captures inference data.
5417
5477
  # @return [Types::DataCaptureConfig]
5418
5478
  #
5419
5479
  # @!attribute [rw] tags
@@ -7757,7 +7817,12 @@ module Aws::SageMaker
7757
7817
  # @!attribute [rw] task
7758
7818
  # The machine learning task your model package accomplishes. Common
7759
7819
  # machine learning tasks include object detection and image
7760
- # classification.
7820
+ # classification. The following tasks are supported by Inference
7821
+ # Recommender: `"IMAGE_CLASSIFICATION"` \| `"OBJECT_DETECTION"` \|
7822
+ # `"TEXT_GENERATION"` \|`"IMAGE_SEGMENTATION"` \| `"FILL_MASK"` \|
7823
+ # `"CLASSIFICATION"` \| `"REGRESSION"` \| `"OTHER"`.
7824
+ #
7825
+ # Specify "OTHER" if none of the tasks listed fit your use case.
7761
7826
  # @return [String]
7762
7827
  #
7763
7828
  # @!attribute [rw] sample_payload_url
@@ -10087,6 +10152,8 @@ module Aws::SageMaker
10087
10152
  include Aws::Structure
10088
10153
  end
10089
10154
 
10155
+ # Configuration to control how SageMaker captures inference data.
10156
+ #
10090
10157
  # @note When making an API call, you may pass DataCaptureConfig
10091
10158
  # data as a hash:
10092
10159
  #
@@ -10107,21 +10174,47 @@ module Aws::SageMaker
10107
10174
  # }
10108
10175
  #
10109
10176
  # @!attribute [rw] enable_capture
10177
+ # Whether data capture should be enabled or disabled (defaults to
10178
+ # enabled).
10110
10179
  # @return [Boolean]
10111
10180
  #
10112
10181
  # @!attribute [rw] initial_sampling_percentage
10182
+ # The percentage of requests SageMaker will capture. A lower value is
10183
+ # recommended for Endpoints with high traffic.
10113
10184
  # @return [Integer]
10114
10185
  #
10115
10186
  # @!attribute [rw] destination_s3_uri
10187
+ # The Amazon S3 location used to capture the data.
10116
10188
  # @return [String]
10117
10189
  #
10118
10190
  # @!attribute [rw] kms_key_id
10191
+ # The Amazon Resource Name (ARN) of a Amazon Web Services Key
10192
+ # Management Service key that SageMaker uses to encrypt data on the
10193
+ # storage volume attached to the ML compute instance that hosts the
10194
+ # endpoint.
10195
+ #
10196
+ # The KmsKeyId can be any of the following formats:
10197
+ #
10198
+ # * Key ID: `1234abcd-12ab-34cd-56ef-1234567890ab`
10199
+ #
10200
+ # * Key ARN:
10201
+ # `arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab`
10202
+ #
10203
+ # * Alias name: `alias/ExampleAlias`
10204
+ #
10205
+ # * Alias name ARN:
10206
+ # `arn:aws:kms:us-west-2:111122223333:alias/ExampleAlias`
10119
10207
  # @return [String]
10120
10208
  #
10121
10209
  # @!attribute [rw] capture_options
10210
+ # Specifies data Model Monitor will capture. You can configure whether
10211
+ # to collect only input, only output, or both
10122
10212
  # @return [Array<Types::CaptureOption>]
10123
10213
  #
10124
10214
  # @!attribute [rw] capture_content_type_header
10215
+ # Configuration specifying how to treat different headers. If no
10216
+ # headers are specified SageMaker will by default base64 encode when
10217
+ # capturing the data.
10125
10218
  # @return [Types::CaptureContentTypeHeader]
10126
10219
  #
10127
10220
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DataCaptureConfig AWS API Documentation
@@ -10137,19 +10230,26 @@ module Aws::SageMaker
10137
10230
  include Aws::Structure
10138
10231
  end
10139
10232
 
10233
+ # The currently active data capture configuration used by your Endpoint.
10234
+ #
10140
10235
  # @!attribute [rw] enable_capture
10236
+ # Whether data capture is enabled or disabled.
10141
10237
  # @return [Boolean]
10142
10238
  #
10143
10239
  # @!attribute [rw] capture_status
10240
+ # Whether data capture is currently functional.
10144
10241
  # @return [String]
10145
10242
  #
10146
10243
  # @!attribute [rw] current_sampling_percentage
10244
+ # The percentage of requests being captured by your Endpoint.
10147
10245
  # @return [Integer]
10148
10246
  #
10149
10247
  # @!attribute [rw] destination_s3_uri
10248
+ # The Amazon S3 location being used to capture the data.
10150
10249
  # @return [String]
10151
10250
  #
10152
10251
  # @!attribute [rw] kms_key_id
10252
+ # The KMS key being used to encrypt the data in Amazon S3.
10153
10253
  # @return [String]
10154
10254
  #
10155
10255
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DataCaptureConfigSummary AWS API Documentation
@@ -13133,6 +13233,7 @@ module Aws::SageMaker
13133
13233
  # @return [Array<Types::ProductionVariant>]
13134
13234
  #
13135
13235
  # @!attribute [rw] data_capture_config
13236
+ # Configuration to control how SageMaker captures inference data.
13136
13237
  # @return [Types::DataCaptureConfig]
13137
13238
  #
13138
13239
  # @!attribute [rw] kms_key_id
@@ -13205,6 +13306,8 @@ module Aws::SageMaker
13205
13306
  # @return [Array<Types::ProductionVariantSummary>]
13206
13307
  #
13207
13308
  # @!attribute [rw] data_capture_config
13309
+ # The currently active data capture configuration used by your
13310
+ # Endpoint.
13208
13311
  # @return [Types::DataCaptureConfigSummary]
13209
13312
  #
13210
13313
  # @!attribute [rw] endpoint_status
@@ -17514,6 +17617,8 @@ module Aws::SageMaker
17514
17617
  # @return [Array<Types::ProductionVariantSummary>]
17515
17618
  #
17516
17619
  # @!attribute [rw] data_capture_config
17620
+ # The currently active data capture configuration used by your
17621
+ # Endpoint.
17517
17622
  # @return [Types::DataCaptureConfigSummary]
17518
17623
  #
17519
17624
  # @!attribute [rw] endpoint_status
@@ -27391,6 +27496,15 @@ module Aws::SageMaker
27391
27496
  #
27392
27497
  # @!attribute [rw] standard_metric_name
27393
27498
  # The name of the standard metric.
27499
+ #
27500
+ # <note markdown="1"> For definitions of the standard metrics, see [ `Autopilot candidate
27501
+ # metrics` ][1].
27502
+ #
27503
+ # </note>
27504
+ #
27505
+ #
27506
+ #
27507
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-model-support-validation.html#autopilot-metrics
27394
27508
  # @return [String]
27395
27509
  #
27396
27510
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/MetricDatum AWS API Documentation
@@ -37649,14 +37763,15 @@ module Aws::SageMaker
37649
37763
  # Simple Storage Service Developer Guide.*
37650
37764
  #
37651
37765
  # The KMS key policy must grant permission to the IAM role that you
37652
- # specify in your CreateModel request. For more information, see
37653
- # [Using Key Policies in Amazon Web Services KMS][2] in the *Amazon
37766
+ # specify in your [CreateModel][2] request. For more information, see
37767
+ # [Using Key Policies in Amazon Web Services KMS][3] in the *Amazon
37654
37768
  # Web Services Key Management Service Developer Guide*.
37655
37769
  #
37656
37770
  #
37657
37771
  #
37658
37772
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingKMSEncryption.html
37659
- # [2]: http://docs.aws.amazon.com/kms/latest/developerguide/key-policies.html
37773
+ # [2]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateModel.html
37774
+ # [3]: https://docs.aws.amazon.com/kms/latest/developerguide/key-policies.html
37660
37775
  # @return [String]
37661
37776
  #
37662
37777
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TransformOutput AWS API Documentation
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-sagemaker/customizations'
49
49
  # @!group service
50
50
  module Aws::SageMaker
51
51
 
52
- GEM_VERSION = '1.124.0'
52
+ GEM_VERSION = '1.125.0'
53
53
 
54
54
  end
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.124.0
4
+ version: 1.125.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: 2022-05-03 00:00:00.000000000 Z
11
+ date: 2022-05-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core