Class: Aws::CloudWatchLogs::Types::StopQueryRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchLogs::Types::StopQueryRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudwatchlogs/types.rb
Overview
Note:
When making an API call, you may pass StopQueryRequest data as a hash:
{
query_id: "QueryId", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#query_id ⇒ String
The ID number of the query to stop.
Instance Attribute Details
#query_id ⇒ String
The ID number of the query to stop. To find this ID number, use `DescribeQueries`.
2832 2833 2834 2835 2836 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 2832 class StopQueryRequest < Struct.new( :query_id) SENSITIVE = [] include Aws::Structure end |