@@ -472,6 +472,13 @@ class ThroughputConfig(Config):
472472 Throughput configuration can be ON_DEMAND, or PROVISIONED with valid values for
473473 read and write capacity units. ON_DEMAND works best for less predictable traffic,
474474 while PROVISIONED works best for consistent and predictable traffic.
475+
476+ Attributes:
477+ mode (ThroughputModeEnum): Throughput mode
478+ provisioned_read_capacity_units (int): For provisioned feature groups, this indicates
479+ the read throughput you are billed for and can consume without throttling.
480+ provisioned_write_capacity_units (int): For provisioned feature groups, this indicates
481+ the write throughput you are billed for and can consume without throttling.
475482 """
476483
477484 mode : ThroughputModeEnum = attr .ib (default = None )
@@ -493,11 +500,18 @@ def to_dict(self) -> Dict[str, Any]:
493500
494501@attr .s
495502class ThroughputConfigUpdate (Config ):
496- """Target throughput configuration of the feature group being updated .
503+ """Target throughput configuration for the feature group.
497504
498505 Target throughput configuration can be ON_DEMAND, or PROVISIONED with valid values for
499506 read and write capacity units. ON_DEMAND works best for less predictable traffic,
500507 while PROVISIONED works best for consistent and predictable traffic.
508+
509+ Attributes:
510+ mode (ThroughputModeEnum): Target throughput mode
511+ provisioned_read_capacity_units (int): For provisioned feature groups, this indicates
512+ the read throughput you are billed for and can consume without throttling.
513+ provisioned_write_capacity_units (int): For provisioned feature groups, this indicates
514+ the write throughput you are billed for and can consume without throttling.
501515 """
502516
503517 mode : ThroughputModeEnum = attr .ib (default = None )
0 commit comments