Class: Aws::TimestreamQuery::Types::DescribeAccountSettingsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::TimestreamQuery::Types::DescribeAccountSettingsResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-timestreamquery/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_query_tcu ⇒ Integer
The maximum number of [Timestream compute units] (TCUs) the service will use at any point in time to serve your queries.
-
#query_compute ⇒ Types::QueryComputeResponse
An object that contains the usage settings for Timestream Compute Units (TCUs) in your account for the query workload.
-
#query_pricing_model ⇒ String
The pricing model for queries in your account.
Instance Attribute Details
#max_query_tcu ⇒ Integer
The maximum number of [Timestream compute units] (TCUs) the service will use at any point in time to serve your queries. To run queries, you must set a minimum capacity of 4 TCU. You can set the maximum number of TCU in multiples of 4, for example, 4, 8, 16, 32, and so on. This configuration is applicable only for on-demand usage of (TCUs).
[1]: docs.aws.amazon.com/timestream/latest/developerguide/tcu.html
297 298 299 300 301 302 303 |
# File 'lib/aws-sdk-timestreamquery/types.rb', line 297 class DescribeAccountSettingsResponse < Struct.new( :max_query_tcu, :query_pricing_model, :query_compute) SENSITIVE = [] include Aws::Structure end |
#query_compute ⇒ Types::QueryComputeResponse
An object that contains the usage settings for Timestream Compute Units (TCUs) in your account for the query workload.
297 298 299 300 301 302 303 |
# File 'lib/aws-sdk-timestreamquery/types.rb', line 297 class DescribeAccountSettingsResponse < Struct.new( :max_query_tcu, :query_pricing_model, :query_compute) SENSITIVE = [] include Aws::Structure end |
#query_pricing_model ⇒ String
The pricing model for queries in your account.
<note markdown=“1”> The ‘QueryPricingModel` parameter is used by several Timestream operations; however, the `UpdateAccountSettings` API operation doesn’t recognize any values other than ‘COMPUTE_UNITS`.
</note>
297 298 299 300 301 302 303 |
# File 'lib/aws-sdk-timestreamquery/types.rb', line 297 class DescribeAccountSettingsResponse < Struct.new( :max_query_tcu, :query_pricing_model, :query_compute) SENSITIVE = [] include Aws::Structure end |