Class: Aws::TimestreamQuery::Types::LastUpdate
- Inherits:
-
Struct
- Object
- Struct
- Aws::TimestreamQuery::Types::LastUpdate
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-timestreamquery/types.rb
Overview
Configuration object that contains the most recent account settings update, visible only if settings have been updated previously.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#status ⇒ String
The status of the last update.
-
#status_message ⇒ String
Error message describing the last account settings update status, visible only if an error occurred.
-
#target_query_tcu ⇒ Integer
The number of TimeStream Compute Units (TCUs) requested in the last account settings update.
Instance Attribute Details
#status ⇒ String
The status of the last update. Can be either ‘PENDING`, `FAILED`, or `SUCCEEDED`.
540 541 542 543 544 545 546 |
# File 'lib/aws-sdk-timestreamquery/types.rb', line 540 class LastUpdate < Struct.new( :target_query_tcu, :status, :status_message) SENSITIVE = [] include Aws::Structure end |
#status_message ⇒ String
Error message describing the last account settings update status, visible only if an error occurred.
540 541 542 543 544 545 546 |
# File 'lib/aws-sdk-timestreamquery/types.rb', line 540 class LastUpdate < Struct.new( :target_query_tcu, :status, :status_message) SENSITIVE = [] include Aws::Structure end |
#target_query_tcu ⇒ Integer
The number of TimeStream Compute Units (TCUs) requested in the last account settings update.
540 541 542 543 544 545 546 |
# File 'lib/aws-sdk-timestreamquery/types.rb', line 540 class LastUpdate < Struct.new( :target_query_tcu, :status, :status_message) SENSITIVE = [] include Aws::Structure end |