Class: Aws::OpenSearchServerless::Types::CapacityLimits
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchServerless::Types::CapacityLimits
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-opensearchserverless/types.rb
Overview
The maximum capacity limits for all OpenSearch Serverless collections, in OpenSearch Compute Units (OCUs). These limits are used to scale your collections based on the current workload. For more information, see [Managing capacity limits for Amazon OpenSearch Serverless].
[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-scaling.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_indexing_capacity_in_ocu ⇒ Integer
The maximum indexing capacity for collections.
-
#max_search_capacity_in_ocu ⇒ Integer
The maximum search capacity for collections.
Instance Attribute Details
#max_indexing_capacity_in_ocu ⇒ Integer
The maximum indexing capacity for collections.
283 284 285 286 287 288 |
# File 'lib/aws-sdk-opensearchserverless/types.rb', line 283 class CapacityLimits < Struct.new( :max_indexing_capacity_in_ocu, :max_search_capacity_in_ocu) SENSITIVE = [] include Aws::Structure end |
#max_search_capacity_in_ocu ⇒ Integer
The maximum search capacity for collections.
283 284 285 286 287 288 |
# File 'lib/aws-sdk-opensearchserverless/types.rb', line 283 class CapacityLimits < Struct.new( :max_indexing_capacity_in_ocu, :max_search_capacity_in_ocu) SENSITIVE = [] include Aws::Structure end |