aws-sdk-sagemaker 1.227.0 → 1.229.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +65 -24
- 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 +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fb6d11b997345e5af7a1f8651fb81019709ee60407731362d3a8c833e0a5a52e
|
|
4
|
+
data.tar.gz: a6243d8a7590a29eabb2dbe8c001671fa0c14134354a27dae3b23f30851b4704
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d5b89bd011a2ecd22be8fe069a07c64ee86642ca3cd0f3342f99b1b6901bced3f24da7a8be5fa1e9c0ee0aecfc05bd237cbd5b3804407c29b9c074f18ca55ba0
|
|
7
|
+
data.tar.gz: 399bd1b86169a0bcb4f18fa600e9076970ccea381b10ad9549ddb9a6adbcc697e430d90f255e2d2a70525a3dc3c7e1b436943da60d5289b81d849ab62ac5420c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.229.0 (2024-01-14)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release will have ValidationException thrown if certain invalid app types are provided. The release will also throw ValidationException if more than 10 account ids are provided in VpcOnlyTrustedAccounts.
|
|
8
|
+
|
|
9
|
+
1.228.0 (2024-01-04)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Adding support for provisioned throughput mode for SageMaker Feature Groups
|
|
13
|
+
|
|
4
14
|
1.227.0 (2023-12-28)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.229.0
|
|
@@ -618,7 +618,7 @@ module Aws::SageMaker
|
|
|
618
618
|
# resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].framework #=> String
|
|
619
619
|
# resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].framework_version #=> String
|
|
620
620
|
# resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].nearest_model_name #=> String
|
|
621
|
-
# resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].additional_s3_data_source.s3_data_type #=> String, one of "S3Object"
|
|
621
|
+
# resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].additional_s3_data_source.s3_data_type #=> String, one of "S3Object", "S3Prefix"
|
|
622
622
|
# resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].additional_s3_data_source.s3_uri #=> String
|
|
623
623
|
# resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].additional_s3_data_source.compression_type #=> String, one of "None", "Gzip"
|
|
624
624
|
# resp.model_package_summaries["ModelPackageArn"].inference_specification.supported_transform_instance_types #=> Array
|
|
@@ -849,7 +849,7 @@ module Aws::SageMaker
|
|
|
849
849
|
# },
|
|
850
850
|
# ],
|
|
851
851
|
# additional_s3_data_source: {
|
|
852
|
-
# s3_data_type: "S3Object", # required, accepts S3Object
|
|
852
|
+
# s3_data_type: "S3Object", # required, accepts S3Object, S3Prefix
|
|
853
853
|
# s3_uri: "S3Uri", # required
|
|
854
854
|
# compression_type: "None", # accepts None, Gzip
|
|
855
855
|
# },
|
|
@@ -872,7 +872,7 @@ module Aws::SageMaker
|
|
|
872
872
|
# framework_version: "ModelPackageFrameworkVersion",
|
|
873
873
|
# nearest_model_name: "String",
|
|
874
874
|
# additional_s3_data_source: {
|
|
875
|
-
# s3_data_type: "S3Object", # required, accepts S3Object
|
|
875
|
+
# s3_data_type: "S3Object", # required, accepts S3Object, S3Prefix
|
|
876
876
|
# s3_uri: "S3Uri", # required
|
|
877
877
|
# compression_type: "None", # accepts None, Gzip
|
|
878
878
|
# },
|
|
@@ -1049,7 +1049,7 @@ module Aws::SageMaker
|
|
|
1049
1049
|
# domain_id: "DomainId", # required
|
|
1050
1050
|
# user_profile_name: "UserProfileName",
|
|
1051
1051
|
# space_name: "SpaceName",
|
|
1052
|
-
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, DetailedProfiler, TensorBoard,
|
|
1052
|
+
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, DetailedProfiler, TensorBoard, CodeEditor, JupyterLab, RStudioServerPro, RSessionGateway, Canvas
|
|
1053
1053
|
# app_name: "AppName", # required
|
|
1054
1054
|
# tags: [
|
|
1055
1055
|
# {
|
|
@@ -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: [
|
|
@@ -6056,7 +6082,7 @@ module Aws::SageMaker
|
|
|
6056
6082
|
# framework_version: "ModelPackageFrameworkVersion",
|
|
6057
6083
|
# nearest_model_name: "String",
|
|
6058
6084
|
# additional_s3_data_source: {
|
|
6059
|
-
# s3_data_type: "S3Object", # required, accepts S3Object
|
|
6085
|
+
# s3_data_type: "S3Object", # required, accepts S3Object, S3Prefix
|
|
6060
6086
|
# s3_uri: "S3Uri", # required
|
|
6061
6087
|
# compression_type: "None", # accepts None, Gzip
|
|
6062
6088
|
# },
|
|
@@ -6260,7 +6286,7 @@ module Aws::SageMaker
|
|
|
6260
6286
|
# framework_version: "ModelPackageFrameworkVersion",
|
|
6261
6287
|
# nearest_model_name: "String",
|
|
6262
6288
|
# additional_s3_data_source: {
|
|
6263
|
-
# s3_data_type: "S3Object", # required, accepts S3Object
|
|
6289
|
+
# s3_data_type: "S3Object", # required, accepts S3Object, S3Prefix
|
|
6264
6290
|
# s3_uri: "S3Uri", # required
|
|
6265
6291
|
# compression_type: "None", # accepts None, Gzip
|
|
6266
6292
|
# },
|
|
@@ -7545,7 +7571,7 @@ module Aws::SageMaker
|
|
|
7545
7571
|
# },
|
|
7546
7572
|
# ],
|
|
7547
7573
|
# },
|
|
7548
|
-
# app_type: "JupyterServer", # accepts JupyterServer, KernelGateway, DetailedProfiler, TensorBoard,
|
|
7574
|
+
# app_type: "JupyterServer", # accepts JupyterServer, KernelGateway, DetailedProfiler, TensorBoard, CodeEditor, JupyterLab, RStudioServerPro, RSessionGateway, Canvas
|
|
7549
7575
|
# space_storage_settings: {
|
|
7550
7576
|
# ebs_storage_settings: {
|
|
7551
7577
|
# ebs_volume_size_in_gb: 1, # required
|
|
@@ -7608,7 +7634,7 @@ module Aws::SageMaker
|
|
|
7608
7634
|
# resp = client.create_studio_lifecycle_config({
|
|
7609
7635
|
# studio_lifecycle_config_name: "StudioLifecycleConfigName", # required
|
|
7610
7636
|
# studio_lifecycle_config_content: "StudioLifecycleConfigContent", # required
|
|
7611
|
-
# studio_lifecycle_config_app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway,
|
|
7637
|
+
# studio_lifecycle_config_app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, CodeEditor, JupyterLab
|
|
7612
7638
|
# tags: [
|
|
7613
7639
|
# {
|
|
7614
7640
|
# key: "TagKey", # required
|
|
@@ -9062,7 +9088,7 @@ module Aws::SageMaker
|
|
|
9062
9088
|
# domain_id: "DomainId", # required
|
|
9063
9089
|
# user_profile_name: "UserProfileName",
|
|
9064
9090
|
# space_name: "SpaceName",
|
|
9065
|
-
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, DetailedProfiler, TensorBoard,
|
|
9091
|
+
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, DetailedProfiler, TensorBoard, CodeEditor, JupyterLab, RStudioServerPro, RSessionGateway, Canvas
|
|
9066
9092
|
# app_name: "AppName", # required
|
|
9067
9093
|
# })
|
|
9068
9094
|
#
|
|
@@ -10512,7 +10538,7 @@ module Aws::SageMaker
|
|
|
10512
10538
|
# resp.training_specification.supported_tuning_job_objective_metrics #=> Array
|
|
10513
10539
|
# resp.training_specification.supported_tuning_job_objective_metrics[0].type #=> String, one of "Maximize", "Minimize"
|
|
10514
10540
|
# resp.training_specification.supported_tuning_job_objective_metrics[0].metric_name #=> String
|
|
10515
|
-
# resp.training_specification.additional_s3_data_source.s3_data_type #=> String, one of "S3Object"
|
|
10541
|
+
# resp.training_specification.additional_s3_data_source.s3_data_type #=> String, one of "S3Object", "S3Prefix"
|
|
10516
10542
|
# resp.training_specification.additional_s3_data_source.s3_uri #=> String
|
|
10517
10543
|
# resp.training_specification.additional_s3_data_source.compression_type #=> String, one of "None", "Gzip"
|
|
10518
10544
|
# resp.inference_specification.containers #=> Array
|
|
@@ -10527,7 +10553,7 @@ module Aws::SageMaker
|
|
|
10527
10553
|
# resp.inference_specification.containers[0].framework #=> String
|
|
10528
10554
|
# resp.inference_specification.containers[0].framework_version #=> String
|
|
10529
10555
|
# resp.inference_specification.containers[0].nearest_model_name #=> String
|
|
10530
|
-
# resp.inference_specification.containers[0].additional_s3_data_source.s3_data_type #=> String, one of "S3Object"
|
|
10556
|
+
# resp.inference_specification.containers[0].additional_s3_data_source.s3_data_type #=> String, one of "S3Object", "S3Prefix"
|
|
10531
10557
|
# resp.inference_specification.containers[0].additional_s3_data_source.s3_uri #=> String
|
|
10532
10558
|
# resp.inference_specification.containers[0].additional_s3_data_source.compression_type #=> String, one of "None", "Gzip"
|
|
10533
10559
|
# resp.inference_specification.supported_transform_instance_types #=> Array
|
|
@@ -10654,14 +10680,14 @@ module Aws::SageMaker
|
|
|
10654
10680
|
# domain_id: "DomainId", # required
|
|
10655
10681
|
# user_profile_name: "UserProfileName",
|
|
10656
10682
|
# space_name: "SpaceName",
|
|
10657
|
-
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, DetailedProfiler, TensorBoard,
|
|
10683
|
+
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, DetailedProfiler, TensorBoard, CodeEditor, JupyterLab, RStudioServerPro, RSessionGateway, Canvas
|
|
10658
10684
|
# app_name: "AppName", # required
|
|
10659
10685
|
# })
|
|
10660
10686
|
#
|
|
10661
10687
|
# @example Response structure
|
|
10662
10688
|
#
|
|
10663
10689
|
# resp.app_arn #=> String
|
|
10664
|
-
# resp.app_type #=> String, one of "JupyterServer", "KernelGateway", "DetailedProfiler", "TensorBoard", "
|
|
10690
|
+
# resp.app_type #=> String, one of "JupyterServer", "KernelGateway", "DetailedProfiler", "TensorBoard", "CodeEditor", "JupyterLab", "RStudioServerPro", "RSessionGateway", "Canvas"
|
|
10665
10691
|
# resp.app_name #=> String
|
|
10666
10692
|
# resp.domain_id #=> String
|
|
10667
10693
|
# resp.user_profile_name #=> String
|
|
@@ -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"
|
|
@@ -13947,7 +13977,7 @@ module Aws::SageMaker
|
|
|
13947
13977
|
# resp.inference_specification.containers[0].framework #=> String
|
|
13948
13978
|
# resp.inference_specification.containers[0].framework_version #=> String
|
|
13949
13979
|
# resp.inference_specification.containers[0].nearest_model_name #=> String
|
|
13950
|
-
# resp.inference_specification.containers[0].additional_s3_data_source.s3_data_type #=> String, one of "S3Object"
|
|
13980
|
+
# resp.inference_specification.containers[0].additional_s3_data_source.s3_data_type #=> String, one of "S3Object", "S3Prefix"
|
|
13951
13981
|
# resp.inference_specification.containers[0].additional_s3_data_source.s3_uri #=> String
|
|
13952
13982
|
# resp.inference_specification.containers[0].additional_s3_data_source.compression_type #=> String, one of "None", "Gzip"
|
|
13953
13983
|
# resp.inference_specification.supported_transform_instance_types #=> Array
|
|
@@ -14081,7 +14111,7 @@ module Aws::SageMaker
|
|
|
14081
14111
|
# resp.additional_inference_specifications[0].containers[0].framework #=> String
|
|
14082
14112
|
# resp.additional_inference_specifications[0].containers[0].framework_version #=> String
|
|
14083
14113
|
# resp.additional_inference_specifications[0].containers[0].nearest_model_name #=> String
|
|
14084
|
-
# resp.additional_inference_specifications[0].containers[0].additional_s3_data_source.s3_data_type #=> String, one of "S3Object"
|
|
14114
|
+
# resp.additional_inference_specifications[0].containers[0].additional_s3_data_source.s3_data_type #=> String, one of "S3Object", "S3Prefix"
|
|
14085
14115
|
# resp.additional_inference_specifications[0].containers[0].additional_s3_data_source.s3_uri #=> String
|
|
14086
14116
|
# resp.additional_inference_specifications[0].containers[0].additional_s3_data_source.compression_type #=> String, one of "None", "Gzip"
|
|
14087
14117
|
# resp.additional_inference_specifications[0].supported_transform_instance_types #=> Array
|
|
@@ -14900,7 +14930,7 @@ module Aws::SageMaker
|
|
|
14900
14930
|
# resp.space_settings.jupyter_lab_app_settings.default_resource_spec.lifecycle_config_arn #=> String
|
|
14901
14931
|
# resp.space_settings.jupyter_lab_app_settings.code_repositories #=> Array
|
|
14902
14932
|
# resp.space_settings.jupyter_lab_app_settings.code_repositories[0].repository_url #=> String
|
|
14903
|
-
# resp.space_settings.app_type #=> String, one of "JupyterServer", "KernelGateway", "DetailedProfiler", "TensorBoard", "
|
|
14933
|
+
# resp.space_settings.app_type #=> String, one of "JupyterServer", "KernelGateway", "DetailedProfiler", "TensorBoard", "CodeEditor", "JupyterLab", "RStudioServerPro", "RSessionGateway", "Canvas"
|
|
14904
14934
|
# resp.space_settings.space_storage_settings.ebs_storage_settings.ebs_volume_size_in_gb #=> Integer
|
|
14905
14935
|
# resp.space_settings.custom_file_systems #=> Array
|
|
14906
14936
|
# resp.space_settings.custom_file_systems[0].efs_file_system.file_system_id #=> String
|
|
@@ -14946,7 +14976,7 @@ module Aws::SageMaker
|
|
|
14946
14976
|
# resp.creation_time #=> Time
|
|
14947
14977
|
# resp.last_modified_time #=> Time
|
|
14948
14978
|
# resp.studio_lifecycle_config_content #=> String
|
|
14949
|
-
# resp.studio_lifecycle_config_app_type #=> String, one of "JupyterServer", "KernelGateway", "
|
|
14979
|
+
# resp.studio_lifecycle_config_app_type #=> String, one of "JupyterServer", "KernelGateway", "CodeEditor", "JupyterLab"
|
|
14950
14980
|
#
|
|
14951
14981
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeStudioLifecycleConfig AWS API Documentation
|
|
14952
14982
|
#
|
|
@@ -16465,7 +16495,7 @@ module Aws::SageMaker
|
|
|
16465
16495
|
# resp.apps[0].domain_id #=> String
|
|
16466
16496
|
# resp.apps[0].user_profile_name #=> String
|
|
16467
16497
|
# resp.apps[0].space_name #=> String
|
|
16468
|
-
# resp.apps[0].app_type #=> String, one of "JupyterServer", "KernelGateway", "DetailedProfiler", "TensorBoard", "
|
|
16498
|
+
# resp.apps[0].app_type #=> String, one of "JupyterServer", "KernelGateway", "DetailedProfiler", "TensorBoard", "CodeEditor", "JupyterLab", "RStudioServerPro", "RSessionGateway", "Canvas"
|
|
16469
16499
|
# resp.apps[0].app_name #=> String
|
|
16470
16500
|
# resp.apps[0].status #=> String, one of "Deleted", "Deleting", "Failed", "InService", "Pending"
|
|
16471
16501
|
# resp.apps[0].creation_time #=> Time
|
|
@@ -20996,7 +21026,7 @@ module Aws::SageMaker
|
|
|
20996
21026
|
# resp.spaces[0].status #=> String, one of "Deleting", "Failed", "InService", "Pending", "Updating", "Update_Failed", "Delete_Failed"
|
|
20997
21027
|
# resp.spaces[0].creation_time #=> Time
|
|
20998
21028
|
# resp.spaces[0].last_modified_time #=> Time
|
|
20999
|
-
# resp.spaces[0].space_settings_summary.app_type #=> String, one of "JupyterServer", "KernelGateway", "DetailedProfiler", "TensorBoard", "
|
|
21029
|
+
# resp.spaces[0].space_settings_summary.app_type #=> String, one of "JupyterServer", "KernelGateway", "DetailedProfiler", "TensorBoard", "CodeEditor", "JupyterLab", "RStudioServerPro", "RSessionGateway", "Canvas"
|
|
21000
21030
|
# resp.spaces[0].space_settings_summary.space_storage_settings.ebs_storage_settings.ebs_volume_size_in_gb #=> Integer
|
|
21001
21031
|
# resp.spaces[0].space_sharing_settings_summary.sharing_type #=> String, one of "Private", "Shared"
|
|
21002
21032
|
# resp.spaces[0].ownership_settings_summary.owner_user_profile_name #=> String
|
|
@@ -21131,7 +21161,7 @@ module Aws::SageMaker
|
|
|
21131
21161
|
# max_results: 1,
|
|
21132
21162
|
# next_token: "NextToken",
|
|
21133
21163
|
# name_contains: "StudioLifecycleConfigName",
|
|
21134
|
-
# app_type_equals: "JupyterServer", # accepts JupyterServer, KernelGateway,
|
|
21164
|
+
# app_type_equals: "JupyterServer", # accepts JupyterServer, KernelGateway, CodeEditor, JupyterLab
|
|
21135
21165
|
# creation_time_before: Time.now,
|
|
21136
21166
|
# creation_time_after: Time.now,
|
|
21137
21167
|
# modified_time_before: Time.now,
|
|
@@ -21148,7 +21178,7 @@ module Aws::SageMaker
|
|
|
21148
21178
|
# resp.studio_lifecycle_configs[0].studio_lifecycle_config_name #=> String
|
|
21149
21179
|
# resp.studio_lifecycle_configs[0].creation_time #=> Time
|
|
21150
21180
|
# resp.studio_lifecycle_configs[0].last_modified_time #=> Time
|
|
21151
|
-
# resp.studio_lifecycle_configs[0].studio_lifecycle_config_app_type #=> String, one of "JupyterServer", "KernelGateway", "
|
|
21181
|
+
# resp.studio_lifecycle_configs[0].studio_lifecycle_config_app_type #=> String, one of "JupyterServer", "KernelGateway", "CodeEditor", "JupyterLab"
|
|
21152
21182
|
#
|
|
21153
21183
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListStudioLifecycleConfigs AWS API Documentation
|
|
21154
21184
|
#
|
|
@@ -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
|
|
@@ -24523,7 +24564,7 @@ module Aws::SageMaker
|
|
|
24523
24564
|
# framework_version: "ModelPackageFrameworkVersion",
|
|
24524
24565
|
# nearest_model_name: "String",
|
|
24525
24566
|
# additional_s3_data_source: {
|
|
24526
|
-
# s3_data_type: "S3Object", # required, accepts S3Object
|
|
24567
|
+
# s3_data_type: "S3Object", # required, accepts S3Object, S3Prefix
|
|
24527
24568
|
# s3_uri: "S3Uri", # required
|
|
24528
24569
|
# compression_type: "None", # accepts None, Gzip
|
|
24529
24570
|
# },
|
|
@@ -25190,7 +25231,7 @@ module Aws::SageMaker
|
|
|
25190
25231
|
# },
|
|
25191
25232
|
# ],
|
|
25192
25233
|
# },
|
|
25193
|
-
# app_type: "JupyterServer", # accepts JupyterServer, KernelGateway, DetailedProfiler, TensorBoard,
|
|
25234
|
+
# app_type: "JupyterServer", # accepts JupyterServer, KernelGateway, DetailedProfiler, TensorBoard, CodeEditor, JupyterLab, RStudioServerPro, RSessionGateway, Canvas
|
|
25194
25235
|
# space_storage_settings: {
|
|
25195
25236
|
# ebs_storage_settings: {
|
|
25196
25237
|
# ebs_volume_size_in_gb: 1, # required
|
|
@@ -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.229.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.229.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-01-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|
|
@@ -73,7 +73,7 @@ licenses:
|
|
|
73
73
|
metadata:
|
|
74
74
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-sagemaker
|
|
75
75
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-sagemaker/CHANGELOG.md
|
|
76
|
-
post_install_message:
|
|
76
|
+
post_install_message:
|
|
77
77
|
rdoc_options: []
|
|
78
78
|
require_paths:
|
|
79
79
|
- lib
|
|
@@ -88,8 +88,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
88
88
|
- !ruby/object:Gem::Version
|
|
89
89
|
version: '0'
|
|
90
90
|
requirements: []
|
|
91
|
-
rubygems_version: 3.
|
|
92
|
-
signing_key:
|
|
91
|
+
rubygems_version: 3.4.10
|
|
92
|
+
signing_key:
|
|
93
93
|
specification_version: 4
|
|
94
94
|
summary: AWS SDK for Ruby - SageMaker
|
|
95
95
|
test_files: []
|