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)


40468
40469
40470
40471
40472
40473
40474
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 40468

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)


40468
40469
40470
40471
40472
40473
40474
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 40468

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)


40468
40469
40470
40471
40472
40473
40474
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 40468

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