Class: Aws::SageMaker::Types::ThroughputConfigUpdate
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ThroughputConfigUpdate
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
The new throughput configuration for the feature group. You can switch between on-demand and provisioned modes or update the read / write capacity of provisioned feature groups. You can switch a feature group to on-demand only once in a 24 hour period.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#provisioned_read_capacity_units ⇒ Integer
For provisioned feature groups with online store enabled, this indicates the read throughput you are billed for and can consume without throttling.
-
#provisioned_write_capacity_units ⇒ Integer
For provisioned feature groups, this indicates the write throughput you are billed for and can consume without throttling.
-
#throughput_mode ⇒ String
Target throughput mode of the feature group.
Instance Attribute Details
#provisioned_read_capacity_units ⇒ Integer
For provisioned feature groups with online store enabled, this indicates the read throughput you are billed for and can consume without throttling.
42638 42639 42640 42641 42642 42643 42644 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 42638 class ThroughputConfigUpdate < Struct.new( :throughput_mode, :provisioned_read_capacity_units, :provisioned_write_capacity_units) SENSITIVE = [] include Aws::Structure end |
#provisioned_write_capacity_units ⇒ Integer
For provisioned feature groups, this indicates the write throughput you are billed for and can consume without throttling.
42638 42639 42640 42641 42642 42643 42644 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 42638 class ThroughputConfigUpdate < Struct.new( :throughput_mode, :provisioned_read_capacity_units, :provisioned_write_capacity_units) SENSITIVE = [] include Aws::Structure end |
#throughput_mode ⇒ String
Target throughput mode of the feature group. Throughput update is an asynchronous operation, and the outcome should be monitored by polling ‘LastUpdateStatus` field in `DescribeFeatureGroup` response. You cannot update a feature group’s throughput while another update is in progress.
42638 42639 42640 42641 42642 42643 42644 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 42638 class ThroughputConfigUpdate < Struct.new( :throughput_mode, :provisioned_read_capacity_units, :provisioned_write_capacity_units) SENSITIVE = [] include Aws::Structure end |