Class: Aws::SageMaker::Types::ThroughputConfigUpdate
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ThroughputConfigUpdate
- Defined in:
- gems/aws-sdk-sagemaker/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.
42740 42741 42742 42743 42744 42745 42746 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 42740 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.
42740 42741 42742 42743 42744 42745 42746 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 42740 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.
42740 42741 42742 42743 42744 42745 42746 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 42740 class ThroughputConfigUpdate < Struct.new( :throughput_mode, :provisioned_read_capacity_units, :provisioned_write_capacity_units) SENSITIVE = [] include Aws::Structure end |