aws-sdk-sagemakerfeaturestoreruntime 1.21.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: 6b73600c9a56b21904e98b318d0ae9560518d9f10cf9db4eb2f210466764a78d
4
- data.tar.gz: 914a46d3aef6f35b8d2c8f1114fc51e20bec8c5db893a4202ee494ba38e107ce
3
+ metadata.gz: 2c083e481976ab76a33f53d0283318dffa11ee7e38613aff2e9fe896194d7d69
4
+ data.tar.gz: 7d2ff974999dff973b0c6af9ad85b550ae589b7317d44736967fc390dda87a12
5
5
  SHA512:
6
- metadata.gz: 82bc86ee5086234fbed418338c3bd01f59ad052fab7d96736acc084a1b7b850c99c399dcdc06951b2d7cf1f09370b752e26af6a476182b540277fcab30621a82
7
- data.tar.gz: 7399e4a72399bb5d0597a4406279a9171c23ff77488f3641460060a49580b098c53059c6cd6756f7df2bd37e1ca5cba824fea92b953ef9f85293b54af38ebf2b
6
+ metadata.gz: 4e777f4f385dbb3c3f6bc06179d1f60a314e78a596d76448e403db854f4bd78c5862f50b21dd1618028df15f030968c98ec9db9de44987f93314e20ec1c5cba2
7
+ data.tar.gz: 65dc22d8cf9c2f305bf6e14d4289fb314116dcdda391ac140f19295aaa823cc6725a194f0ce2660fc3a71a80f0ce876329093ad54005f648f902039e7733c9a3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.22.0 (2023-07-11)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.21.0 (2023-07-06)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.21.0
1
+ 1.23.0
@@ -216,6 +216,10 @@ module Aws::SageMakerFeatureStoreRuntime
216
216
  # @option options [Boolean] :endpoint_discovery (false)
217
217
  # When set to `true`, endpoint discovery will be enabled for operations when available.
218
218
  #
219
+ # @option options [Boolean] :ignore_configured_endpoint_urls
220
+ # Setting to true disables use of endpoint URLs provided via environment
221
+ # variables and the shared configuration file.
222
+ #
219
223
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
220
224
  # The log formatter.
221
225
  #
@@ -387,9 +391,9 @@ module Aws::SageMakerFeatureStoreRuntime
387
391
  # Retrieves a batch of `Records` from a `FeatureGroup`.
388
392
  #
389
393
  # @option params [required, Array<Types::BatchGetRecordIdentifier>] :identifiers
390
- # A list of `FeatureGroup` names, with their corresponding
391
- # `RecordIdentifier` value, and Feature name that have been requested to
392
- # 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.
393
397
  #
394
398
  # @option params [String] :expiration_time_response
395
399
  # Parameter to request `ExpiresAt` in response. If `Enabled`,
@@ -407,7 +411,7 @@ module Aws::SageMakerFeatureStoreRuntime
407
411
  # resp = client.batch_get_record({
408
412
  # identifiers: [ # required
409
413
  # {
410
- # feature_group_name: "FeatureGroupName", # required
414
+ # feature_group_name: "FeatureGroupNameOrArn", # required
411
415
  # record_identifiers_value_as_string: ["ValueAsString"], # required
412
416
  # feature_names: ["FeatureName"],
413
417
  # },
@@ -467,7 +471,8 @@ module Aws::SageMakerFeatureStoreRuntime
467
471
  # is written to the `OfflineStore`.
468
472
  #
469
473
  # @option params [required, String] :feature_group_name
470
- # 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.
471
476
  #
472
477
  # @option params [required, String] :record_identifier_value_as_string
473
478
  # The value for the `RecordIdentifier` that uniquely identifies the
@@ -491,7 +496,7 @@ module Aws::SageMakerFeatureStoreRuntime
491
496
  # @example Request syntax with placeholder values
492
497
  #
493
498
  # resp = client.delete_record({
494
- # feature_group_name: "FeatureGroupName", # required
499
+ # feature_group_name: "FeatureGroupNameOrArn", # required
495
500
  # record_identifier_value_as_string: "ValueAsString", # required
496
501
  # event_time: "ValueAsString", # required
497
502
  # target_stores: ["OnlineStore"], # accepts OnlineStore, OfflineStore
@@ -513,8 +518,8 @@ module Aws::SageMakerFeatureStoreRuntime
513
518
  # returned.
514
519
  #
515
520
  # @option params [required, String] :feature_group_name
516
- # The name of the feature group from which you want to retrieve a
517
- # record.
521
+ # The name or Amazon Resource Name (ARN) of the feature group from which
522
+ # you want to retrieve a record.
518
523
  #
519
524
  # @option params [required, String] :record_identifier_value_as_string
520
525
  # The value that corresponds to `RecordIdentifier` type and uniquely
@@ -526,8 +531,8 @@ module Aws::SageMakerFeatureStoreRuntime
526
531
  #
527
532
  # @option params [String] :expiration_time_response
528
533
  # Parameter to request `ExpiresAt` in response. If `Enabled`,
529
- # `BatchGetRecord` will return the value of `ExpiresAt`, if it is not
530
- # 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.
531
536
  #
532
537
  # @return [Types::GetRecordResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
533
538
  #
@@ -537,7 +542,7 @@ module Aws::SageMakerFeatureStoreRuntime
537
542
  # @example Request syntax with placeholder values
538
543
  #
539
544
  # resp = client.get_record({
540
- # feature_group_name: "FeatureGroupName", # required
545
+ # feature_group_name: "FeatureGroupNameOrArn", # required
541
546
  # record_identifier_value_as_string: "ValueAsString", # required
542
547
  # feature_names: ["FeatureName"],
543
548
  # expiration_time_response: "Enabled", # accepts Enabled, Disabled
@@ -559,14 +564,28 @@ module Aws::SageMakerFeatureStoreRuntime
559
564
  req.send_request(options)
560
565
  end
561
566
 
562
- # Used for data ingestion into the `FeatureStore`. The `PutRecord` API
563
- # writes to both the `OnlineStore` and `OfflineStore`. If the record is
564
- # the latest record for the `recordIdentifier`, the record is written to
565
- # both the `OnlineStore` and `OfflineStore`. If the record is a historic
566
- # 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`.
567
585
  #
568
586
  # @option params [required, String] :feature_group_name
569
- # 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.
570
589
  #
571
590
  # @option params [required, Array<Types::FeatureValue>] :record
572
591
  # List of FeatureValues to be inserted. This will be a full over-write.
@@ -599,7 +618,7 @@ module Aws::SageMakerFeatureStoreRuntime
599
618
  # @example Request syntax with placeholder values
600
619
  #
601
620
  # resp = client.put_record({
602
- # feature_group_name: "FeatureGroupName", # required
621
+ # feature_group_name: "FeatureGroupNameOrArn", # required
603
622
  # record: [ # required
604
623
  # {
605
624
  # feature_name: "FeatureName", # required
@@ -635,7 +654,7 @@ module Aws::SageMakerFeatureStoreRuntime
635
654
  params: params,
636
655
  config: config)
637
656
  context[:gem_name] = 'aws-sdk-sagemakerfeaturestoreruntime'
638
- context[:gem_version] = '1.21.0'
657
+ context[:gem_version] = '1.23.0'
639
658
  Seahorse::Client::Request.new(handlers, context)
640
659
  end
641
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.21.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.21.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-06 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