aws-sdk-sagemaker 1.212.0 → 1.213.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +41 -21
- data/lib/aws-sdk-sagemaker/client_api.rb +17 -0
- data/lib/aws-sdk-sagemaker/types.rb +136 -61
- data/lib/aws-sdk-sagemaker.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c2f4f0ccc88584c0349bb77532a2e148e6e49ac08b4980950d0329c9dc8adfe6
|
4
|
+
data.tar.gz: 612e3faeef89e3f1da1b4ddc5457de4983b05bb6d2ef394805ad7c95fd2cff64
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 19a5c27818c280d7e48f2ec65b5a83e3206034da531d283a2df3f60657c6bd7a77af226298dede0c92d4a7c654ec408fdd62de89e1ecd532449ee96f91f04dc1
|
7
|
+
data.tar.gz: aac1d90da663e54a426dac7d079b141841758da0ad055ba2b2043ca8570b9d8fd12db4bb70b59b25ce14d349d798cc0952f9a30d2c10e381b973e686033aa4d1
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.213.0 (2023-09-28)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Online store feature groups supports Standard and InMemory tier storage types for low latency storage for real-time data retrieval. The InMemory tier supports collection types List, Set, and Vector.
|
8
|
+
|
4
9
|
1.212.0 (2023-09-27)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.213.0
|
@@ -1208,7 +1208,8 @@ module Aws::SageMaker
|
|
1208
1208
|
#
|
1209
1209
|
# `CreateAutoMLJobV2` can manage tabular problem types identical to
|
1210
1210
|
# those of its previous version `CreateAutoMLJob`, as well as
|
1211
|
-
# non-tabular problem types such as image
|
1211
|
+
# time-series forecasting, and non-tabular problem types such as image
|
1212
|
+
# or text classification.
|
1212
1213
|
#
|
1213
1214
|
# Find guidelines about how to migrate a `CreateAutoMLJob` to
|
1214
1215
|
# `CreateAutoMLJobV2` in [Migrate a CreateAutoMLJob to
|
@@ -1387,7 +1388,8 @@ module Aws::SageMaker
|
|
1387
1388
|
#
|
1388
1389
|
# `CreateAutoMLJobV2` can manage tabular problem types identical to
|
1389
1390
|
# those of its previous version `CreateAutoMLJob`, as well as
|
1390
|
-
# non-tabular problem types such as image
|
1391
|
+
# time-series forecasting, and non-tabular problem types such as image
|
1392
|
+
# or text classification.
|
1391
1393
|
#
|
1392
1394
|
# Find guidelines about how to migrate a `CreateAutoMLJob` to
|
1393
1395
|
# `CreateAutoMLJobV2` in [Migrate a CreateAutoMLJob to
|
@@ -1963,9 +1965,9 @@ module Aws::SageMaker
|
|
1963
1965
|
# stopping.
|
1964
1966
|
#
|
1965
1967
|
# @option params [Array<Types::Tag>] :tags
|
1966
|
-
# (Optional) An array of key-value pairs. For more information, see
|
1967
|
-
#
|
1968
|
-
#
|
1968
|
+
# (Optional) An array of key-value pairs. For more information, see [
|
1969
|
+
# Using Cost Allocation Tags][1] in the *Amazon Web Services Billing and
|
1970
|
+
# Cost Management User Guide*.
|
1969
1971
|
#
|
1970
1972
|
#
|
1971
1973
|
#
|
@@ -3308,6 +3310,12 @@ module Aws::SageMaker
|
|
3308
3310
|
# {
|
3309
3311
|
# feature_name: "FeatureName",
|
3310
3312
|
# feature_type: "Integral", # accepts Integral, Fractional, String
|
3313
|
+
# collection_type: "List", # accepts List, Set, Vector
|
3314
|
+
# collection_config: {
|
3315
|
+
# vector_config: {
|
3316
|
+
# dimension: 1, # required
|
3317
|
+
# },
|
3318
|
+
# },
|
3311
3319
|
# },
|
3312
3320
|
# ],
|
3313
3321
|
# online_store_config: {
|
@@ -3319,6 +3327,7 @@ module Aws::SageMaker
|
|
3319
3327
|
# unit: "Seconds", # accepts Seconds, Minutes, Hours, Days, Weeks
|
3320
3328
|
# value: 1,
|
3321
3329
|
# },
|
3330
|
+
# storage_type: "Standard", # accepts Standard, InMemory
|
3322
3331
|
# },
|
3323
3332
|
# offline_store_config: {
|
3324
3333
|
# s3_storage_config: { # required
|
@@ -5103,9 +5112,9 @@ module Aws::SageMaker
|
|
5103
5112
|
# stopping.
|
5104
5113
|
#
|
5105
5114
|
# @option params [Array<Types::Tag>] :tags
|
5106
|
-
# (Optional) An array of key-value pairs. For more information, see
|
5107
|
-
#
|
5108
|
-
#
|
5115
|
+
# (Optional) An array of key-value pairs. For more information, see [
|
5116
|
+
# Using Cost Allocation Tags][1] in the *Amazon Web Services Billing and
|
5117
|
+
# Cost Management User Guide*.
|
5109
5118
|
#
|
5110
5119
|
#
|
5111
5120
|
#
|
@@ -5381,9 +5390,9 @@ module Aws::SageMaker
|
|
5381
5390
|
# stopping.
|
5382
5391
|
#
|
5383
5392
|
# @option params [Array<Types::Tag>] :tags
|
5384
|
-
# (Optional) An array of key-value pairs. For more information, see
|
5385
|
-
#
|
5386
|
-
#
|
5393
|
+
# (Optional) An array of key-value pairs. For more information, see [
|
5394
|
+
# Using Cost Allocation Tags][1] in the *Amazon Web Services Billing and
|
5395
|
+
# Cost Management User Guide*.
|
5387
5396
|
#
|
5388
5397
|
#
|
5389
5398
|
#
|
@@ -5986,9 +5995,9 @@ module Aws::SageMaker
|
|
5986
5995
|
# stopping.
|
5987
5996
|
#
|
5988
5997
|
# @option params [Array<Types::Tag>] :tags
|
5989
|
-
# (Optional) An array of key-value pairs. For more information, see
|
5990
|
-
#
|
5991
|
-
#
|
5998
|
+
# (Optional) An array of key-value pairs. For more information, see [
|
5999
|
+
# Using Cost Allocation Tags][1] in the *Amazon Web Services Billing and
|
6000
|
+
# Cost Management User Guide*.
|
5992
6001
|
#
|
5993
6002
|
#
|
5994
6003
|
#
|
@@ -11521,12 +11530,15 @@ module Aws::SageMaker
|
|
11521
11530
|
# resp.feature_definitions #=> Array
|
11522
11531
|
# resp.feature_definitions[0].feature_name #=> String
|
11523
11532
|
# resp.feature_definitions[0].feature_type #=> String, one of "Integral", "Fractional", "String"
|
11533
|
+
# resp.feature_definitions[0].collection_type #=> String, one of "List", "Set", "Vector"
|
11534
|
+
# resp.feature_definitions[0].collection_config.vector_config.dimension #=> Integer
|
11524
11535
|
# resp.creation_time #=> Time
|
11525
11536
|
# resp.last_modified_time #=> Time
|
11526
11537
|
# resp.online_store_config.security_config.kms_key_id #=> String
|
11527
11538
|
# resp.online_store_config.enable_online_store #=> Boolean
|
11528
11539
|
# resp.online_store_config.ttl_duration.unit #=> String, one of "Seconds", "Minutes", "Hours", "Days", "Weeks"
|
11529
11540
|
# resp.online_store_config.ttl_duration.value #=> Integer
|
11541
|
+
# resp.online_store_config.storage_type #=> String, one of "Standard", "InMemory"
|
11530
11542
|
# resp.offline_store_config.s3_storage_config.s3_uri #=> String
|
11531
11543
|
# resp.offline_store_config.s3_storage_config.kms_key_id #=> String
|
11532
11544
|
# resp.offline_store_config.s3_storage_config.resolved_output_s3_uri #=> String
|
@@ -16096,7 +16108,8 @@ module Aws::SageMaker
|
|
16096
16108
|
# The field to sort results by. The default is `CreationTime`.
|
16097
16109
|
#
|
16098
16110
|
# @option params [String] :sort_order
|
16099
|
-
#
|
16111
|
+
# Whether to sort the results in `Ascending` or `Descending` order. The
|
16112
|
+
# default is `Descending`.
|
16100
16113
|
#
|
16101
16114
|
# @option params [String] :next_token
|
16102
16115
|
# If the result of the previous `ListDataQualityJobDefinitions` request
|
@@ -18519,7 +18532,8 @@ module Aws::SageMaker
|
|
18519
18532
|
# The field to sort results by. The default is `CreationTime`.
|
18520
18533
|
#
|
18521
18534
|
# @option params [String] :sort_order
|
18522
|
-
#
|
18535
|
+
# Whether to sort the results in `Ascending` or `Descending` order. The
|
18536
|
+
# default is `Descending`.
|
18523
18537
|
#
|
18524
18538
|
# @option params [String] :next_token
|
18525
18539
|
# If the result of the previous `ListModelQualityJobDefinitions` request
|
@@ -18777,8 +18791,8 @@ module Aws::SageMaker
|
|
18777
18791
|
# Name of a specific endpoint to fetch jobs for.
|
18778
18792
|
#
|
18779
18793
|
# @option params [String] :sort_by
|
18780
|
-
# Whether to sort results by `Status`, `CreationTime`,
|
18781
|
-
# field. The default is `CreationTime`.
|
18794
|
+
# Whether to sort the results by the `Status`, `CreationTime`, or
|
18795
|
+
# `ScheduledTime` field. The default is `CreationTime`.
|
18782
18796
|
#
|
18783
18797
|
# @option params [String] :sort_order
|
18784
18798
|
# Whether to sort the results in `Ascending` or `Descending` order. The
|
@@ -18878,8 +18892,8 @@ module Aws::SageMaker
|
|
18878
18892
|
# Name of a specific endpoint to fetch schedules for.
|
18879
18893
|
#
|
18880
18894
|
# @option params [String] :sort_by
|
18881
|
-
# Whether to sort results by `Status`, `CreationTime`,
|
18882
|
-
# field. The default is `CreationTime`.
|
18895
|
+
# Whether to sort the results by the `Status`, `CreationTime`, or
|
18896
|
+
# `ScheduledTime` field. The default is `CreationTime`.
|
18883
18897
|
#
|
18884
18898
|
# @option params [String] :sort_order
|
18885
18899
|
# Whether to sort the results in `Ascending` or `Descending` order. The
|
@@ -22490,6 +22504,12 @@ module Aws::SageMaker
|
|
22490
22504
|
# {
|
22491
22505
|
# feature_name: "FeatureName",
|
22492
22506
|
# feature_type: "Integral", # accepts Integral, Fractional, String
|
22507
|
+
# collection_type: "List", # accepts List, Set, Vector
|
22508
|
+
# collection_config: {
|
22509
|
+
# vector_config: {
|
22510
|
+
# dimension: 1, # required
|
22511
|
+
# },
|
22512
|
+
# },
|
22493
22513
|
# },
|
22494
22514
|
# ],
|
22495
22515
|
# online_store_config: {
|
@@ -24173,7 +24193,7 @@ module Aws::SageMaker
|
|
24173
24193
|
params: params,
|
24174
24194
|
config: config)
|
24175
24195
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
24176
|
-
context[:gem_version] = '1.
|
24196
|
+
context[:gem_version] = '1.213.0'
|
24177
24197
|
Seahorse::Client::Request.new(handlers, context)
|
24178
24198
|
end
|
24179
24199
|
|
@@ -255,10 +255,12 @@ module Aws::SageMaker
|
|
255
255
|
CognitoMemberDefinition = Shapes::StructureShape.new(name: 'CognitoMemberDefinition')
|
256
256
|
CognitoUserGroup = Shapes::StringShape.new(name: 'CognitoUserGroup')
|
257
257
|
CognitoUserPool = Shapes::StringShape.new(name: 'CognitoUserPool')
|
258
|
+
CollectionConfig = Shapes::UnionShape.new(name: 'CollectionConfig')
|
258
259
|
CollectionConfiguration = Shapes::StructureShape.new(name: 'CollectionConfiguration')
|
259
260
|
CollectionConfigurations = Shapes::ListShape.new(name: 'CollectionConfigurations')
|
260
261
|
CollectionName = Shapes::StringShape.new(name: 'CollectionName')
|
261
262
|
CollectionParameters = Shapes::MapShape.new(name: 'CollectionParameters')
|
263
|
+
CollectionType = Shapes::StringShape.new(name: 'CollectionType')
|
262
264
|
CompilationJobArn = Shapes::StringShape.new(name: 'CompilationJobArn')
|
263
265
|
CompilationJobStatus = Shapes::StringShape.new(name: 'CompilationJobStatus')
|
264
266
|
CompilationJobSummaries = Shapes::ListShape.new(name: 'CompilationJobSummaries')
|
@@ -648,6 +650,7 @@ module Aws::SageMaker
|
|
648
650
|
DeviceSummaries = Shapes::ListShape.new(name: 'DeviceSummaries')
|
649
651
|
DeviceSummary = Shapes::StructureShape.new(name: 'DeviceSummary')
|
650
652
|
Devices = Shapes::ListShape.new(name: 'Devices')
|
653
|
+
Dimension = Shapes::IntegerShape.new(name: 'Dimension')
|
651
654
|
DirectInternetAccess = Shapes::StringShape.new(name: 'DirectInternetAccess')
|
652
655
|
Direction = Shapes::StringShape.new(name: 'Direction')
|
653
656
|
DirectoryPath = Shapes::StringShape.new(name: 'DirectoryPath')
|
@@ -1827,6 +1830,7 @@ module Aws::SageMaker
|
|
1827
1830
|
StopTrainingJobRequest = Shapes::StructureShape.new(name: 'StopTrainingJobRequest')
|
1828
1831
|
StopTransformJobRequest = Shapes::StructureShape.new(name: 'StopTransformJobRequest')
|
1829
1832
|
StoppingCondition = Shapes::StructureShape.new(name: 'StoppingCondition')
|
1833
|
+
StorageType = Shapes::StringShape.new(name: 'StorageType')
|
1830
1834
|
String = Shapes::StringShape.new(name: 'String')
|
1831
1835
|
String1024 = Shapes::StringShape.new(name: 'String1024')
|
1832
1836
|
String128 = Shapes::StringShape.new(name: 'String128')
|
@@ -2066,6 +2070,7 @@ module Aws::SageMaker
|
|
2066
2070
|
VariantStatus = Shapes::StringShape.new(name: 'VariantStatus')
|
2067
2071
|
VariantStatusMessage = Shapes::StringShape.new(name: 'VariantStatusMessage')
|
2068
2072
|
VariantWeight = Shapes::FloatShape.new(name: 'VariantWeight')
|
2073
|
+
VectorConfig = Shapes::StructureShape.new(name: 'VectorConfig')
|
2069
2074
|
VendorGuidance = Shapes::StringShape.new(name: 'VendorGuidance')
|
2070
2075
|
VersionId = Shapes::StringShape.new(name: 'VersionId')
|
2071
2076
|
VersionedArnOrName = Shapes::StringShape.new(name: 'VersionedArnOrName')
|
@@ -2665,6 +2670,12 @@ module Aws::SageMaker
|
|
2665
2670
|
CognitoMemberDefinition.add_member(:client_id, Shapes::ShapeRef.new(shape: ClientId, required: true, location_name: "ClientId"))
|
2666
2671
|
CognitoMemberDefinition.struct_class = Types::CognitoMemberDefinition
|
2667
2672
|
|
2673
|
+
CollectionConfig.add_member(:vector_config, Shapes::ShapeRef.new(shape: VectorConfig, location_name: "VectorConfig"))
|
2674
|
+
CollectionConfig.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
2675
|
+
CollectionConfig.add_member_subclass(:vector_config, Types::CollectionConfig::VectorConfig)
|
2676
|
+
CollectionConfig.add_member_subclass(:unknown, Types::CollectionConfig::Unknown)
|
2677
|
+
CollectionConfig.struct_class = Types::CollectionConfig
|
2678
|
+
|
2668
2679
|
CollectionConfiguration.add_member(:collection_name, Shapes::ShapeRef.new(shape: CollectionName, location_name: "CollectionName"))
|
2669
2680
|
CollectionConfiguration.add_member(:collection_parameters, Shapes::ShapeRef.new(shape: CollectionParameters, location_name: "CollectionParameters"))
|
2670
2681
|
CollectionConfiguration.struct_class = Types::CollectionConfiguration
|
@@ -5131,6 +5142,8 @@ module Aws::SageMaker
|
|
5131
5142
|
|
5132
5143
|
FeatureDefinition.add_member(:feature_name, Shapes::ShapeRef.new(shape: FeatureName, location_name: "FeatureName"))
|
5133
5144
|
FeatureDefinition.add_member(:feature_type, Shapes::ShapeRef.new(shape: FeatureType, location_name: "FeatureType"))
|
5145
|
+
FeatureDefinition.add_member(:collection_type, Shapes::ShapeRef.new(shape: CollectionType, location_name: "CollectionType"))
|
5146
|
+
FeatureDefinition.add_member(:collection_config, Shapes::ShapeRef.new(shape: CollectionConfig, location_name: "CollectionConfig"))
|
5134
5147
|
FeatureDefinition.struct_class = Types::FeatureDefinition
|
5135
5148
|
|
5136
5149
|
FeatureDefinitions.member = Shapes::ShapeRef.new(shape: FeatureDefinition)
|
@@ -7494,6 +7507,7 @@ module Aws::SageMaker
|
|
7494
7507
|
OnlineStoreConfig.add_member(:security_config, Shapes::ShapeRef.new(shape: OnlineStoreSecurityConfig, location_name: "SecurityConfig"))
|
7495
7508
|
OnlineStoreConfig.add_member(:enable_online_store, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableOnlineStore"))
|
7496
7509
|
OnlineStoreConfig.add_member(:ttl_duration, Shapes::ShapeRef.new(shape: TtlDuration, location_name: "TtlDuration"))
|
7510
|
+
OnlineStoreConfig.add_member(:storage_type, Shapes::ShapeRef.new(shape: StorageType, location_name: "StorageType"))
|
7497
7511
|
OnlineStoreConfig.struct_class = Types::OnlineStoreConfig
|
7498
7512
|
|
7499
7513
|
OnlineStoreConfigUpdate.add_member(:ttl_duration, Shapes::ShapeRef.new(shape: TtlDuration, location_name: "TtlDuration"))
|
@@ -9188,6 +9202,9 @@ module Aws::SageMaker
|
|
9188
9202
|
|
9189
9203
|
VariantPropertyList.member = Shapes::ShapeRef.new(shape: VariantProperty)
|
9190
9204
|
|
9205
|
+
VectorConfig.add_member(:dimension, Shapes::ShapeRef.new(shape: Dimension, required: true, location_name: "Dimension"))
|
9206
|
+
VectorConfig.struct_class = Types::VectorConfig
|
9207
|
+
|
9191
9208
|
Vertex.add_member(:arn, Shapes::ShapeRef.new(shape: AssociationEntityArn, location_name: "Arn"))
|
9192
9209
|
Vertex.add_member(:type, Shapes::ShapeRef.new(shape: String40, location_name: "Type"))
|
9193
9210
|
Vertex.add_member(:lineage_type, Shapes::ShapeRef.new(shape: LineageType, location_name: "LineageType"))
|
@@ -3156,12 +3156,12 @@ module Aws::SageMaker
|
|
3156
3156
|
end
|
3157
3157
|
|
3158
3158
|
# Configuration specifying how to treat different headers. If no headers
|
3159
|
-
# are specified SageMaker will by default base64 encode when
|
3160
|
-
# the data.
|
3159
|
+
# are specified Amazon SageMaker will by default base64 encode when
|
3160
|
+
# capturing the data.
|
3161
3161
|
#
|
3162
3162
|
# @!attribute [rw] csv_content_types
|
3163
|
-
# The list of all content type headers that SageMaker will
|
3164
|
-
# CSV and capture accordingly.
|
3163
|
+
# The list of all content type headers that Amazon SageMaker will
|
3164
|
+
# treat as CSV and capture accordingly.
|
3165
3165
|
# @return [Array<String>]
|
3166
3166
|
#
|
3167
3167
|
# @!attribute [rw] json_content_types
|
@@ -3911,6 +3911,33 @@ module Aws::SageMaker
|
|
3911
3911
|
include Aws::Structure
|
3912
3912
|
end
|
3913
3913
|
|
3914
|
+
# Configuration for your collection.
|
3915
|
+
#
|
3916
|
+
# @note CollectionConfig is a union - when making an API calls you must set exactly one of the members.
|
3917
|
+
#
|
3918
|
+
# @note CollectionConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of CollectionConfig corresponding to the set member.
|
3919
|
+
#
|
3920
|
+
# @!attribute [rw] vector_config
|
3921
|
+
# Configuration for your vector collection type.
|
3922
|
+
#
|
3923
|
+
# * `Dimension`: The number of elements in your vector.
|
3924
|
+
#
|
3925
|
+
# ^
|
3926
|
+
# @return [Types::VectorConfig]
|
3927
|
+
#
|
3928
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CollectionConfig AWS API Documentation
|
3929
|
+
#
|
3930
|
+
class CollectionConfig < Struct.new(
|
3931
|
+
:vector_config,
|
3932
|
+
:unknown)
|
3933
|
+
SENSITIVE = []
|
3934
|
+
include Aws::Structure
|
3935
|
+
include Aws::Structure::Union
|
3936
|
+
|
3937
|
+
class VectorConfig < CollectionConfig; end
|
3938
|
+
class Unknown < CollectionConfig; end
|
3939
|
+
end
|
3940
|
+
|
3914
3941
|
# Configuration information for the Amazon SageMaker Debugger output
|
3915
3942
|
# tensor collections.
|
3916
3943
|
#
|
@@ -5123,8 +5150,8 @@ module Aws::SageMaker
|
|
5123
5150
|
# @return [Types::MonitoringStoppingCondition]
|
5124
5151
|
#
|
5125
5152
|
# @!attribute [rw] tags
|
5126
|
-
# (Optional) An array of key-value pairs. For more information, see
|
5127
|
-
#
|
5153
|
+
# (Optional) An array of key-value pairs. For more information, see [
|
5154
|
+
# Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
|
5128
5155
|
# and Cost Management User Guide*.
|
5129
5156
|
#
|
5130
5157
|
#
|
@@ -6739,8 +6766,8 @@ module Aws::SageMaker
|
|
6739
6766
|
# @return [Types::MonitoringStoppingCondition]
|
6740
6767
|
#
|
6741
6768
|
# @!attribute [rw] tags
|
6742
|
-
# (Optional) An array of key-value pairs. For more information, see
|
6743
|
-
#
|
6769
|
+
# (Optional) An array of key-value pairs. For more information, see [
|
6770
|
+
# Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
|
6744
6771
|
# and Cost Management User Guide*.
|
6745
6772
|
#
|
6746
6773
|
#
|
@@ -6923,8 +6950,8 @@ module Aws::SageMaker
|
|
6923
6950
|
# @return [Types::MonitoringStoppingCondition]
|
6924
6951
|
#
|
6925
6952
|
# @!attribute [rw] tags
|
6926
|
-
# (Optional) An array of key-value pairs. For more information, see
|
6927
|
-
#
|
6953
|
+
# (Optional) An array of key-value pairs. For more information, see [
|
6954
|
+
# Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
|
6928
6955
|
# and Cost Management User Guide*.
|
6929
6956
|
#
|
6930
6957
|
#
|
@@ -7321,8 +7348,8 @@ module Aws::SageMaker
|
|
7321
7348
|
# @return [Types::MonitoringStoppingCondition]
|
7322
7349
|
#
|
7323
7350
|
# @!attribute [rw] tags
|
7324
|
-
# (Optional) An array of key-value pairs. For more information, see
|
7325
|
-
#
|
7351
|
+
# (Optional) An array of key-value pairs. For more information, see [
|
7352
|
+
# Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
|
7326
7353
|
# and Cost Management User Guide*.
|
7327
7354
|
#
|
7328
7355
|
#
|
@@ -8891,9 +8918,9 @@ module Aws::SageMaker
|
|
8891
8918
|
# @return [String]
|
8892
8919
|
#
|
8893
8920
|
# @!attribute [rw] kms_key_id
|
8894
|
-
# The Amazon Resource Name (ARN) of
|
8895
|
-
#
|
8896
|
-
#
|
8921
|
+
# The Amazon Resource Name (ARN) of an Key Management Service key that
|
8922
|
+
# SageMaker uses to encrypt the captured data at rest using Amazon S3
|
8923
|
+
# server-side encryption.
|
8897
8924
|
#
|
8898
8925
|
# The KmsKeyId can be any of the following formats:
|
8899
8926
|
#
|
@@ -9090,7 +9117,7 @@ module Aws::SageMaker
|
|
9090
9117
|
# @!attribute [rw] record_preprocessor_source_uri
|
9091
9118
|
# An Amazon S3 URI to a script that is called per row prior to running
|
9092
9119
|
# analysis. It can base64 decode the payload and convert it into a
|
9093
|
-
#
|
9120
|
+
# flattened JSON so that the built-in container can use the converted
|
9094
9121
|
# data. Applicable only for the built-in (first party) containers.
|
9095
9122
|
# @return [String]
|
9096
9123
|
#
|
@@ -13569,10 +13596,9 @@ module Aws::SageMaker
|
|
13569
13596
|
# @return [Types::MonitoringNetworkConfig]
|
13570
13597
|
#
|
13571
13598
|
# @!attribute [rw] role_arn
|
13572
|
-
# The Amazon Resource Name (ARN) of the
|
13573
|
-
#
|
13574
|
-
#
|
13575
|
-
# in Amazon S3.
|
13599
|
+
# The Amazon Resource Name (ARN) of the IAM role that has read
|
13600
|
+
# permission to the input data location and write permission to the
|
13601
|
+
# output data location in Amazon S3.
|
13576
13602
|
# @return [String]
|
13577
13603
|
#
|
13578
13604
|
# @!attribute [rw] stopping_condition
|
@@ -13840,10 +13866,9 @@ module Aws::SageMaker
|
|
13840
13866
|
# @return [Types::MonitoringNetworkConfig]
|
13841
13867
|
#
|
13842
13868
|
# @!attribute [rw] role_arn
|
13843
|
-
# The Amazon Resource Name (ARN) of the
|
13844
|
-
#
|
13845
|
-
#
|
13846
|
-
# in Amazon S3.
|
13869
|
+
# The Amazon Resource Name (ARN) of the IAM role that has read
|
13870
|
+
# permission to the input data location and write permission to the
|
13871
|
+
# output data location in Amazon S3.
|
13847
13872
|
# @return [String]
|
13848
13873
|
#
|
13849
13874
|
# @!attribute [rw] stopping_condition
|
@@ -17180,7 +17205,7 @@ module Aws::SageMaker
|
|
17180
17205
|
#
|
17181
17206
|
# @!attribute [rw] s3_data_distribution_type
|
17182
17207
|
# Whether input data distributed in Amazon S3 is fully replicated or
|
17183
|
-
# sharded by an S3 key. Defaults to `FullyReplicated`
|
17208
|
+
# sharded by an Amazon S3 key. Defaults to `FullyReplicated`
|
17184
17209
|
# @return [String]
|
17185
17210
|
#
|
17186
17211
|
# @!attribute [rw] features_attribute
|
@@ -17726,11 +17751,30 @@ module Aws::SageMaker
|
|
17726
17751
|
# or String.
|
17727
17752
|
# @return [String]
|
17728
17753
|
#
|
17754
|
+
# @!attribute [rw] collection_type
|
17755
|
+
# A grouping of elements where each element within the collection must
|
17756
|
+
# have the same feature type (`String`, `Integral`, or `Fractional`).
|
17757
|
+
#
|
17758
|
+
# * `List`: An ordered collection of elements.
|
17759
|
+
#
|
17760
|
+
# * `Set`: An unordered collection of unique elements.
|
17761
|
+
#
|
17762
|
+
# * `Vector`: A specialized list that represents a fixed-size array of
|
17763
|
+
# elements. The vector dimension is determined by you. Must have
|
17764
|
+
# elements with fractional feature types.
|
17765
|
+
# @return [String]
|
17766
|
+
#
|
17767
|
+
# @!attribute [rw] collection_config
|
17768
|
+
# Configuration for your collection.
|
17769
|
+
# @return [Types::CollectionConfig]
|
17770
|
+
#
|
17729
17771
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/FeatureDefinition AWS API Documentation
|
17730
17772
|
#
|
17731
17773
|
class FeatureDefinition < Struct.new(
|
17732
17774
|
:feature_name,
|
17733
|
-
:feature_type
|
17775
|
+
:feature_type,
|
17776
|
+
:collection_type,
|
17777
|
+
:collection_config)
|
17734
17778
|
SENSITIVE = []
|
17735
17779
|
include Aws::Structure
|
17736
17780
|
end
|
@@ -18683,7 +18727,7 @@ module Aws::SageMaker
|
|
18683
18727
|
#
|
18684
18728
|
#
|
18685
18729
|
#
|
18686
|
-
# [1]: https://docs.aws.amazon.com/
|
18730
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-timeseries-forecasting-holiday-calendars.html#holiday-country-codes
|
18687
18731
|
# @return [String]
|
18688
18732
|
#
|
18689
18733
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/HolidayConfigAttributes AWS API Documentation
|
@@ -21412,8 +21456,8 @@ module Aws::SageMaker
|
|
21412
21456
|
#
|
21413
21457
|
# @!attribute [rw] content_type
|
21414
21458
|
# Configuration specifying how to treat different headers. If no
|
21415
|
-
# headers are specified SageMaker will by default base64 encode
|
21416
|
-
# capturing the data.
|
21459
|
+
# headers are specified Amazon SageMaker will by default base64 encode
|
21460
|
+
# when capturing the data.
|
21417
21461
|
# @return [Types::CaptureContentTypeHeader]
|
21418
21462
|
#
|
21419
21463
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InferenceExperimentDataStorageConfig AWS API Documentation
|
@@ -23685,7 +23729,8 @@ module Aws::SageMaker
|
|
23685
23729
|
# @return [String]
|
23686
23730
|
#
|
23687
23731
|
# @!attribute [rw] sort_order
|
23688
|
-
#
|
23732
|
+
# Whether to sort the results in `Ascending` or `Descending` order.
|
23733
|
+
# The default is `Descending`.
|
23689
23734
|
# @return [String]
|
23690
23735
|
#
|
23691
23736
|
# @!attribute [rw] next_token
|
@@ -25472,8 +25517,8 @@ module Aws::SageMaker
|
|
25472
25517
|
# @return [Array<Types::MonitoringJobDefinitionSummary>]
|
25473
25518
|
#
|
25474
25519
|
# @!attribute [rw] next_token
|
25475
|
-
#
|
25476
|
-
#
|
25520
|
+
# The token returned if the response is truncated. To retrieve the
|
25521
|
+
# next set of job executions, use it in the next request.
|
25477
25522
|
# @return [String]
|
25478
25523
|
#
|
25479
25524
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListModelBiasJobDefinitionsResponse AWS API Documentation
|
@@ -25768,8 +25813,8 @@ module Aws::SageMaker
|
|
25768
25813
|
# @return [Array<Types::MonitoringJobDefinitionSummary>]
|
25769
25814
|
#
|
25770
25815
|
# @!attribute [rw] next_token
|
25771
|
-
#
|
25772
|
-
#
|
25816
|
+
# The token returned if the response is truncated. To retrieve the
|
25817
|
+
# next set of job executions, use it in the next request.
|
25773
25818
|
# @return [String]
|
25774
25819
|
#
|
25775
25820
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListModelExplainabilityJobDefinitionsResponse AWS API Documentation
|
@@ -25997,7 +26042,8 @@ module Aws::SageMaker
|
|
25997
26042
|
# @return [String]
|
25998
26043
|
#
|
25999
26044
|
# @!attribute [rw] sort_order
|
26000
|
-
#
|
26045
|
+
# Whether to sort the results in `Ascending` or `Descending` order.
|
26046
|
+
# The default is `Descending`.
|
26001
26047
|
# @return [String]
|
26002
26048
|
#
|
26003
26049
|
# @!attribute [rw] next_token
|
@@ -26254,8 +26300,8 @@ module Aws::SageMaker
|
|
26254
26300
|
# @return [String]
|
26255
26301
|
#
|
26256
26302
|
# @!attribute [rw] sort_by
|
26257
|
-
# Whether to sort results by `Status`, `CreationTime`,
|
26258
|
-
# field. The default is `CreationTime`.
|
26303
|
+
# Whether to sort the results by the `Status`, `CreationTime`, or
|
26304
|
+
# `ScheduledTime` field. The default is `CreationTime`.
|
26259
26305
|
# @return [String]
|
26260
26306
|
#
|
26261
26307
|
# @!attribute [rw] sort_order
|
@@ -26339,8 +26385,8 @@ module Aws::SageMaker
|
|
26339
26385
|
# @return [Array<Types::MonitoringExecutionSummary>]
|
26340
26386
|
#
|
26341
26387
|
# @!attribute [rw] next_token
|
26342
|
-
#
|
26343
|
-
#
|
26388
|
+
# The token returned if the response is truncated. To retrieve the
|
26389
|
+
# next set of job executions, use it in the next request.
|
26344
26390
|
# @return [String]
|
26345
26391
|
#
|
26346
26392
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListMonitoringExecutionsResponse AWS API Documentation
|
@@ -26357,8 +26403,8 @@ module Aws::SageMaker
|
|
26357
26403
|
# @return [String]
|
26358
26404
|
#
|
26359
26405
|
# @!attribute [rw] sort_by
|
26360
|
-
# Whether to sort results by `Status`, `CreationTime`,
|
26361
|
-
# field. The default is `CreationTime`.
|
26406
|
+
# Whether to sort the results by the `Status`, `CreationTime`, or
|
26407
|
+
# `ScheduledTime` field. The default is `CreationTime`.
|
26362
26408
|
# @return [String]
|
26363
26409
|
#
|
26364
26410
|
# @!attribute [rw] sort_order
|
@@ -26442,8 +26488,8 @@ module Aws::SageMaker
|
|
26442
26488
|
# @return [Array<Types::MonitoringScheduleSummary>]
|
26443
26489
|
#
|
26444
26490
|
# @!attribute [rw] next_token
|
26445
|
-
#
|
26446
|
-
#
|
26491
|
+
# The token returned if the response is truncated. To retrieve the
|
26492
|
+
# next set of job executions, use it in the next request.
|
26447
26493
|
# @return [String]
|
26448
26494
|
#
|
26449
26495
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListMonitoringSchedulesResponse AWS API Documentation
|
@@ -29014,9 +29060,9 @@ module Aws::SageMaker
|
|
29014
29060
|
# @return [String]
|
29015
29061
|
#
|
29016
29062
|
# @!attribute [rw] config_uri
|
29017
|
-
# JSON formatted S3 file that defines explainability
|
29018
|
-
# more information on this JSON configuration file,
|
29019
|
-
# model explainability parameters][1].
|
29063
|
+
# JSON formatted Amazon S3 file that defines explainability
|
29064
|
+
# parameters. For more information on this JSON configuration file,
|
29065
|
+
# see [Configure model explainability parameters][1].
|
29020
29066
|
#
|
29021
29067
|
#
|
29022
29068
|
#
|
@@ -29794,7 +29840,7 @@ module Aws::SageMaker
|
|
29794
29840
|
# @!attribute [rw] record_preprocessor_source_uri
|
29795
29841
|
# An Amazon S3 URI to a script that is called per row prior to running
|
29796
29842
|
# analysis. It can base64 decode the payload and convert it into a
|
29797
|
-
#
|
29843
|
+
# flattened JSON so that the built-in container can use the converted
|
29798
29844
|
# data. Applicable only for the built-in (first party) containers.
|
29799
29845
|
# @return [String]
|
29800
29846
|
#
|
@@ -29850,8 +29896,8 @@ module Aws::SageMaker
|
|
29850
29896
|
include Aws::Structure
|
29851
29897
|
end
|
29852
29898
|
|
29853
|
-
# The input for the model quality monitoring job. Currently
|
29854
|
-
# supported for input for model quality monitoring jobs.
|
29899
|
+
# The input for the model quality monitoring job. Currently endpoints
|
29900
|
+
# are supported for input for model quality monitoring jobs.
|
29855
29901
|
#
|
29856
29902
|
# @!attribute [rw] endpoint_input
|
29857
29903
|
# Input object for the endpoint
|
@@ -30122,7 +30168,7 @@ module Aws::SageMaker
|
|
30122
30168
|
# @!attribute [rw] record_preprocessor_source_uri
|
30123
30169
|
# An Amazon S3 URI to a script that is called per row prior to running
|
30124
30170
|
# analysis. It can base64 decode the payload and convert it into a
|
30125
|
-
#
|
30171
|
+
# flattened JSON so that the built-in container can use the converted
|
30126
30172
|
# data. Applicable only for the built-in (first party) containers.
|
30127
30173
|
# @return [String]
|
30128
30174
|
#
|
@@ -30191,10 +30237,9 @@ module Aws::SageMaker
|
|
30191
30237
|
# @return [Integer]
|
30192
30238
|
#
|
30193
30239
|
# @!attribute [rw] volume_kms_key_id
|
30194
|
-
# The
|
30195
|
-
#
|
30196
|
-
#
|
30197
|
-
# monitoring job.
|
30240
|
+
# The Key Management Service (KMS) key that Amazon SageMaker uses to
|
30241
|
+
# encrypt data on the storage volume attached to the ML compute
|
30242
|
+
# instance(s) that run the model monitoring job.
|
30198
30243
|
# @return [String]
|
30199
30244
|
#
|
30200
30245
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/MonitoringClusterConfig AWS API Documentation
|
@@ -30367,7 +30412,7 @@ module Aws::SageMaker
|
|
30367
30412
|
#
|
30368
30413
|
# @!attribute [rw] monitoring_output_config
|
30369
30414
|
# The array of outputs from the monitoring job to be uploaded to
|
30370
|
-
# Amazon
|
30415
|
+
# Amazon S3.
|
30371
30416
|
# @return [Types::MonitoringOutputConfig]
|
30372
30417
|
#
|
30373
30418
|
# @!attribute [rw] monitoring_resources
|
@@ -30447,7 +30492,7 @@ module Aws::SageMaker
|
|
30447
30492
|
# Represents the JSON dataset format used when running a monitoring job.
|
30448
30493
|
#
|
30449
30494
|
# @!attribute [rw] line
|
30450
|
-
# Indicates if the file should be read as a
|
30495
|
+
# Indicates if the file should be read as a JSON object per line.
|
30451
30496
|
# @return [Boolean]
|
30452
30497
|
#
|
30453
30498
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/MonitoringJsonDatasetFormat AWS API Documentation
|
@@ -30518,9 +30563,9 @@ module Aws::SageMaker
|
|
30518
30563
|
# @return [Array<Types::MonitoringOutput>]
|
30519
30564
|
#
|
30520
30565
|
# @!attribute [rw] kms_key_id
|
30521
|
-
# The
|
30522
|
-
#
|
30523
|
-
#
|
30566
|
+
# The Key Management Service (KMS) key that Amazon SageMaker uses to
|
30567
|
+
# encrypt the model artifacts at rest using Amazon S3 server-side
|
30568
|
+
# encryption.
|
30524
30569
|
# @return [String]
|
30525
30570
|
#
|
30526
30571
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/MonitoringOutputConfig AWS API Documentation
|
@@ -31349,12 +31394,23 @@ module Aws::SageMaker
|
|
31349
31394
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_feature_store_DeleteRecord.html
|
31350
31395
|
# @return [Types::TtlDuration]
|
31351
31396
|
#
|
31397
|
+
# @!attribute [rw] storage_type
|
31398
|
+
# Option for different tiers of low latency storage for real-time data
|
31399
|
+
# retrieval.
|
31400
|
+
#
|
31401
|
+
# * `Standard`: A managed low latency data store for feature groups.
|
31402
|
+
#
|
31403
|
+
# * `InMemory`: A managed data store for feature groups that supports
|
31404
|
+
# very low latency retrieval.
|
31405
|
+
# @return [String]
|
31406
|
+
#
|
31352
31407
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/OnlineStoreConfig AWS API Documentation
|
31353
31408
|
#
|
31354
31409
|
class OnlineStoreConfig < Struct.new(
|
31355
31410
|
:security_config,
|
31356
31411
|
:enable_online_store,
|
31357
|
-
:ttl_duration
|
31412
|
+
:ttl_duration,
|
31413
|
+
:storage_type)
|
31358
31414
|
SENSITIVE = []
|
31359
31415
|
include Aws::Structure
|
31360
31416
|
end
|
@@ -35864,6 +35920,11 @@ module Aws::SageMaker
|
|
35864
35920
|
#
|
35865
35921
|
# `cron(0 [00-23] ? * * *)`
|
35866
35922
|
#
|
35923
|
+
# * If you want to run the job one time, immediately, use the
|
35924
|
+
# following keyword:
|
35925
|
+
#
|
35926
|
+
# `NOW`
|
35927
|
+
#
|
35867
35928
|
# For example, the following are valid cron expressions:
|
35868
35929
|
#
|
35869
35930
|
# * Daily at noon UTC: `cron(0 12 ? * * *)`
|
@@ -37790,7 +37851,7 @@ module Aws::SageMaker
|
|
37790
37851
|
# @return [Types::TimeSeriesConfig]
|
37791
37852
|
#
|
37792
37853
|
# @!attribute [rw] holiday_config
|
37793
|
-
# The collection of
|
37854
|
+
# The collection of holiday featurization attributes used to
|
37794
37855
|
# incorporate national holiday information into your forecasting
|
37795
37856
|
# model.
|
37796
37857
|
# @return [Array<Types::HolidayConfigAttributes>]
|
@@ -41825,6 +41886,20 @@ module Aws::SageMaker
|
|
41825
41886
|
include Aws::Structure
|
41826
41887
|
end
|
41827
41888
|
|
41889
|
+
# Configuration for your vector collection type.
|
41890
|
+
#
|
41891
|
+
# @!attribute [rw] dimension
|
41892
|
+
# The number of elements in your vector.
|
41893
|
+
# @return [Integer]
|
41894
|
+
#
|
41895
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/VectorConfig AWS API Documentation
|
41896
|
+
#
|
41897
|
+
class VectorConfig < Struct.new(
|
41898
|
+
:dimension)
|
41899
|
+
SENSITIVE = []
|
41900
|
+
include Aws::Structure
|
41901
|
+
end
|
41902
|
+
|
41828
41903
|
# A lineage entity connected to the starting entity(ies).
|
41829
41904
|
#
|
41830
41905
|
# @!attribute [rw] arn
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
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.
|
4
|
+
version: 1.213.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: 2023-09-
|
11
|
+
date: 2023-09-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|