aws-sdk-sagemaker 1.189.0 → 1.190.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: 681df9f590e8b983bd315a8ba555c37decce4a49fefc29f8006cfbd94a771a75
4
- data.tar.gz: 7a6fb6bfd6de4d753da26d888b86459b4a6a76a656e7f8908374d344fb75cabe
3
+ metadata.gz: 8953db051e1dac139e51b19da6df9abf774ab717601ee34a250b124863d8d314
4
+ data.tar.gz: 1f8d8fb9af2d2f1eec3a226cda316912993ae515b3484aee34faf69de7dfd258
5
5
  SHA512:
6
- metadata.gz: 20066f17187b2fb660046da8d8de1314ab8e29d9130aecbb3dac85c47de7c4f8e13037475bc34ea49b6fc999995509a7fa30ad74a0a03c421efe18298a644833
7
- data.tar.gz: 37acfb08d9de1dba8fe46bcd7f6c3a7a1dda7b7a7baf02da17cabc14582848d1ea0cebd10e3a82f2ccc0c36bd27dd380665feaf00352d96d58c1b46cefa0933d
6
+ metadata.gz: cc46416a136c19e15e3b9e2c12bf497a5d181d2c514552bd1890a5b917a871f6beac5413db3cd30d296662e55f96a9df4ffb5cdace8ccc46edeb2f8bbc4ea579
7
+ data.tar.gz: b95d619ca2cd9deceab158d09d46b7db69bbaf56b38369d03e73fc67632f0501fec23baa70256b38915b5f5efe75361419ca4052efe37a883ec57332a90b5498
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.190.0 (2023-06-27)
5
+ ------------------
6
+
7
+ * Feature - Introducing TTL for online store records in feature groups.
8
+
4
9
  1.189.0 (2023-06-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.189.0
1
+ 1.190.0
@@ -3240,6 +3240,10 @@ module Aws::SageMaker
3240
3240
  # kms_key_id: "KmsKeyId",
3241
3241
  # },
3242
3242
  # enable_online_store: false,
3243
+ # ttl_duration: {
3244
+ # unit: "Seconds", # accepts Seconds, Minutes, Hours, Days, Weeks
3245
+ # value: 1,
3246
+ # },
3243
3247
  # },
3244
3248
  # offline_store_config: {
3245
3249
  # s3_storage_config: { # required
@@ -11361,6 +11365,8 @@ module Aws::SageMaker
11361
11365
  # resp.last_modified_time #=> Time
11362
11366
  # resp.online_store_config.security_config.kms_key_id #=> String
11363
11367
  # resp.online_store_config.enable_online_store #=> Boolean
11368
+ # resp.online_store_config.ttl_duration.unit #=> String, one of "Seconds", "Minutes", "Hours", "Days", "Weeks"
11369
+ # resp.online_store_config.ttl_duration.value #=> Integer
11364
11370
  # resp.offline_store_config.s3_storage_config.s3_uri #=> String
11365
11371
  # resp.offline_store_config.s3_storage_config.kms_key_id #=> String
11366
11372
  # resp.offline_store_config.s3_storage_config.resolved_output_s3_uri #=> String
@@ -22069,6 +22075,9 @@ module Aws::SageMaker
22069
22075
  # request. It takes some time after you've made a valid request for
22070
22076
  # Feature Store to update the feature group.
22071
22077
  #
22078
+ # @option params [Types::OnlineStoreConfigUpdate] :online_store_config
22079
+ # Updates the feature group online store configuration.
22080
+ #
22072
22081
  # @return [Types::UpdateFeatureGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
22073
22082
  #
22074
22083
  # * {Types::UpdateFeatureGroupResponse#feature_group_arn #feature_group_arn} => String
@@ -22083,6 +22092,12 @@ module Aws::SageMaker
22083
22092
  # feature_type: "Integral", # accepts Integral, Fractional, String
22084
22093
  # },
22085
22094
  # ],
22095
+ # online_store_config: {
22096
+ # ttl_duration: {
22097
+ # unit: "Seconds", # accepts Seconds, Minutes, Hours, Days, Weeks
22098
+ # value: 1,
22099
+ # },
22100
+ # },
22086
22101
  # })
22087
22102
  #
22088
22103
  # @example Response structure
@@ -23743,7 +23758,7 @@ module Aws::SageMaker
23743
23758
  params: params,
23744
23759
  config: config)
23745
23760
  context[:gem_name] = 'aws-sdk-sagemaker'
23746
- context[:gem_version] = '1.189.0'
23761
+ context[:gem_version] = '1.190.0'
23747
23762
  Seahorse::Client::Request.new(handlers, context)
23748
23763
  end
23749
23764
 
@@ -1423,6 +1423,7 @@ module Aws::SageMaker
1423
1423
  OidcEndpoint = Shapes::StringShape.new(name: 'OidcEndpoint')
1424
1424
  OidcMemberDefinition = Shapes::StructureShape.new(name: 'OidcMemberDefinition')
1425
1425
  OnlineStoreConfig = Shapes::StructureShape.new(name: 'OnlineStoreConfig')
1426
+ OnlineStoreConfigUpdate = Shapes::StructureShape.new(name: 'OnlineStoreConfigUpdate')
1426
1427
  OnlineStoreSecurityConfig = Shapes::StructureShape.new(name: 'OnlineStoreSecurityConfig')
1427
1428
  OnlineStoreTotalSizeBytes = Shapes::IntegerShape.new(name: 'OnlineStoreTotalSizeBytes')
1428
1429
  Operator = Shapes::StringShape.new(name: 'Operator')
@@ -1911,6 +1912,9 @@ module Aws::SageMaker
1911
1912
  TrialSourceArn = Shapes::StringShape.new(name: 'TrialSourceArn')
1912
1913
  TrialSummaries = Shapes::ListShape.new(name: 'TrialSummaries')
1913
1914
  TrialSummary = Shapes::StructureShape.new(name: 'TrialSummary')
1915
+ TtlDuration = Shapes::StructureShape.new(name: 'TtlDuration')
1916
+ TtlDurationUnit = Shapes::StringShape.new(name: 'TtlDurationUnit')
1917
+ TtlDurationValue = Shapes::IntegerShape.new(name: 'TtlDurationValue')
1914
1918
  TuningJobCompletionCriteria = Shapes::StructureShape.new(name: 'TuningJobCompletionCriteria')
1915
1919
  TuningJobStepMetaData = Shapes::StructureShape.new(name: 'TuningJobStepMetaData')
1916
1920
  USD = Shapes::StructureShape.new(name: 'USD')
@@ -7332,8 +7336,12 @@ module Aws::SageMaker
7332
7336
 
7333
7337
  OnlineStoreConfig.add_member(:security_config, Shapes::ShapeRef.new(shape: OnlineStoreSecurityConfig, location_name: "SecurityConfig"))
7334
7338
  OnlineStoreConfig.add_member(:enable_online_store, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableOnlineStore"))
7339
+ OnlineStoreConfig.add_member(:ttl_duration, Shapes::ShapeRef.new(shape: TtlDuration, location_name: "TtlDuration"))
7335
7340
  OnlineStoreConfig.struct_class = Types::OnlineStoreConfig
7336
7341
 
7342
+ OnlineStoreConfigUpdate.add_member(:ttl_duration, Shapes::ShapeRef.new(shape: TtlDuration, location_name: "TtlDuration"))
7343
+ OnlineStoreConfigUpdate.struct_class = Types::OnlineStoreConfigUpdate
7344
+
7337
7345
  OnlineStoreSecurityConfig.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
7338
7346
  OnlineStoreSecurityConfig.struct_class = Types::OnlineStoreSecurityConfig
7339
7347
 
@@ -8582,6 +8590,10 @@ module Aws::SageMaker
8582
8590
  TrialSummary.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
8583
8591
  TrialSummary.struct_class = Types::TrialSummary
8584
8592
 
8593
+ TtlDuration.add_member(:unit, Shapes::ShapeRef.new(shape: TtlDurationUnit, location_name: "Unit"))
8594
+ TtlDuration.add_member(:value, Shapes::ShapeRef.new(shape: TtlDurationValue, location_name: "Value"))
8595
+ TtlDuration.struct_class = Types::TtlDuration
8596
+
8585
8597
  TuningJobCompletionCriteria.add_member(:target_objective_metric_value, Shapes::ShapeRef.new(shape: TargetObjectiveMetricValue, location_name: "TargetObjectiveMetricValue"))
8586
8598
  TuningJobCompletionCriteria.add_member(:best_objective_not_improving, Shapes::ShapeRef.new(shape: BestObjectiveNotImproving, location_name: "BestObjectiveNotImproving"))
8587
8599
  TuningJobCompletionCriteria.add_member(:convergence_detected, Shapes::ShapeRef.new(shape: ConvergenceDetected, location_name: "ConvergenceDetected"))
@@ -8697,6 +8709,7 @@ module Aws::SageMaker
8697
8709
 
8698
8710
  UpdateFeatureGroupRequest.add_member(:feature_group_name, Shapes::ShapeRef.new(shape: FeatureGroupName, required: true, location_name: "FeatureGroupName"))
8699
8711
  UpdateFeatureGroupRequest.add_member(:feature_additions, Shapes::ShapeRef.new(shape: FeatureAdditions, location_name: "FeatureAdditions"))
8712
+ UpdateFeatureGroupRequest.add_member(:online_store_config, Shapes::ShapeRef.new(shape: OnlineStoreConfigUpdate, location_name: "OnlineStoreConfig"))
8700
8713
  UpdateFeatureGroupRequest.struct_class = Types::UpdateFeatureGroupRequest
8701
8714
 
8702
8715
  UpdateFeatureGroupResponse.add_member(:feature_group_arn, Shapes::ShapeRef.new(shape: FeatureGroupArn, required: true, location_name: "FeatureGroupArn"))
@@ -4102,7 +4102,7 @@ module Aws::SageMaker
4102
4102
  # @!attribute [rw] model_data_source
4103
4103
  # Specifies the location of ML model data to deploy.
4104
4104
  #
4105
- # <note markdown="1"> Currently you cannot use `ModelDataSource` in conjuction with
4105
+ # <note markdown="1"> Currently you cannot use `ModelDataSource` in conjunction with
4106
4106
  # SageMaker batch transform, SageMaker serverless endpoints, SageMaker
4107
4107
  # multi-model endpoints, and SageMaker Marketplace.
4108
4108
  #
@@ -30896,11 +30896,44 @@ module Aws::SageMaker
30896
30896
  # The default value is `False`.
30897
30897
  # @return [Boolean]
30898
30898
  #
30899
+ # @!attribute [rw] ttl_duration
30900
+ # Time to live duration, where the record is hard deleted after the
30901
+ # expiration time is reached; `ExpiresAt` = `EventTime` +
30902
+ # `TtlDuration`. For information on HardDelete, see the
30903
+ # [DeleteRecord][1] API in the Amazon SageMaker API Reference guide.
30904
+ #
30905
+ #
30906
+ #
30907
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_feature_store_DeleteRecord.html
30908
+ # @return [Types::TtlDuration]
30909
+ #
30899
30910
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/OnlineStoreConfig AWS API Documentation
30900
30911
  #
30901
30912
  class OnlineStoreConfig < Struct.new(
30902
30913
  :security_config,
30903
- :enable_online_store)
30914
+ :enable_online_store,
30915
+ :ttl_duration)
30916
+ SENSITIVE = []
30917
+ include Aws::Structure
30918
+ end
30919
+
30920
+ # Updates the feature group online store configuration.
30921
+ #
30922
+ # @!attribute [rw] ttl_duration
30923
+ # Time to live duration, where the record is hard deleted after the
30924
+ # expiration time is reached; `ExpiresAt` = `EventTime` +
30925
+ # `TtlDuration`. For information on HardDelete, see the
30926
+ # [DeleteRecord][1] API in the Amazon SageMaker API Reference guide.
30927
+ #
30928
+ #
30929
+ #
30930
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_feature_store_DeleteRecord.html
30931
+ # @return [Types::TtlDuration]
30932
+ #
30933
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/OnlineStoreConfigUpdate AWS API Documentation
30934
+ #
30935
+ class OnlineStoreConfigUpdate < Struct.new(
30936
+ :ttl_duration)
30904
30937
  SENSITIVE = []
30905
30938
  include Aws::Structure
30906
30939
  end
@@ -35048,8 +35081,8 @@ module Aws::SageMaker
35048
35081
  # as part of the ML model data to deploy. A valid key name prefix
35049
35082
  # identified by `S3Uri` always ends with a forward slash (/).
35050
35083
  #
35051
- # If you choose S3Object, S3Uri identifies an object that is the ML
35052
- # model data to deploy.
35084
+ # If you choose `S3Object`, `S3Uri` identifies an object that is the
35085
+ # ML model data to deploy.
35053
35086
  # @return [String]
35054
35087
  #
35055
35088
  # @!attribute [rw] compression_type
@@ -35103,8 +35136,8 @@ module Aws::SageMaker
35103
35136
  # `s3://mybucket/model/weights` and
35104
35137
  # `s3://mybucket/model/weights/part1` and you specify
35105
35138
  # `s3://mybucket/model/` as the value of `S3Uri` and `S3Prefix` as
35106
- # the value of S3DataType, then it will result in name clash between
35107
- # `/opt/ml/model/weights` (a regular file) and
35139
+ # the value of `S3DataType`, then it will result in name clash
35140
+ # between `/opt/ml/model/weights` (a regular file) and
35108
35141
  # `/opt/ml/model/weights/` (a directory).
35109
35142
  #
35110
35143
  # * Do not organize the model artifacts in [S3 console using
@@ -38802,6 +38835,32 @@ module Aws::SageMaker
38802
38835
  include Aws::Structure
38803
38836
  end
38804
38837
 
38838
+ # Time to live duration, where the record is hard deleted after the
38839
+ # expiration time is reached; `ExpiresAt` = `EventTime` + `TtlDuration`.
38840
+ # For information on HardDelete, see the [DeleteRecord][1] API in the
38841
+ # Amazon SageMaker API Reference guide.
38842
+ #
38843
+ #
38844
+ #
38845
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_feature_store_DeleteRecord.html
38846
+ #
38847
+ # @!attribute [rw] unit
38848
+ # `TtlDuration` time unit.
38849
+ # @return [String]
38850
+ #
38851
+ # @!attribute [rw] value
38852
+ # `TtlDuration` time value.
38853
+ # @return [Integer]
38854
+ #
38855
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TtlDuration AWS API Documentation
38856
+ #
38857
+ class TtlDuration < Struct.new(
38858
+ :unit,
38859
+ :value)
38860
+ SENSITIVE = []
38861
+ include Aws::Structure
38862
+ end
38863
+
38805
38864
  # The job completion criteria.
38806
38865
  #
38807
38866
  # @!attribute [rw] target_objective_metric_value
@@ -39429,11 +39488,16 @@ module Aws::SageMaker
39429
39488
  # request for Feature Store to update the feature group.
39430
39489
  # @return [Array<Types::FeatureDefinition>]
39431
39490
  #
39491
+ # @!attribute [rw] online_store_config
39492
+ # Updates the feature group online store configuration.
39493
+ # @return [Types::OnlineStoreConfigUpdate]
39494
+ #
39432
39495
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateFeatureGroupRequest AWS API Documentation
39433
39496
  #
39434
39497
  class UpdateFeatureGroupRequest < Struct.new(
39435
39498
  :feature_group_name,
39436
- :feature_additions)
39499
+ :feature_additions,
39500
+ :online_store_config)
39437
39501
  SENSITIVE = []
39438
39502
  include Aws::Structure
39439
39503
  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.189.0'
56
+ GEM_VERSION = '1.190.0'
57
57
 
58
58
  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.189.0
4
+ version: 1.190.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-06-21 00:00:00.000000000 Z
11
+ date: 2023-06-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core