aws-sdk-sagemakerfeaturestoreruntime 1.22.0 → 1.23.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: fa1d1044f2462a29f0892dd8a801d2729d3ab1ebb6f1f423f6efaf12bdbf0211
4
- data.tar.gz: 37cc764f2df3faea54e804225579ed04424cfabe7aa269eea42a3502da4103e0
3
+ metadata.gz: 2c083e481976ab76a33f53d0283318dffa11ee7e38613aff2e9fe896194d7d69
4
+ data.tar.gz: 7d2ff974999dff973b0c6af9ad85b550ae589b7317d44736967fc390dda87a12
5
5
  SHA512:
6
- metadata.gz: bd58bea2a879ea9ac06c31a69370ea6c829999efa88e5ffe4578e92907e536356fe1787c28929af72a73db1ad8474527c9ee70b624bf3070cd806ecbceb8ce0e
7
- data.tar.gz: 73d99e74574e6c7cead4c3f8ff92e1cb4c1907e91674190a0f499da784edc425d9e21bfb1db12caf095482b096b0f6ff20f3b9a69fb9af9b557fb140a538e021
6
+ metadata.gz: 4e777f4f385dbb3c3f6bc06179d1f60a314e78a596d76448e403db854f4bd78c5862f50b21dd1618028df15f030968c98ec9db9de44987f93314e20ec1c5cba2
7
+ data.tar.gz: 65dc22d8cf9c2f305bf6e14d4289fb314116dcdda391ac140f19295aaa823cc6725a194f0ce2660fc3a71a80f0ce876329093ad54005f648f902039e7733c9a3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.23.0 (2023-07-20)
5
+ ------------------
6
+
7
+ * Feature - Cross account support for SageMaker Feature Store
8
+
4
9
  1.22.0 (2023-07-11)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.22.0
1
+ 1.23.0
@@ -391,9 +391,9 @@ module Aws::SageMakerFeatureStoreRuntime
391
391
  # Retrieves a batch of `Records` from a `FeatureGroup`.
392
392
  #
393
393
  # @option params [required, Array<Types::BatchGetRecordIdentifier>] :identifiers
394
- # A list of `FeatureGroup` names, with their corresponding
395
- # `RecordIdentifier` value, and Feature name that have been requested to
396
- # be retrieved in batch.
394
+ # A list containing the name or Amazon Resource Name (ARN) of the
395
+ # `FeatureGroup`, the list of names of `Feature`s to be retrieved, and
396
+ # the corresponding `RecordIdentifier` values as strings.
397
397
  #
398
398
  # @option params [String] :expiration_time_response
399
399
  # Parameter to request `ExpiresAt` in response. If `Enabled`,
@@ -411,7 +411,7 @@ module Aws::SageMakerFeatureStoreRuntime
411
411
  # resp = client.batch_get_record({
412
412
  # identifiers: [ # required
413
413
  # {
414
- # feature_group_name: "FeatureGroupName", # required
414
+ # feature_group_name: "FeatureGroupNameOrArn", # required
415
415
  # record_identifiers_value_as_string: ["ValueAsString"], # required
416
416
  # feature_names: ["FeatureName"],
417
417
  # },
@@ -471,7 +471,8 @@ module Aws::SageMakerFeatureStoreRuntime
471
471
  # is written to the `OfflineStore`.
472
472
  #
473
473
  # @option params [required, String] :feature_group_name
474
- # The name of the feature group to delete the record from.
474
+ # The name or Amazon Resource Name (ARN) of the feature group to delete
475
+ # the record from.
475
476
  #
476
477
  # @option params [required, String] :record_identifier_value_as_string
477
478
  # The value for the `RecordIdentifier` that uniquely identifies the
@@ -495,7 +496,7 @@ module Aws::SageMakerFeatureStoreRuntime
495
496
  # @example Request syntax with placeholder values
496
497
  #
497
498
  # resp = client.delete_record({
498
- # feature_group_name: "FeatureGroupName", # required
499
+ # feature_group_name: "FeatureGroupNameOrArn", # required
499
500
  # record_identifier_value_as_string: "ValueAsString", # required
500
501
  # event_time: "ValueAsString", # required
501
502
  # target_stores: ["OnlineStore"], # accepts OnlineStore, OfflineStore
@@ -517,8 +518,8 @@ module Aws::SageMakerFeatureStoreRuntime
517
518
  # returned.
518
519
  #
519
520
  # @option params [required, String] :feature_group_name
520
- # The name of the feature group from which you want to retrieve a
521
- # record.
521
+ # The name or Amazon Resource Name (ARN) of the feature group from which
522
+ # you want to retrieve a record.
522
523
  #
523
524
  # @option params [required, String] :record_identifier_value_as_string
524
525
  # The value that corresponds to `RecordIdentifier` type and uniquely
@@ -530,8 +531,8 @@ module Aws::SageMakerFeatureStoreRuntime
530
531
  #
531
532
  # @option params [String] :expiration_time_response
532
533
  # Parameter to request `ExpiresAt` in response. If `Enabled`,
533
- # `BatchGetRecord` will return the value of `ExpiresAt`, if it is not
534
- # null. If `Disabled` and null, `BatchGetRecord` will return null.
534
+ # `GetRecord` will return the value of `ExpiresAt`, if it is not null.
535
+ # If `Disabled` and null, `GetRecord` will return null.
535
536
  #
536
537
  # @return [Types::GetRecordResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
537
538
  #
@@ -541,7 +542,7 @@ module Aws::SageMakerFeatureStoreRuntime
541
542
  # @example Request syntax with placeholder values
542
543
  #
543
544
  # resp = client.get_record({
544
- # feature_group_name: "FeatureGroupName", # required
545
+ # feature_group_name: "FeatureGroupNameOrArn", # required
545
546
  # record_identifier_value_as_string: "ValueAsString", # required
546
547
  # feature_names: ["FeatureName"],
547
548
  # expiration_time_response: "Enabled", # accepts Enabled, Disabled
@@ -563,14 +564,28 @@ module Aws::SageMakerFeatureStoreRuntime
563
564
  req.send_request(options)
564
565
  end
565
566
 
566
- # Used for data ingestion into the `FeatureStore`. The `PutRecord` API
567
- # writes to both the `OnlineStore` and `OfflineStore`. If the record is
568
- # the latest record for the `recordIdentifier`, the record is written to
569
- # both the `OnlineStore` and `OfflineStore`. If the record is a historic
570
- # record, it is written only to the `OfflineStore`.
567
+ # The `PutRecord` API is used to ingest a list of `Records` into your
568
+ # feature group.
569
+ #
570
+ # If a new record’s `EventTime` is greater, the new record is written to
571
+ # both the `OnlineStore` and `OfflineStore`. Otherwise, the record is a
572
+ # historic record and it is written only to the `OfflineStore`.
573
+ #
574
+ # You can specify the ingestion to be applied to the `OnlineStore`,
575
+ # `OfflineStore`, or both by using the `TargetStores` request parameter.
576
+ #
577
+ # You can set the ingested record to expire at a given time to live
578
+ # (TTL) duration after the record’s event time, `ExpiresAt` =
579
+ # `EventTime` + `TtlDuration`, by specifying the `TtlDuration`
580
+ # parameter. A record level `TtlDuration` is set when specifying the
581
+ # `TtlDuration` parameter using the `PutRecord` API call. If the input
582
+ # `TtlDuration` is `null` or unspecified, `TtlDuration` is set to the
583
+ # default feature group level `TtlDuration`. A record level
584
+ # `TtlDuration` supersedes the group level `TtlDuration`.
571
585
  #
572
586
  # @option params [required, String] :feature_group_name
573
- # The name of the feature group that you want to insert the record into.
587
+ # The name or Amazon Resource Name (ARN) of the feature group that you
588
+ # want to insert the record into.
574
589
  #
575
590
  # @option params [required, Array<Types::FeatureValue>] :record
576
591
  # List of FeatureValues to be inserted. This will be a full over-write.
@@ -603,7 +618,7 @@ module Aws::SageMakerFeatureStoreRuntime
603
618
  # @example Request syntax with placeholder values
604
619
  #
605
620
  # resp = client.put_record({
606
- # feature_group_name: "FeatureGroupName", # required
621
+ # feature_group_name: "FeatureGroupNameOrArn", # required
607
622
  # record: [ # required
608
623
  # {
609
624
  # feature_name: "FeatureName", # required
@@ -639,7 +654,7 @@ module Aws::SageMakerFeatureStoreRuntime
639
654
  params: params,
640
655
  config: config)
641
656
  context[:gem_name] = 'aws-sdk-sagemakerfeaturestoreruntime'
642
- context[:gem_version] = '1.22.0'
657
+ context[:gem_version] = '1.23.0'
643
658
  Seahorse::Client::Request.new(handlers, context)
644
659
  end
645
660
 
@@ -26,7 +26,7 @@ module Aws::SageMakerFeatureStoreRuntime
26
26
  DeletionMode = Shapes::StringShape.new(name: 'DeletionMode')
27
27
  ExpirationTimeResponse = Shapes::StringShape.new(name: 'ExpirationTimeResponse')
28
28
  ExpiresAt = Shapes::StringShape.new(name: 'ExpiresAt')
29
- FeatureGroupName = Shapes::StringShape.new(name: 'FeatureGroupName')
29
+ FeatureGroupNameOrArn = Shapes::StringShape.new(name: 'FeatureGroupNameOrArn')
30
30
  FeatureName = Shapes::StringShape.new(name: 'FeatureName')
31
31
  FeatureNames = Shapes::ListShape.new(name: 'FeatureNames')
32
32
  FeatureValue = Shapes::StructureShape.new(name: 'FeatureValue')
@@ -59,7 +59,7 @@ module Aws::SageMakerFeatureStoreRuntime
59
59
 
60
60
  BatchGetRecordErrors.member = Shapes::ShapeRef.new(shape: BatchGetRecordError)
61
61
 
62
- BatchGetRecordIdentifier.add_member(:feature_group_name, Shapes::ShapeRef.new(shape: FeatureGroupName, required: true, location_name: "FeatureGroupName"))
62
+ BatchGetRecordIdentifier.add_member(:feature_group_name, Shapes::ShapeRef.new(shape: FeatureGroupNameOrArn, required: true, location_name: "FeatureGroupName"))
63
63
  BatchGetRecordIdentifier.add_member(:record_identifiers_value_as_string, Shapes::ShapeRef.new(shape: RecordIdentifiers, required: true, location_name: "RecordIdentifiersValueAsString"))
64
64
  BatchGetRecordIdentifier.add_member(:feature_names, Shapes::ShapeRef.new(shape: FeatureNames, location_name: "FeatureNames"))
65
65
  BatchGetRecordIdentifier.struct_class = Types::BatchGetRecordIdentifier
@@ -83,7 +83,7 @@ module Aws::SageMakerFeatureStoreRuntime
83
83
 
84
84
  BatchGetRecordResultDetails.member = Shapes::ShapeRef.new(shape: BatchGetRecordResultDetail)
85
85
 
86
- DeleteRecordRequest.add_member(:feature_group_name, Shapes::ShapeRef.new(shape: FeatureGroupName, required: true, location: "uri", location_name: "FeatureGroupName"))
86
+ DeleteRecordRequest.add_member(:feature_group_name, Shapes::ShapeRef.new(shape: FeatureGroupNameOrArn, required: true, location: "uri", location_name: "FeatureGroupName"))
87
87
  DeleteRecordRequest.add_member(:record_identifier_value_as_string, Shapes::ShapeRef.new(shape: ValueAsString, required: true, location: "querystring", location_name: "RecordIdentifierValueAsString"))
88
88
  DeleteRecordRequest.add_member(:event_time, Shapes::ShapeRef.new(shape: ValueAsString, required: true, location: "querystring", location_name: "EventTime"))
89
89
  DeleteRecordRequest.add_member(:target_stores, Shapes::ShapeRef.new(shape: TargetStores, location: "querystring", location_name: "TargetStores"))
@@ -96,7 +96,7 @@ module Aws::SageMakerFeatureStoreRuntime
96
96
  FeatureValue.add_member(:value_as_string, Shapes::ShapeRef.new(shape: ValueAsString, required: true, location_name: "ValueAsString"))
97
97
  FeatureValue.struct_class = Types::FeatureValue
98
98
 
99
- GetRecordRequest.add_member(:feature_group_name, Shapes::ShapeRef.new(shape: FeatureGroupName, required: true, location: "uri", location_name: "FeatureGroupName"))
99
+ GetRecordRequest.add_member(:feature_group_name, Shapes::ShapeRef.new(shape: FeatureGroupNameOrArn, required: true, location: "uri", location_name: "FeatureGroupName"))
100
100
  GetRecordRequest.add_member(:record_identifier_value_as_string, Shapes::ShapeRef.new(shape: ValueAsString, required: true, location: "querystring", location_name: "RecordIdentifierValueAsString"))
101
101
  GetRecordRequest.add_member(:feature_names, Shapes::ShapeRef.new(shape: FeatureNames, location: "querystring", location_name: "FeatureName"))
102
102
  GetRecordRequest.add_member(:expiration_time_response, Shapes::ShapeRef.new(shape: ExpirationTimeResponse, location: "querystring", location_name: "ExpirationTimeResponse"))
@@ -109,7 +109,7 @@ module Aws::SageMakerFeatureStoreRuntime
109
109
  InternalFailure.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
110
110
  InternalFailure.struct_class = Types::InternalFailure
111
111
 
112
- PutRecordRequest.add_member(:feature_group_name, Shapes::ShapeRef.new(shape: FeatureGroupName, required: true, location: "uri", location_name: "FeatureGroupName"))
112
+ PutRecordRequest.add_member(:feature_group_name, Shapes::ShapeRef.new(shape: FeatureGroupNameOrArn, required: true, location: "uri", location_name: "FeatureGroupName"))
113
113
  PutRecordRequest.add_member(:record, Shapes::ShapeRef.new(shape: Record, required: true, location_name: "Record"))
114
114
  PutRecordRequest.add_member(:target_stores, Shapes::ShapeRef.new(shape: TargetStores, location_name: "TargetStores"))
115
115
  PutRecordRequest.add_member(:ttl_duration, Shapes::ShapeRef.new(shape: TtlDuration, location_name: "TtlDuration"))
@@ -66,8 +66,8 @@ module Aws::SageMakerFeatureStoreRuntime
66
66
  # in a batch.
67
67
  #
68
68
  # @!attribute [rw] feature_group_name
69
- # A `FeatureGroupName` containing Records you are retrieving in a
70
- # batch.
69
+ # The name or Amazon Resource Name (ARN) of the `FeatureGroup`
70
+ # containing the records you are retrieving in a batch.
71
71
  # @return [String]
72
72
  #
73
73
  # @!attribute [rw] record_identifiers_value_as_string
@@ -90,9 +90,9 @@ module Aws::SageMakerFeatureStoreRuntime
90
90
  end
91
91
 
92
92
  # @!attribute [rw] identifiers
93
- # A list of `FeatureGroup` names, with their corresponding
94
- # `RecordIdentifier` value, and Feature name that have been requested
95
- # to be retrieved in batch.
93
+ # A list containing the name or Amazon Resource Name (ARN) of the
94
+ # `FeatureGroup`, the list of names of `Feature`s to be retrieved, and
95
+ # the corresponding `RecordIdentifier` values as strings.
96
96
  # @return [Array<Types::BatchGetRecordIdentifier>]
97
97
  #
98
98
  # @!attribute [rw] expiration_time_response
@@ -134,7 +134,7 @@ module Aws::SageMakerFeatureStoreRuntime
134
134
  include Aws::Structure
135
135
  end
136
136
 
137
- # The output of Records that have been retrieved in a batch.
137
+ # The output of records that have been retrieved in a batch.
138
138
  #
139
139
  # @!attribute [rw] feature_group_name
140
140
  # The `FeatureGroupName` containing Records you retrieved in a batch.
@@ -164,7 +164,8 @@ module Aws::SageMakerFeatureStoreRuntime
164
164
  end
165
165
 
166
166
  # @!attribute [rw] feature_group_name
167
- # The name of the feature group to delete the record from.
167
+ # The name or Amazon Resource Name (ARN) of the feature group to
168
+ # delete the record from.
168
169
  # @return [String]
169
170
  #
170
171
  # @!attribute [rw] record_identifier_value_as_string
@@ -222,8 +223,8 @@ module Aws::SageMakerFeatureStoreRuntime
222
223
  end
223
224
 
224
225
  # @!attribute [rw] feature_group_name
225
- # The name of the feature group from which you want to retrieve a
226
- # record.
226
+ # The name or Amazon Resource Name (ARN) of the feature group from
227
+ # which you want to retrieve a record.
227
228
  # @return [String]
228
229
  #
229
230
  # @!attribute [rw] record_identifier_value_as_string
@@ -238,8 +239,8 @@ module Aws::SageMakerFeatureStoreRuntime
238
239
  #
239
240
  # @!attribute [rw] expiration_time_response
240
241
  # Parameter to request `ExpiresAt` in response. If `Enabled`,
241
- # `BatchGetRecord` will return the value of `ExpiresAt`, if it is not
242
- # null. If `Disabled` and null, `BatchGetRecord` will return null.
242
+ # `GetRecord` will return the value of `ExpiresAt`, if it is not null.
243
+ # If `Disabled` and null, `GetRecord` will return null.
243
244
  # @return [String]
244
245
  #
245
246
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-featurestore-runtime-2020-07-01/GetRecordRequest AWS API Documentation
@@ -285,8 +286,8 @@ module Aws::SageMakerFeatureStoreRuntime
285
286
  end
286
287
 
287
288
  # @!attribute [rw] feature_group_name
288
- # The name of the feature group that you want to insert the record
289
- # into.
289
+ # The name or Amazon Resource Name (ARN) of the feature group that you
290
+ # want to insert the record into.
290
291
  # @return [String]
291
292
  #
292
293
  # @!attribute [rw] record
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-sagemakerfeaturestoreruntime/customizations'
52
52
  # @!group service
53
53
  module Aws::SageMakerFeatureStoreRuntime
54
54
 
55
- GEM_VERSION = '1.22.0'
55
+ GEM_VERSION = '1.23.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sagemakerfeaturestoreruntime
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.22.0
4
+ version: 1.23.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-07-11 00:00:00.000000000 Z
11
+ date: 2023-07-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core