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`.
2770 2771 2772 2773 2774 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 2770 class StopQueryRequest < Struct.new( :query_id) SENSITIVE = [] include Aws::Structure end |