aws-sdk-sagemaker 1.226.0 → 1.228.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 935411c60796f0ac8b54410e4d58b170a7031bdce44386a1efe118c9deeaae0b
4
- data.tar.gz: a4e838e05a9e396d10e276fd53388ac73dcd89c8de70d1d4130e32def2150499
3
+ metadata.gz: 7cd6c598932ce016742be0b17fa94c7b061da795607c81311378889709918595
4
+ data.tar.gz: 3c917d812834919ee26256f3c35e7ad2f2dc49801186330db47cf103619cd704
5
5
  SHA512:
6
- metadata.gz: 24e4ee829a076565797fce6e4d7ae77f74fdbb40fadf989d2adf4bb390dd8eec0bd923bef4ca5b7089aff1757e1b92a317843cf6c91c82a97d5f73f641505a8d
7
- data.tar.gz: 766234afeccec68d8edee8803ea2e18acf4ff15749f64b1e7a6c45505009c386a5eda14c1723efe7fca9e0d302b4e85d7cb0a8cb9b1706491777c70ed58a2643
6
+ metadata.gz: 326a23fe2af30adef797601f8022f54adbf7cc1ee55867fe3d32679470e9223ef1c85e7d1de075fa19caf151516d97a1a582afa13d52216f84ca28878ec716e2
7
+ data.tar.gz: 0d9f7bb0180a131652bf91c2f09ac4307478f90e28c3705e5441852a18946cf27f9badbfa27408422d2ce29d98b6819b2d8e0182425d3ca437090efe80738a89
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.228.0 (2024-01-04)
5
+ ------------------
6
+
7
+ * Feature - Adding support for provisioned throughput mode for SageMaker Feature Groups
8
+
9
+ 1.227.0 (2023-12-28)
10
+ ------------------
11
+
12
+ * Feature - Amazon SageMaker Studio now supports Docker access from within app container
13
+
4
14
  1.226.0 (2023-12-21)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.226.0
1
+ 1.228.0
@@ -2584,6 +2584,10 @@ module Aws::SageMaker
2584
2584
  # },
2585
2585
  # },
2586
2586
  # execution_role_identity_config: "USER_PROFILE_NAME", # accepts USER_PROFILE_NAME, DISABLED
2587
+ # docker_settings: {
2588
+ # enable_docker_access: "ENABLED", # accepts ENABLED, DISABLED
2589
+ # vpc_only_trusted_accounts: ["AccountId"],
2590
+ # },
2587
2591
  # },
2588
2592
  # subnet_ids: ["SubnetId"], # required
2589
2593
  # vpc_id: "VpcId", # required
@@ -3549,6 +3553,27 @@ module Aws::SageMaker
3549
3553
  # [2]: https://iceberg.apache.org/
3550
3554
  # [3]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_OfflineStoreConfig.html
3551
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
+ #
3552
3577
  # @option params [String] :role_arn
3553
3578
  # The Amazon Resource Name (ARN) of the IAM execution role used to
3554
3579
  # persist data into the `OfflineStore` if an `OfflineStoreConfig` is
@@ -3607,6 +3632,11 @@ module Aws::SageMaker
3607
3632
  # },
3608
3633
  # table_format: "Default", # accepts Default, Glue, Iceberg
3609
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
+ # },
3610
3640
  # role_arn: "RoleArn",
3611
3641
  # description: "Description",
3612
3642
  # tags: [
@@ -11733,6 +11763,9 @@ module Aws::SageMaker
11733
11763
  # resp.domain_settings.r_studio_server_pro_domain_settings.default_resource_spec.instance_type #=> String, one of "system", "ml.t3.micro", "ml.t3.small", "ml.t3.medium", "ml.t3.large", "ml.t3.xlarge", "ml.t3.2xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.8xlarge", "ml.m5.12xlarge", "ml.m5.16xlarge", "ml.m5.24xlarge", "ml.m5d.large", "ml.m5d.xlarge", "ml.m5d.2xlarge", "ml.m5d.4xlarge", "ml.m5d.8xlarge", "ml.m5d.12xlarge", "ml.m5d.16xlarge", "ml.m5d.24xlarge", "ml.c5.large", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.12xlarge", "ml.c5.18xlarge", "ml.c5.24xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.r5.large", "ml.r5.xlarge", "ml.r5.2xlarge", "ml.r5.4xlarge", "ml.r5.8xlarge", "ml.r5.12xlarge", "ml.r5.16xlarge", "ml.r5.24xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge", "ml.geospatial.interactive", "ml.p4d.24xlarge", "ml.p4de.24xlarge", "ml.trn1.2xlarge", "ml.trn1.32xlarge", "ml.trn1n.32xlarge"
11734
11764
  # resp.domain_settings.r_studio_server_pro_domain_settings.default_resource_spec.lifecycle_config_arn #=> String
11735
11765
  # resp.domain_settings.execution_role_identity_config #=> String, one of "USER_PROFILE_NAME", "DISABLED"
11766
+ # resp.domain_settings.docker_settings.enable_docker_access #=> String, one of "ENABLED", "DISABLED"
11767
+ # resp.domain_settings.docker_settings.vpc_only_trusted_accounts #=> Array
11768
+ # resp.domain_settings.docker_settings.vpc_only_trusted_accounts[0] #=> String
11736
11769
  # resp.app_network_access_type #=> String, one of "PublicInternetOnly", "VpcOnly"
11737
11770
  # resp.home_efs_file_system_kms_key_id #=> String
11738
11771
  # resp.subnet_ids #=> Array
@@ -12323,6 +12356,7 @@ module Aws::SageMaker
12323
12356
  # * {Types::DescribeFeatureGroupResponse#last_modified_time #last_modified_time} => Time
12324
12357
  # * {Types::DescribeFeatureGroupResponse#online_store_config #online_store_config} => Types::OnlineStoreConfig
12325
12358
  # * {Types::DescribeFeatureGroupResponse#offline_store_config #offline_store_config} => Types::OfflineStoreConfig
12359
+ # * {Types::DescribeFeatureGroupResponse#throughput_config #throughput_config} => Types::ThroughputConfigDescription
12326
12360
  # * {Types::DescribeFeatureGroupResponse#role_arn #role_arn} => String
12327
12361
  # * {Types::DescribeFeatureGroupResponse#feature_group_status #feature_group_status} => String
12328
12362
  # * {Types::DescribeFeatureGroupResponse#offline_store_status #offline_store_status} => Types::OfflineStoreStatus
@@ -12365,6 +12399,9 @@ module Aws::SageMaker
12365
12399
  # resp.offline_store_config.data_catalog_config.catalog #=> String
12366
12400
  # resp.offline_store_config.data_catalog_config.database #=> String
12367
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
12368
12405
  # resp.role_arn #=> String
12369
12406
  # resp.feature_group_status #=> String, one of "Creating", "Created", "CreateFailed", "Deleting", "DeleteFailed"
12370
12407
  # resp.offline_store_status.status #=> String, one of "Active", "Blocked", "Disabled"
@@ -23616,6 +23653,10 @@ module Aws::SageMaker
23616
23653
  # },
23617
23654
  # execution_role_identity_config: "USER_PROFILE_NAME", # accepts USER_PROFILE_NAME, DISABLED
23618
23655
  # security_group_ids: ["SecurityGroupId"],
23656
+ # docker_settings: {
23657
+ # enable_docker_access: "ENABLED", # accepts ENABLED, DISABLED
23658
+ # vpc_only_trusted_accounts: ["AccountId"],
23659
+ # },
23619
23660
  # },
23620
23661
  # app_security_group_management: "Service", # accepts Service, Customer
23621
23662
  # default_space_settings: {
@@ -23924,6 +23965,12 @@ module Aws::SageMaker
23924
23965
  # @option params [Types::OnlineStoreConfigUpdate] :online_store_config
23925
23966
  # Updates the feature group online store configuration.
23926
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
+ #
23927
23974
  # @return [Types::UpdateFeatureGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
23928
23975
  #
23929
23976
  # * {Types::UpdateFeatureGroupResponse#feature_group_arn #feature_group_arn} => String
@@ -23950,6 +23997,11 @@ module Aws::SageMaker
23950
23997
  # value: 1,
23951
23998
  # },
23952
23999
  # },
24000
+ # throughput_config: {
24001
+ # throughput_mode: "OnDemand", # accepts OnDemand, Provisioned
24002
+ # provisioned_read_capacity_units: 1,
24003
+ # provisioned_write_capacity_units: 1,
24004
+ # },
23953
24005
  # })
23954
24006
  #
23955
24007
  # @example Response structure
@@ -25844,7 +25896,7 @@ module Aws::SageMaker
25844
25896
  params: params,
25845
25897
  config: config)
25846
25898
  context[:gem_name] = 'aws-sdk-sagemaker'
25847
- context[:gem_version] = '1.226.0'
25899
+ context[:gem_version] = '1.228.0'
25848
25900
  Seahorse::Client::Request.new(handlers, context)
25849
25901
  end
25850
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')
@@ -723,6 +724,7 @@ module Aws::SageMaker
723
724
  DisassociateNotebookInstanceLifecycleConfig = Shapes::BooleanShape.new(name: 'DisassociateNotebookInstanceLifecycleConfig')
724
725
  DisassociateTrialComponentRequest = Shapes::StructureShape.new(name: 'DisassociateTrialComponentRequest')
725
726
  DisassociateTrialComponentResponse = Shapes::StructureShape.new(name: 'DisassociateTrialComponentResponse')
727
+ DockerSettings = Shapes::StructureShape.new(name: 'DockerSettings')
726
728
  DocumentSchemaVersion = Shapes::StringShape.new(name: 'DocumentSchemaVersion')
727
729
  Dollars = Shapes::IntegerShape.new(name: 'Dollars')
728
730
  DomainArn = Shapes::StringShape.new(name: 'DomainArn')
@@ -2017,6 +2019,10 @@ module Aws::SageMaker
2017
2019
  TextGenerationJobConfig = Shapes::StructureShape.new(name: 'TextGenerationJobConfig')
2018
2020
  TextGenerationResolvedAttributes = Shapes::StructureShape.new(name: 'TextGenerationResolvedAttributes')
2019
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')
2020
2026
  TimeSeriesConfig = Shapes::StructureShape.new(name: 'TimeSeriesConfig')
2021
2027
  TimeSeriesForecastingJobConfig = Shapes::StructureShape.new(name: 'TimeSeriesForecastingJobConfig')
2022
2028
  TimeSeriesForecastingSettings = Shapes::StructureShape.new(name: 'TimeSeriesForecastingSettings')
@@ -2218,6 +2224,7 @@ module Aws::SageMaker
2218
2224
  VolumeSizeInGB = Shapes::IntegerShape.new(name: 'VolumeSizeInGB')
2219
2225
  VpcConfig = Shapes::StructureShape.new(name: 'VpcConfig')
2220
2226
  VpcId = Shapes::StringShape.new(name: 'VpcId')
2227
+ VpcOnlyTrustedAccounts = Shapes::ListShape.new(name: 'VpcOnlyTrustedAccounts')
2221
2228
  VpcSecurityGroupIds = Shapes::ListShape.new(name: 'VpcSecurityGroupIds')
2222
2229
  WaitIntervalInSeconds = Shapes::IntegerShape.new(name: 'WaitIntervalInSeconds')
2223
2230
  WarmPoolResourceStatus = Shapes::StringShape.new(name: 'WarmPoolResourceStatus')
@@ -3212,6 +3219,7 @@ module Aws::SageMaker
3212
3219
  CreateFeatureGroupRequest.add_member(:feature_definitions, Shapes::ShapeRef.new(shape: FeatureDefinitions, required: true, location_name: "FeatureDefinitions"))
3213
3220
  CreateFeatureGroupRequest.add_member(:online_store_config, Shapes::ShapeRef.new(shape: OnlineStoreConfig, location_name: "OnlineStoreConfig"))
3214
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"))
3215
3223
  CreateFeatureGroupRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RoleArn"))
3216
3224
  CreateFeatureGroupRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
3217
3225
  CreateFeatureGroupRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
@@ -4436,6 +4444,7 @@ module Aws::SageMaker
4436
4444
  DescribeFeatureGroupResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: LastModifiedTime, location_name: "LastModifiedTime"))
4437
4445
  DescribeFeatureGroupResponse.add_member(:online_store_config, Shapes::ShapeRef.new(shape: OnlineStoreConfig, location_name: "OnlineStoreConfig"))
4438
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"))
4439
4448
  DescribeFeatureGroupResponse.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RoleArn"))
4440
4449
  DescribeFeatureGroupResponse.add_member(:feature_group_status, Shapes::ShapeRef.new(shape: FeatureGroupStatus, location_name: "FeatureGroupStatus"))
4441
4450
  DescribeFeatureGroupResponse.add_member(:offline_store_status, Shapes::ShapeRef.new(shape: OfflineStoreStatus, location_name: "OfflineStoreStatus"))
@@ -5206,6 +5215,10 @@ module Aws::SageMaker
5206
5215
  DisassociateTrialComponentResponse.add_member(:trial_arn, Shapes::ShapeRef.new(shape: TrialArn, location_name: "TrialArn"))
5207
5216
  DisassociateTrialComponentResponse.struct_class = Types::DisassociateTrialComponentResponse
5208
5217
 
5218
+ DockerSettings.add_member(:enable_docker_access, Shapes::ShapeRef.new(shape: FeatureStatus, location_name: "EnableDockerAccess"))
5219
+ DockerSettings.add_member(:vpc_only_trusted_accounts, Shapes::ShapeRef.new(shape: VpcOnlyTrustedAccounts, location_name: "VpcOnlyTrustedAccounts"))
5220
+ DockerSettings.struct_class = Types::DockerSettings
5221
+
5209
5222
  DomainDetails.add_member(:domain_arn, Shapes::ShapeRef.new(shape: DomainArn, location_name: "DomainArn"))
5210
5223
  DomainDetails.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, location_name: "DomainId"))
5211
5224
  DomainDetails.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, location_name: "DomainName"))
@@ -5222,11 +5235,13 @@ module Aws::SageMaker
5222
5235
  DomainSettings.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: DomainSecurityGroupIds, location_name: "SecurityGroupIds"))
5223
5236
  DomainSettings.add_member(:r_studio_server_pro_domain_settings, Shapes::ShapeRef.new(shape: RStudioServerProDomainSettings, location_name: "RStudioServerProDomainSettings"))
5224
5237
  DomainSettings.add_member(:execution_role_identity_config, Shapes::ShapeRef.new(shape: ExecutionRoleIdentityConfig, location_name: "ExecutionRoleIdentityConfig"))
5238
+ DomainSettings.add_member(:docker_settings, Shapes::ShapeRef.new(shape: DockerSettings, location_name: "DockerSettings"))
5225
5239
  DomainSettings.struct_class = Types::DomainSettings
5226
5240
 
5227
5241
  DomainSettingsForUpdate.add_member(:r_studio_server_pro_domain_settings_for_update, Shapes::ShapeRef.new(shape: RStudioServerProDomainSettingsForUpdate, location_name: "RStudioServerProDomainSettingsForUpdate"))
5228
5242
  DomainSettingsForUpdate.add_member(:execution_role_identity_config, Shapes::ShapeRef.new(shape: ExecutionRoleIdentityConfig, location_name: "ExecutionRoleIdentityConfig"))
5229
5243
  DomainSettingsForUpdate.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: DomainSecurityGroupIds, location_name: "SecurityGroupIds"))
5244
+ DomainSettingsForUpdate.add_member(:docker_settings, Shapes::ShapeRef.new(shape: DockerSettings, location_name: "DockerSettings"))
5230
5245
  DomainSettingsForUpdate.struct_class = Types::DomainSettingsForUpdate
5231
5246
 
5232
5247
  DriftCheckBaselines.add_member(:bias, Shapes::ShapeRef.new(shape: DriftCheckBias, location_name: "Bias"))
@@ -9053,6 +9068,21 @@ module Aws::SageMaker
9053
9068
  TextGenerationResolvedAttributes.add_member(:base_model_name, Shapes::ShapeRef.new(shape: BaseModelName, location_name: "BaseModelName"))
9054
9069
  TextGenerationResolvedAttributes.struct_class = Types::TextGenerationResolvedAttributes
9055
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
+
9056
9086
  TimeSeriesConfig.add_member(:target_attribute_name, Shapes::ShapeRef.new(shape: TargetAttributeName, required: true, location_name: "TargetAttributeName"))
9057
9087
  TimeSeriesConfig.add_member(:timestamp_attribute_name, Shapes::ShapeRef.new(shape: TimestampAttributeName, required: true, location_name: "TimestampAttributeName"))
9058
9088
  TimeSeriesConfig.add_member(:item_identifier_attribute_name, Shapes::ShapeRef.new(shape: ItemIdentifierAttributeName, required: true, location_name: "ItemIdentifierAttributeName"))
@@ -9508,6 +9538,7 @@ module Aws::SageMaker
9508
9538
  UpdateFeatureGroupRequest.add_member(:feature_group_name, Shapes::ShapeRef.new(shape: FeatureGroupNameOrArn, required: true, location_name: "FeatureGroupName"))
9509
9539
  UpdateFeatureGroupRequest.add_member(:feature_additions, Shapes::ShapeRef.new(shape: FeatureAdditions, location_name: "FeatureAdditions"))
9510
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"))
9511
9542
  UpdateFeatureGroupRequest.struct_class = Types::UpdateFeatureGroupRequest
9512
9543
 
9513
9544
  UpdateFeatureGroupResponse.add_member(:feature_group_arn, Shapes::ShapeRef.new(shape: FeatureGroupArn, required: true, location_name: "FeatureGroupArn"))
@@ -9799,6 +9830,8 @@ module Aws::SageMaker
9799
9830
  VpcConfig.add_member(:subnets, Shapes::ShapeRef.new(shape: Subnets, required: true, location_name: "Subnets"))
9800
9831
  VpcConfig.struct_class = Types::VpcConfig
9801
9832
 
9833
+ VpcOnlyTrustedAccounts.member = Shapes::ShapeRef.new(shape: AccountId)
9834
+
9802
9835
  VpcSecurityGroupIds.member = Shapes::ShapeRef.new(shape: SecurityGroupId)
9803
9836
 
9804
9837
  WarmPoolStatus.add_member(:status, Shapes::ShapeRef.new(shape: WarmPoolResourceStatus, required: true, location_name: "Status"))
@@ -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,
@@ -17468,6 +17514,27 @@ module Aws::SageMaker
17468
17514
  include Aws::Structure
17469
17515
  end
17470
17516
 
17517
+ # A collection of settings that configure the domain's Docker
17518
+ # interaction.
17519
+ #
17520
+ # @!attribute [rw] enable_docker_access
17521
+ # Indicates whether the domain can access Docker.
17522
+ # @return [String]
17523
+ #
17524
+ # @!attribute [rw] vpc_only_trusted_accounts
17525
+ # The list of Amazon Web Services accounts that are trusted when the
17526
+ # domain is created in VPC-only mode.
17527
+ # @return [Array<String>]
17528
+ #
17529
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DockerSettings AWS API Documentation
17530
+ #
17531
+ class DockerSettings < Struct.new(
17532
+ :enable_docker_access,
17533
+ :vpc_only_trusted_accounts)
17534
+ SENSITIVE = []
17535
+ include Aws::Structure
17536
+ end
17537
+
17471
17538
  # The domain's details.
17472
17539
  #
17473
17540
  # @!attribute [rw] domain_arn
@@ -17535,12 +17602,18 @@ module Aws::SageMaker
17535
17602
  # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_monitor.html
17536
17603
  # @return [String]
17537
17604
  #
17605
+ # @!attribute [rw] docker_settings
17606
+ # A collection of settings that configure the domain's Docker
17607
+ # interaction.
17608
+ # @return [Types::DockerSettings]
17609
+ #
17538
17610
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DomainSettings AWS API Documentation
17539
17611
  #
17540
17612
  class DomainSettings < Struct.new(
17541
17613
  :security_group_ids,
17542
17614
  :r_studio_server_pro_domain_settings,
17543
- :execution_role_identity_config)
17615
+ :execution_role_identity_config,
17616
+ :docker_settings)
17544
17617
  SENSITIVE = []
17545
17618
  include Aws::Structure
17546
17619
  end
@@ -17570,12 +17643,18 @@ module Aws::SageMaker
17570
17643
  # apps.
17571
17644
  # @return [Array<String>]
17572
17645
  #
17646
+ # @!attribute [rw] docker_settings
17647
+ # A collection of settings that configure the domain's Docker
17648
+ # interaction.
17649
+ # @return [Types::DockerSettings]
17650
+ #
17573
17651
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DomainSettingsForUpdate AWS API Documentation
17574
17652
  #
17575
17653
  class DomainSettingsForUpdate < Struct.new(
17576
17654
  :r_studio_server_pro_domain_settings_for_update,
17577
17655
  :execution_role_identity_config,
17578
- :security_group_ids)
17656
+ :security_group_ids,
17657
+ :docker_settings)
17579
17658
  SENSITIVE = []
17580
17659
  include Aws::Structure
17581
17660
  end
@@ -40048,6 +40127,140 @@ module Aws::SageMaker
40048
40127
  include Aws::Structure
40049
40128
  end
40050
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
+
40051
40264
  # The collection of components that defines the time-series.
40052
40265
  #
40053
40266
  # @!attribute [rw] target_attribute_name
@@ -42910,12 +43123,20 @@ module Aws::SageMaker
42910
43123
  # Updates the feature group online store configuration.
42911
43124
  # @return [Types::OnlineStoreConfigUpdate]
42912
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
+ #
42913
43133
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateFeatureGroupRequest AWS API Documentation
42914
43134
  #
42915
43135
  class UpdateFeatureGroupRequest < Struct.new(
42916
43136
  :feature_group_name,
42917
43137
  :feature_additions,
42918
- :online_store_config)
43138
+ :online_store_config,
43139
+ :throughput_config)
42919
43140
  SENSITIVE = []
42920
43141
  include Aws::Structure
42921
43142
  end
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-sagemaker/customizations'
53
53
  # @!group service
54
54
  module Aws::SageMaker
55
55
 
56
- GEM_VERSION = '1.226.0'
56
+ GEM_VERSION = '1.228.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sagemaker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.226.0
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: 2023-12-21 00:00:00.000000000 Z
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