aws-sdk-sagemaker 1.227.0 → 1.228.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 +42 -1
- data/lib/aws-sdk-sagemaker/client_api.rb +23 -0
- data/lib/aws-sdk-sagemaker/types.rb +189 -1
- 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: 7cd6c598932ce016742be0b17fa94c7b061da795607c81311378889709918595
|
4
|
+
data.tar.gz: 3c917d812834919ee26256f3c35e7ad2f2dc49801186330db47cf103619cd704
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 326a23fe2af30adef797601f8022f54adbf7cc1ee55867fe3d32679470e9223ef1c85e7d1de075fa19caf151516d97a1a582afa13d52216f84ca28878ec716e2
|
7
|
+
data.tar.gz: 0d9f7bb0180a131652bf91c2f09ac4307478f90e28c3705e5441852a18946cf27f9badbfa27408422d2ce29d98b6819b2d8e0182425d3ca437090efe80738a89
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.228.0
|
@@ -3553,6 +3553,27 @@ module Aws::SageMaker
|
|
3553
3553
|
# [2]: https://iceberg.apache.org/
|
3554
3554
|
# [3]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_OfflineStoreConfig.html
|
3555
3555
|
#
|
3556
|
+
# @option params [Types::ThroughputConfig] :throughput_config
|
3557
|
+
# Used to set feature group throughput configuration. There are two
|
3558
|
+
# modes: `ON_DEMAND` and `PROVISIONED`. With on-demand mode, you are
|
3559
|
+
# charged for data reads and writes that your application performs on
|
3560
|
+
# your feature group. You do not need to specify read and write
|
3561
|
+
# throughput because Feature Store accommodates your workloads as they
|
3562
|
+
# ramp up and down. You can switch a feature group to on-demand only
|
3563
|
+
# once in a 24 hour period. With provisioned throughput mode, you
|
3564
|
+
# specify the read and write capacity per second that you expect your
|
3565
|
+
# application to require, and you are billed based on those limits.
|
3566
|
+
# Exceeding provisioned throughput will result in your requests being
|
3567
|
+
# throttled.
|
3568
|
+
#
|
3569
|
+
# Note: `PROVISIONED` throughput mode is supported only for feature
|
3570
|
+
# groups that are offline-only, or use the [ `Standard` ][1] tier online
|
3571
|
+
# store.
|
3572
|
+
#
|
3573
|
+
#
|
3574
|
+
#
|
3575
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_OnlineStoreConfig.html#sagemaker-Type-OnlineStoreConfig-StorageType
|
3576
|
+
#
|
3556
3577
|
# @option params [String] :role_arn
|
3557
3578
|
# The Amazon Resource Name (ARN) of the IAM execution role used to
|
3558
3579
|
# persist data into the `OfflineStore` if an `OfflineStoreConfig` is
|
@@ -3611,6 +3632,11 @@ module Aws::SageMaker
|
|
3611
3632
|
# },
|
3612
3633
|
# table_format: "Default", # accepts Default, Glue, Iceberg
|
3613
3634
|
# },
|
3635
|
+
# throughput_config: {
|
3636
|
+
# throughput_mode: "OnDemand", # required, accepts OnDemand, Provisioned
|
3637
|
+
# provisioned_read_capacity_units: 1,
|
3638
|
+
# provisioned_write_capacity_units: 1,
|
3639
|
+
# },
|
3614
3640
|
# role_arn: "RoleArn",
|
3615
3641
|
# description: "Description",
|
3616
3642
|
# tags: [
|
@@ -12330,6 +12356,7 @@ module Aws::SageMaker
|
|
12330
12356
|
# * {Types::DescribeFeatureGroupResponse#last_modified_time #last_modified_time} => Time
|
12331
12357
|
# * {Types::DescribeFeatureGroupResponse#online_store_config #online_store_config} => Types::OnlineStoreConfig
|
12332
12358
|
# * {Types::DescribeFeatureGroupResponse#offline_store_config #offline_store_config} => Types::OfflineStoreConfig
|
12359
|
+
# * {Types::DescribeFeatureGroupResponse#throughput_config #throughput_config} => Types::ThroughputConfigDescription
|
12333
12360
|
# * {Types::DescribeFeatureGroupResponse#role_arn #role_arn} => String
|
12334
12361
|
# * {Types::DescribeFeatureGroupResponse#feature_group_status #feature_group_status} => String
|
12335
12362
|
# * {Types::DescribeFeatureGroupResponse#offline_store_status #offline_store_status} => Types::OfflineStoreStatus
|
@@ -12372,6 +12399,9 @@ module Aws::SageMaker
|
|
12372
12399
|
# resp.offline_store_config.data_catalog_config.catalog #=> String
|
12373
12400
|
# resp.offline_store_config.data_catalog_config.database #=> String
|
12374
12401
|
# resp.offline_store_config.table_format #=> String, one of "Default", "Glue", "Iceberg"
|
12402
|
+
# resp.throughput_config.throughput_mode #=> String, one of "OnDemand", "Provisioned"
|
12403
|
+
# resp.throughput_config.provisioned_read_capacity_units #=> Integer
|
12404
|
+
# resp.throughput_config.provisioned_write_capacity_units #=> Integer
|
12375
12405
|
# resp.role_arn #=> String
|
12376
12406
|
# resp.feature_group_status #=> String, one of "Creating", "Created", "CreateFailed", "Deleting", "DeleteFailed"
|
12377
12407
|
# resp.offline_store_status.status #=> String, one of "Active", "Blocked", "Disabled"
|
@@ -23935,6 +23965,12 @@ module Aws::SageMaker
|
|
23935
23965
|
# @option params [Types::OnlineStoreConfigUpdate] :online_store_config
|
23936
23966
|
# Updates the feature group online store configuration.
|
23937
23967
|
#
|
23968
|
+
# @option params [Types::ThroughputConfigUpdate] :throughput_config
|
23969
|
+
# The new throughput configuration for the feature group. You can switch
|
23970
|
+
# between on-demand and provisioned modes or update the read / write
|
23971
|
+
# capacity of provisioned feature groups. You can switch a feature group
|
23972
|
+
# to on-demand only once in a 24 hour period.
|
23973
|
+
#
|
23938
23974
|
# @return [Types::UpdateFeatureGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
23939
23975
|
#
|
23940
23976
|
# * {Types::UpdateFeatureGroupResponse#feature_group_arn #feature_group_arn} => String
|
@@ -23961,6 +23997,11 @@ module Aws::SageMaker
|
|
23961
23997
|
# value: 1,
|
23962
23998
|
# },
|
23963
23999
|
# },
|
24000
|
+
# throughput_config: {
|
24001
|
+
# throughput_mode: "OnDemand", # accepts OnDemand, Provisioned
|
24002
|
+
# provisioned_read_capacity_units: 1,
|
24003
|
+
# provisioned_write_capacity_units: 1,
|
24004
|
+
# },
|
23964
24005
|
# })
|
23965
24006
|
#
|
23966
24007
|
# @example Response structure
|
@@ -25855,7 +25896,7 @@ module Aws::SageMaker
|
|
25855
25896
|
params: params,
|
25856
25897
|
config: config)
|
25857
25898
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
25858
|
-
context[:gem_version] = '1.
|
25899
|
+
context[:gem_version] = '1.228.0'
|
25859
25900
|
Seahorse::Client::Request.new(handlers, context)
|
25860
25901
|
end
|
25861
25902
|
|
@@ -197,6 +197,7 @@ module Aws::SageMaker
|
|
197
197
|
CapacitySize = Shapes::StructureShape.new(name: 'CapacitySize')
|
198
198
|
CapacitySizeType = Shapes::StringShape.new(name: 'CapacitySizeType')
|
199
199
|
CapacitySizeValue = Shapes::IntegerShape.new(name: 'CapacitySizeValue')
|
200
|
+
CapacityUnit = Shapes::IntegerShape.new(name: 'CapacityUnit')
|
200
201
|
CaptureContentTypeHeader = Shapes::StructureShape.new(name: 'CaptureContentTypeHeader')
|
201
202
|
CaptureMode = Shapes::StringShape.new(name: 'CaptureMode')
|
202
203
|
CaptureOption = Shapes::StructureShape.new(name: 'CaptureOption')
|
@@ -2018,6 +2019,10 @@ module Aws::SageMaker
|
|
2018
2019
|
TextGenerationJobConfig = Shapes::StructureShape.new(name: 'TextGenerationJobConfig')
|
2019
2020
|
TextGenerationResolvedAttributes = Shapes::StructureShape.new(name: 'TextGenerationResolvedAttributes')
|
2020
2021
|
ThingName = Shapes::StringShape.new(name: 'ThingName')
|
2022
|
+
ThroughputConfig = Shapes::StructureShape.new(name: 'ThroughputConfig')
|
2023
|
+
ThroughputConfigDescription = Shapes::StructureShape.new(name: 'ThroughputConfigDescription')
|
2024
|
+
ThroughputConfigUpdate = Shapes::StructureShape.new(name: 'ThroughputConfigUpdate')
|
2025
|
+
ThroughputMode = Shapes::StringShape.new(name: 'ThroughputMode')
|
2021
2026
|
TimeSeriesConfig = Shapes::StructureShape.new(name: 'TimeSeriesConfig')
|
2022
2027
|
TimeSeriesForecastingJobConfig = Shapes::StructureShape.new(name: 'TimeSeriesForecastingJobConfig')
|
2023
2028
|
TimeSeriesForecastingSettings = Shapes::StructureShape.new(name: 'TimeSeriesForecastingSettings')
|
@@ -3214,6 +3219,7 @@ module Aws::SageMaker
|
|
3214
3219
|
CreateFeatureGroupRequest.add_member(:feature_definitions, Shapes::ShapeRef.new(shape: FeatureDefinitions, required: true, location_name: "FeatureDefinitions"))
|
3215
3220
|
CreateFeatureGroupRequest.add_member(:online_store_config, Shapes::ShapeRef.new(shape: OnlineStoreConfig, location_name: "OnlineStoreConfig"))
|
3216
3221
|
CreateFeatureGroupRequest.add_member(:offline_store_config, Shapes::ShapeRef.new(shape: OfflineStoreConfig, location_name: "OfflineStoreConfig"))
|
3222
|
+
CreateFeatureGroupRequest.add_member(:throughput_config, Shapes::ShapeRef.new(shape: ThroughputConfig, location_name: "ThroughputConfig"))
|
3217
3223
|
CreateFeatureGroupRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RoleArn"))
|
3218
3224
|
CreateFeatureGroupRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
3219
3225
|
CreateFeatureGroupRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
@@ -4438,6 +4444,7 @@ module Aws::SageMaker
|
|
4438
4444
|
DescribeFeatureGroupResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: LastModifiedTime, location_name: "LastModifiedTime"))
|
4439
4445
|
DescribeFeatureGroupResponse.add_member(:online_store_config, Shapes::ShapeRef.new(shape: OnlineStoreConfig, location_name: "OnlineStoreConfig"))
|
4440
4446
|
DescribeFeatureGroupResponse.add_member(:offline_store_config, Shapes::ShapeRef.new(shape: OfflineStoreConfig, location_name: "OfflineStoreConfig"))
|
4447
|
+
DescribeFeatureGroupResponse.add_member(:throughput_config, Shapes::ShapeRef.new(shape: ThroughputConfigDescription, location_name: "ThroughputConfig"))
|
4441
4448
|
DescribeFeatureGroupResponse.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RoleArn"))
|
4442
4449
|
DescribeFeatureGroupResponse.add_member(:feature_group_status, Shapes::ShapeRef.new(shape: FeatureGroupStatus, location_name: "FeatureGroupStatus"))
|
4443
4450
|
DescribeFeatureGroupResponse.add_member(:offline_store_status, Shapes::ShapeRef.new(shape: OfflineStoreStatus, location_name: "OfflineStoreStatus"))
|
@@ -9061,6 +9068,21 @@ module Aws::SageMaker
|
|
9061
9068
|
TextGenerationResolvedAttributes.add_member(:base_model_name, Shapes::ShapeRef.new(shape: BaseModelName, location_name: "BaseModelName"))
|
9062
9069
|
TextGenerationResolvedAttributes.struct_class = Types::TextGenerationResolvedAttributes
|
9063
9070
|
|
9071
|
+
ThroughputConfig.add_member(:throughput_mode, Shapes::ShapeRef.new(shape: ThroughputMode, required: true, location_name: "ThroughputMode"))
|
9072
|
+
ThroughputConfig.add_member(:provisioned_read_capacity_units, Shapes::ShapeRef.new(shape: CapacityUnit, location_name: "ProvisionedReadCapacityUnits"))
|
9073
|
+
ThroughputConfig.add_member(:provisioned_write_capacity_units, Shapes::ShapeRef.new(shape: CapacityUnit, location_name: "ProvisionedWriteCapacityUnits"))
|
9074
|
+
ThroughputConfig.struct_class = Types::ThroughputConfig
|
9075
|
+
|
9076
|
+
ThroughputConfigDescription.add_member(:throughput_mode, Shapes::ShapeRef.new(shape: ThroughputMode, required: true, location_name: "ThroughputMode"))
|
9077
|
+
ThroughputConfigDescription.add_member(:provisioned_read_capacity_units, Shapes::ShapeRef.new(shape: CapacityUnit, location_name: "ProvisionedReadCapacityUnits"))
|
9078
|
+
ThroughputConfigDescription.add_member(:provisioned_write_capacity_units, Shapes::ShapeRef.new(shape: CapacityUnit, location_name: "ProvisionedWriteCapacityUnits"))
|
9079
|
+
ThroughputConfigDescription.struct_class = Types::ThroughputConfigDescription
|
9080
|
+
|
9081
|
+
ThroughputConfigUpdate.add_member(:throughput_mode, Shapes::ShapeRef.new(shape: ThroughputMode, location_name: "ThroughputMode"))
|
9082
|
+
ThroughputConfigUpdate.add_member(:provisioned_read_capacity_units, Shapes::ShapeRef.new(shape: CapacityUnit, location_name: "ProvisionedReadCapacityUnits"))
|
9083
|
+
ThroughputConfigUpdate.add_member(:provisioned_write_capacity_units, Shapes::ShapeRef.new(shape: CapacityUnit, location_name: "ProvisionedWriteCapacityUnits"))
|
9084
|
+
ThroughputConfigUpdate.struct_class = Types::ThroughputConfigUpdate
|
9085
|
+
|
9064
9086
|
TimeSeriesConfig.add_member(:target_attribute_name, Shapes::ShapeRef.new(shape: TargetAttributeName, required: true, location_name: "TargetAttributeName"))
|
9065
9087
|
TimeSeriesConfig.add_member(:timestamp_attribute_name, Shapes::ShapeRef.new(shape: TimestampAttributeName, required: true, location_name: "TimestampAttributeName"))
|
9066
9088
|
TimeSeriesConfig.add_member(:item_identifier_attribute_name, Shapes::ShapeRef.new(shape: ItemIdentifierAttributeName, required: true, location_name: "ItemIdentifierAttributeName"))
|
@@ -9516,6 +9538,7 @@ module Aws::SageMaker
|
|
9516
9538
|
UpdateFeatureGroupRequest.add_member(:feature_group_name, Shapes::ShapeRef.new(shape: FeatureGroupNameOrArn, required: true, location_name: "FeatureGroupName"))
|
9517
9539
|
UpdateFeatureGroupRequest.add_member(:feature_additions, Shapes::ShapeRef.new(shape: FeatureAdditions, location_name: "FeatureAdditions"))
|
9518
9540
|
UpdateFeatureGroupRequest.add_member(:online_store_config, Shapes::ShapeRef.new(shape: OnlineStoreConfigUpdate, location_name: "OnlineStoreConfig"))
|
9541
|
+
UpdateFeatureGroupRequest.add_member(:throughput_config, Shapes::ShapeRef.new(shape: ThroughputConfigUpdate, location_name: "ThroughputConfig"))
|
9519
9542
|
UpdateFeatureGroupRequest.struct_class = Types::UpdateFeatureGroupRequest
|
9520
9543
|
|
9521
9544
|
UpdateFeatureGroupResponse.add_member(:feature_group_arn, Shapes::ShapeRef.new(shape: FeatureGroupArn, required: true, location_name: "FeatureGroupArn"))
|
@@ -6340,6 +6340,28 @@ module Aws::SageMaker
|
|
6340
6340
|
# [3]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_OfflineStoreConfig.html
|
6341
6341
|
# @return [Types::OfflineStoreConfig]
|
6342
6342
|
#
|
6343
|
+
# @!attribute [rw] throughput_config
|
6344
|
+
# Used to set feature group throughput configuration. There are two
|
6345
|
+
# modes: `ON_DEMAND` and `PROVISIONED`. With on-demand mode, you are
|
6346
|
+
# charged for data reads and writes that your application performs on
|
6347
|
+
# your feature group. You do not need to specify read and write
|
6348
|
+
# throughput because Feature Store accommodates your workloads as they
|
6349
|
+
# ramp up and down. You can switch a feature group to on-demand only
|
6350
|
+
# once in a 24 hour period. With provisioned throughput mode, you
|
6351
|
+
# specify the read and write capacity per second that you expect your
|
6352
|
+
# application to require, and you are billed based on those limits.
|
6353
|
+
# Exceeding provisioned throughput will result in your requests being
|
6354
|
+
# throttled.
|
6355
|
+
#
|
6356
|
+
# Note: `PROVISIONED` throughput mode is supported only for feature
|
6357
|
+
# groups that are offline-only, or use the [ `Standard` ][1] tier
|
6358
|
+
# online store.
|
6359
|
+
#
|
6360
|
+
#
|
6361
|
+
#
|
6362
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_OnlineStoreConfig.html#sagemaker-Type-OnlineStoreConfig-StorageType
|
6363
|
+
# @return [Types::ThroughputConfig]
|
6364
|
+
#
|
6343
6365
|
# @!attribute [rw] role_arn
|
6344
6366
|
# The Amazon Resource Name (ARN) of the IAM execution role used to
|
6345
6367
|
# persist data into the `OfflineStore` if an `OfflineStoreConfig` is
|
@@ -6363,6 +6385,7 @@ module Aws::SageMaker
|
|
6363
6385
|
:feature_definitions,
|
6364
6386
|
:online_store_config,
|
6365
6387
|
:offline_store_config,
|
6388
|
+
:throughput_config,
|
6366
6389
|
:role_arn,
|
6367
6390
|
:description,
|
6368
6391
|
:tags)
|
@@ -13220,6 +13243,28 @@ module Aws::SageMaker
|
|
13220
13243
|
# * Encryption configuration.
|
13221
13244
|
# @return [Types::OfflineStoreConfig]
|
13222
13245
|
#
|
13246
|
+
# @!attribute [rw] throughput_config
|
13247
|
+
# Active throughput configuration of the feature group. Used to set
|
13248
|
+
# feature group throughput configuration. There are two modes:
|
13249
|
+
# `ON_DEMAND` and `PROVISIONED`. With on-demand mode, you are charged
|
13250
|
+
# for data reads and writes that your application performs on your
|
13251
|
+
# feature group. You do not need to specify read and write throughput
|
13252
|
+
# because Feature Store accommodates your workloads as they ramp up
|
13253
|
+
# and down. You can switch a feature group to on-demand only once in a
|
13254
|
+
# 24 hour period. With provisioned throughput mode, you specify the
|
13255
|
+
# read and write capacity per second that you expect your application
|
13256
|
+
# to require, and you are billed based on those limits. Exceeding
|
13257
|
+
# provisioned throughput will result in your requests being throttled.
|
13258
|
+
#
|
13259
|
+
# Note: `PROVISIONED` throughput mode is supported only for feature
|
13260
|
+
# groups that are offline-only, or use the [ `Standard` ][1] tier
|
13261
|
+
# online store.
|
13262
|
+
#
|
13263
|
+
#
|
13264
|
+
#
|
13265
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_OnlineStoreConfig.html#sagemaker-Type-OnlineStoreConfig-StorageType
|
13266
|
+
# @return [Types::ThroughputConfigDescription]
|
13267
|
+
#
|
13223
13268
|
# @!attribute [rw] role_arn
|
13224
13269
|
# The Amazon Resource Name (ARN) of the IAM execution role used to
|
13225
13270
|
# persist data into the OfflineStore if an OfflineStoreConfig is
|
@@ -13275,6 +13320,7 @@ module Aws::SageMaker
|
|
13275
13320
|
:last_modified_time,
|
13276
13321
|
:online_store_config,
|
13277
13322
|
:offline_store_config,
|
13323
|
+
:throughput_config,
|
13278
13324
|
:role_arn,
|
13279
13325
|
:feature_group_status,
|
13280
13326
|
:offline_store_status,
|
@@ -40081,6 +40127,140 @@ module Aws::SageMaker
|
|
40081
40127
|
include Aws::Structure
|
40082
40128
|
end
|
40083
40129
|
|
40130
|
+
# Used to set feature group throughput configuration. There are two
|
40131
|
+
# modes: `ON_DEMAND` and `PROVISIONED`. With on-demand mode, you are
|
40132
|
+
# charged for data reads and writes that your application performs on
|
40133
|
+
# your feature group. You do not need to specify read and write
|
40134
|
+
# throughput because Feature Store accommodates your workloads as they
|
40135
|
+
# ramp up and down. You can switch a feature group to on-demand only
|
40136
|
+
# once in a 24 hour period. With provisioned throughput mode, you
|
40137
|
+
# specify the read and write capacity per second that you expect your
|
40138
|
+
# application to require, and you are billed based on those limits.
|
40139
|
+
# Exceeding provisioned throughput will result in your requests being
|
40140
|
+
# throttled.
|
40141
|
+
#
|
40142
|
+
# Note: `PROVISIONED` throughput mode is supported only for feature
|
40143
|
+
# groups that are offline-only, or use the [ `Standard` ][1] tier online
|
40144
|
+
# store.
|
40145
|
+
#
|
40146
|
+
#
|
40147
|
+
#
|
40148
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_OnlineStoreConfig.html#sagemaker-Type-OnlineStoreConfig-StorageType
|
40149
|
+
#
|
40150
|
+
# @!attribute [rw] throughput_mode
|
40151
|
+
# The mode used for your feature group throughput: `ON_DEMAND` or
|
40152
|
+
# `PROVISIONED`.
|
40153
|
+
# @return [String]
|
40154
|
+
#
|
40155
|
+
# @!attribute [rw] provisioned_read_capacity_units
|
40156
|
+
# For provisioned feature groups with online store enabled, this
|
40157
|
+
# indicates the read throughput you are billed for and can consume
|
40158
|
+
# without throttling.
|
40159
|
+
#
|
40160
|
+
# This field is not applicable for on-demand feature groups.
|
40161
|
+
# @return [Integer]
|
40162
|
+
#
|
40163
|
+
# @!attribute [rw] provisioned_write_capacity_units
|
40164
|
+
# For provisioned feature groups, this indicates the write throughput
|
40165
|
+
# you are billed for and can consume without throttling.
|
40166
|
+
#
|
40167
|
+
# This field is not applicable for on-demand feature groups.
|
40168
|
+
# @return [Integer]
|
40169
|
+
#
|
40170
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ThroughputConfig AWS API Documentation
|
40171
|
+
#
|
40172
|
+
class ThroughputConfig < Struct.new(
|
40173
|
+
:throughput_mode,
|
40174
|
+
:provisioned_read_capacity_units,
|
40175
|
+
:provisioned_write_capacity_units)
|
40176
|
+
SENSITIVE = []
|
40177
|
+
include Aws::Structure
|
40178
|
+
end
|
40179
|
+
|
40180
|
+
# Active throughput configuration of the feature group. Used to set
|
40181
|
+
# feature group throughput configuration. There are two modes:
|
40182
|
+
# `ON_DEMAND` and `PROVISIONED`. With on-demand mode, you are charged
|
40183
|
+
# for data reads and writes that your application performs on your
|
40184
|
+
# feature group. You do not need to specify read and write throughput
|
40185
|
+
# because Feature Store accommodates your workloads as they ramp up and
|
40186
|
+
# down. You can switch a feature group to on-demand only once in a 24
|
40187
|
+
# hour period. With provisioned throughput mode, you specify the read
|
40188
|
+
# and write capacity per second that you expect your application to
|
40189
|
+
# require, and you are billed based on those limits. Exceeding
|
40190
|
+
# provisioned throughput will result in your requests being throttled.
|
40191
|
+
#
|
40192
|
+
# Note: `PROVISIONED` throughput mode is supported only for feature
|
40193
|
+
# groups that are offline-only, or use the [ `Standard` ][1] tier online
|
40194
|
+
# store.
|
40195
|
+
#
|
40196
|
+
#
|
40197
|
+
#
|
40198
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_OnlineStoreConfig.html#sagemaker-Type-OnlineStoreConfig-StorageType
|
40199
|
+
#
|
40200
|
+
# @!attribute [rw] throughput_mode
|
40201
|
+
# The mode used for your feature group throughput: `ON_DEMAND` or
|
40202
|
+
# `PROVISIONED`.
|
40203
|
+
# @return [String]
|
40204
|
+
#
|
40205
|
+
# @!attribute [rw] provisioned_read_capacity_units
|
40206
|
+
# For provisioned feature groups with online store enabled, this
|
40207
|
+
# indicates the read throughput you are billed for and can consume
|
40208
|
+
# without throttling.
|
40209
|
+
#
|
40210
|
+
# This field is not applicable for on-demand feature groups.
|
40211
|
+
# @return [Integer]
|
40212
|
+
#
|
40213
|
+
# @!attribute [rw] provisioned_write_capacity_units
|
40214
|
+
# For provisioned feature groups, this indicates the write throughput
|
40215
|
+
# you are billed for and can consume without throttling.
|
40216
|
+
#
|
40217
|
+
# This field is not applicable for on-demand feature groups.
|
40218
|
+
# @return [Integer]
|
40219
|
+
#
|
40220
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ThroughputConfigDescription AWS API Documentation
|
40221
|
+
#
|
40222
|
+
class ThroughputConfigDescription < Struct.new(
|
40223
|
+
:throughput_mode,
|
40224
|
+
:provisioned_read_capacity_units,
|
40225
|
+
:provisioned_write_capacity_units)
|
40226
|
+
SENSITIVE = []
|
40227
|
+
include Aws::Structure
|
40228
|
+
end
|
40229
|
+
|
40230
|
+
# The new throughput configuration for the feature group. You can switch
|
40231
|
+
# between on-demand and provisioned modes or update the read / write
|
40232
|
+
# capacity of provisioned feature groups. You can switch a feature group
|
40233
|
+
# to on-demand only once in a 24 hour period.
|
40234
|
+
#
|
40235
|
+
# @!attribute [rw] throughput_mode
|
40236
|
+
# Target throughput mode of the feature group. Throughput update is an
|
40237
|
+
# asynchronous operation, and the outcome should be monitored by
|
40238
|
+
# polling `LastUpdateStatus` field in `DescribeFeatureGroup` response.
|
40239
|
+
# You cannot update a feature group's throughput while another update
|
40240
|
+
# is in progress.
|
40241
|
+
# @return [String]
|
40242
|
+
#
|
40243
|
+
# @!attribute [rw] provisioned_read_capacity_units
|
40244
|
+
# For provisioned feature groups with online store enabled, this
|
40245
|
+
# indicates the read throughput you are billed for and can consume
|
40246
|
+
# without throttling.
|
40247
|
+
# @return [Integer]
|
40248
|
+
#
|
40249
|
+
# @!attribute [rw] provisioned_write_capacity_units
|
40250
|
+
# For provisioned feature groups, this indicates the write throughput
|
40251
|
+
# you are billed for and can consume without throttling.
|
40252
|
+
# @return [Integer]
|
40253
|
+
#
|
40254
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ThroughputConfigUpdate AWS API Documentation
|
40255
|
+
#
|
40256
|
+
class ThroughputConfigUpdate < Struct.new(
|
40257
|
+
:throughput_mode,
|
40258
|
+
:provisioned_read_capacity_units,
|
40259
|
+
:provisioned_write_capacity_units)
|
40260
|
+
SENSITIVE = []
|
40261
|
+
include Aws::Structure
|
40262
|
+
end
|
40263
|
+
|
40084
40264
|
# The collection of components that defines the time-series.
|
40085
40265
|
#
|
40086
40266
|
# @!attribute [rw] target_attribute_name
|
@@ -42943,12 +43123,20 @@ module Aws::SageMaker
|
|
42943
43123
|
# Updates the feature group online store configuration.
|
42944
43124
|
# @return [Types::OnlineStoreConfigUpdate]
|
42945
43125
|
#
|
43126
|
+
# @!attribute [rw] throughput_config
|
43127
|
+
# The new throughput configuration for the feature group. You can
|
43128
|
+
# switch between on-demand and provisioned modes or update the read /
|
43129
|
+
# write capacity of provisioned feature groups. You can switch a
|
43130
|
+
# feature group to on-demand only once in a 24 hour period.
|
43131
|
+
# @return [Types::ThroughputConfigUpdate]
|
43132
|
+
#
|
42946
43133
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateFeatureGroupRequest AWS API Documentation
|
42947
43134
|
#
|
42948
43135
|
class UpdateFeatureGroupRequest < Struct.new(
|
42949
43136
|
:feature_group_name,
|
42950
43137
|
:feature_additions,
|
42951
|
-
:online_store_config
|
43138
|
+
:online_store_config,
|
43139
|
+
:throughput_config)
|
42952
43140
|
SENSITIVE = []
|
42953
43141
|
include Aws::Structure
|
42954
43142
|
end
|
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.228.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:
|
11
|
+
date: 2024-01-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|