Class: Aws::CloudWatchLogs::Types::ListLogGroupsForQueryRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchLogs::Types::ListLogGroupsForQueryRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudwatchlogs/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
Limits the number of returned log groups to the specified number.
-
#next_token ⇒ String
The token for the next set of items to return.
-
#query_id ⇒ String
The ID of the query to use.
Instance Attribute Details
#max_results ⇒ Integer
Limits the number of returned log groups to the specified number.
3823 3824 3825 3826 3827 3828 3829 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 3823 class ListLogGroupsForQueryRequest < Struct.new( :query_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token for the next set of items to return. The token expires after 24 hours.
3823 3824 3825 3826 3827 3828 3829 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 3823 class ListLogGroupsForQueryRequest < Struct.new( :query_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#query_id ⇒ String
The ID of the query to use. This query ID is from the response to your [StartQuery] operation.
[1]: docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_StartQuery.html
3823 3824 3825 3826 3827 3828 3829 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 3823 class ListLogGroupsForQueryRequest < Struct.new( :query_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |