Select your cookie preferences

We use essential cookies and similar tools that are necessary to provide our site and services. We use performance cookies to collect anonymous statistics, so we can understand how customers use our site and make improvements. Essential cookies cannot be deactivated, but you can choose “Customize” or “Decline” to decline performance cookies.

If you agree, AWS and approved third parties will also use cookies to provide useful site features, remember your preferences, and display relevant content, including relevant advertising. To accept or decline all non-essential cookies, choose “Accept” or “Decline.” To make more detailed choices, choose “Customize.”

Class: Aws::SageMaker::Types::ThroughputConfigUpdate

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#provisioned_read_capacity_unitsInteger

For provisioned feature groups with online store enabled, this indicates the read throughput you are billed for and can consume without throttling.

Returns:

  • (Integer)

44863
44864
44865
44866
44867
44868
44869
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 44863

class ThroughputConfigUpdate < Struct.new(
  :throughput_mode,
  :provisioned_read_capacity_units,
  :provisioned_write_capacity_units)
  SENSITIVE = []
  include Aws::Structure
end

#provisioned_write_capacity_unitsInteger

For provisioned feature groups, this indicates the write throughput you are billed for and can consume without throttling.

Returns:

  • (Integer)

44863
44864
44865
44866
44867
44868
44869
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 44863

class ThroughputConfigUpdate < Struct.new(
  :throughput_mode,
  :provisioned_read_capacity_units,
  :provisioned_write_capacity_units)
  SENSITIVE = []
  include Aws::Structure
end

#throughput_modeString

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.

Returns:

  • (String)

44863
44864
44865
44866
44867
44868
44869
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 44863

class ThroughputConfigUpdate < Struct.new(
  :throughput_mode,
  :provisioned_read_capacity_units,
  :provisioned_write_capacity_units)
  SENSITIVE = []
  include Aws::Structure
end