Class: Aws::CloudWatchLogs::Types::DescribeQueriesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchLogs::Types::DescribeQueriesRequest
- Defined in:
- gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#log_group_name ⇒ String
Limits the returned queries to only those for the specified log group.
-
#max_results ⇒ Integer
Limits the number of returned queries to the specified number.
-
#next_token ⇒ String
The token for the next set of items to return.
-
#query_language ⇒ String
Limits the returned queries to only the queries that use the specified query language.
-
#status ⇒ String
Limits the returned queries to only those that have the specified status.
Instance Attribute Details
#log_group_name ⇒ String
Limits the returned queries to only those for the specified log group.
2288 2289 2290 2291 2292 2293 2294 2295 2296 |
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 2288 class DescribeQueriesRequest < Struct.new( :log_group_name, :status, :max_results, :next_token, :query_language) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
Limits the number of returned queries to the specified number.
2288 2289 2290 2291 2292 2293 2294 2295 2296 |
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 2288 class DescribeQueriesRequest < Struct.new( :log_group_name, :status, :max_results, :next_token, :query_language) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token for the next set of items to return. The token expires after 24 hours.
2288 2289 2290 2291 2292 2293 2294 2295 2296 |
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 2288 class DescribeQueriesRequest < Struct.new( :log_group_name, :status, :max_results, :next_token, :query_language) SENSITIVE = [] include Aws::Structure end |
#query_language ⇒ String
Limits the returned queries to only the queries that use the specified query language.
2288 2289 2290 2291 2292 2293 2294 2295 2296 |
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 2288 class DescribeQueriesRequest < Struct.new( :log_group_name, :status, :max_results, :next_token, :query_language) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
Limits the returned queries to only those that have the specified
status. Valid values are Cancelled
, Complete
, Failed
,
Running
, and Scheduled
.
2288 2289 2290 2291 2292 2293 2294 2295 2296 |
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 2288 class DescribeQueriesRequest < Struct.new( :log_group_name, :status, :max_results, :next_token, :query_language) SENSITIVE = [] include Aws::Structure end |