| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Network.AWS.CloudWatchLogs.DescribeLogGroups
Description
Returns all the log groups that are associated with the AWS account making the request. The list returned in the response is ASCII-sorted by log group name.
By default, this operation returns up to 50 log groups. If there are more
log groups to list, the response would contain a nextToken value in the
response body. You can also limit the number of log groups returned in the
response by specifying the limit parameter in the request.
http://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeLogGroups.html
- data DescribeLogGroups
- describeLogGroups :: DescribeLogGroups
- dlgLimit :: Lens' DescribeLogGroups (Maybe Natural)
- dlgLogGroupNamePrefix :: Lens' DescribeLogGroups (Maybe Text)
- dlgNextToken :: Lens' DescribeLogGroups (Maybe Text)
- data DescribeLogGroupsResponse
- describeLogGroupsResponse :: DescribeLogGroupsResponse
- dlgrLogGroups :: Lens' DescribeLogGroupsResponse [LogGroup]
- dlgrNextToken :: Lens' DescribeLogGroupsResponse (Maybe Text)
Request
data DescribeLogGroups Source
Instances
| Eq DescribeLogGroups | |
| Ord DescribeLogGroups | |
| Read DescribeLogGroups | |
| Show DescribeLogGroups | |
| ToJSON DescribeLogGroups | |
| AWSRequest DescribeLogGroups | |
| ToQuery DescribeLogGroups | |
| ToPath DescribeLogGroups | |
| ToHeaders DescribeLogGroups | |
| type Sv DescribeLogGroups = CloudWatchLogs | |
| type Rs DescribeLogGroups = DescribeLogGroupsResponse |
Request constructor
describeLogGroups :: DescribeLogGroups Source
DescribeLogGroups constructor.
The fields accessible through corresponding lenses are:
Request lenses
dlgLimit :: Lens' DescribeLogGroups (Maybe Natural) Source
The maximum number of items returned in the response. If you don't specify a value, the request would return up to 50 items.
dlgNextToken :: Lens' DescribeLogGroups (Maybe Text) Source
A string token used for pagination that points to the next page of results.
It must be a value obtained from the response of the previous DescribeLogGroups request.
Response
Response constructor
describeLogGroupsResponse :: DescribeLogGroupsResponse Source
DescribeLogGroupsResponse constructor.
The fields accessible through corresponding lenses are:
dlgrLogGroups::[LogGroup]dlgrNextToken::MaybeText