amazonka-cloudwatch-logs 0.0.4 → 0.0.5
raw patch · 18 files changed
+36/−2 lines, 18 filesdep ~amazonka-corePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: amazonka-core
API changes (from Hackage documentation)
Files
- README.md +2/−0
- amazonka-cloudwatch-logs.cabal +2/−2
- gen/Network/AWS/CloudWatchLogs.hs +2/−0
- gen/Network/AWS/CloudWatchLogs/CreateLogGroup.hs +2/−0
- gen/Network/AWS/CloudWatchLogs/CreateLogStream.hs +2/−0
- gen/Network/AWS/CloudWatchLogs/DeleteLogGroup.hs +2/−0
- gen/Network/AWS/CloudWatchLogs/DeleteLogStream.hs +2/−0
- gen/Network/AWS/CloudWatchLogs/DeleteMetricFilter.hs +2/−0
- gen/Network/AWS/CloudWatchLogs/DeleteRetentionPolicy.hs +2/−0
- gen/Network/AWS/CloudWatchLogs/DescribeLogGroups.hs +2/−0
- gen/Network/AWS/CloudWatchLogs/DescribeLogStreams.hs +2/−0
- gen/Network/AWS/CloudWatchLogs/DescribeMetricFilters.hs +2/−0
- gen/Network/AWS/CloudWatchLogs/GetLogEvents.hs +2/−0
- gen/Network/AWS/CloudWatchLogs/PutLogEvents.hs +2/−0
- gen/Network/AWS/CloudWatchLogs/PutMetricFilter.hs +2/−0
- gen/Network/AWS/CloudWatchLogs/PutRetentionPolicy.hs +2/−0
- gen/Network/AWS/CloudWatchLogs/TestMetricFilter.hs +2/−0
- gen/Network/AWS/CloudWatchLogs/Types.hs +2/−0
README.md view
@@ -25,3 +25,5 @@ ## Licence `amazonka-cloudwatch-logs` is released under the [Mozilla Public License Version 2.0](http://www.mozilla.org/MPL/).++Parts of the code are derived from AWS service descriptions, licensed under Apache 2.0.
amazonka-cloudwatch-logs.cabal view
@@ -1,5 +1,5 @@ name: amazonka-cloudwatch-logs-version: 0.0.4+version: 0.0.5 synopsis: Amazon CloudWatch Logs SDK. homepage: https://github.com/brendanhay/amazonka license: OtherLicense@@ -53,5 +53,5 @@ other-modules: build-depends:- amazonka-core == 0.0.4.*+ amazonka-core == 0.0.5.* , base >= 4.7 && < 5
gen/Network/AWS/CloudWatchLogs.hs view
@@ -7,6 +7,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Amazon CloudWatch Logs enables you to monitor, store, and access your system, -- application, and custom log files.
gen/Network/AWS/CloudWatchLogs/CreateLogGroup.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Creates a new log group with the specified name. The name of the log group -- must be unique within a region for an AWS account. You can create up to 500
gen/Network/AWS/CloudWatchLogs/CreateLogStream.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Creates a new log stream in the specified log group. The name of the log -- stream must be unique within the log group. There is no limit on the number
gen/Network/AWS/CloudWatchLogs/DeleteLogGroup.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Deletes the log group with the specified name and permanently deletes all -- the archived log events associated with it.
gen/Network/AWS/CloudWatchLogs/DeleteLogStream.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Deletes a log stream and permanently deletes all the archived log events -- associated with it.
gen/Network/AWS/CloudWatchLogs/DeleteMetricFilter.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Deletes a metric filter associated with the specified log group. --
gen/Network/AWS/CloudWatchLogs/DeleteRetentionPolicy.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Deletes the retention policy of the specified log group. Log events would -- not expire if they belong to log groups without a retention policy.
gen/Network/AWS/CloudWatchLogs/DescribeLogGroups.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | 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
gen/Network/AWS/CloudWatchLogs/DescribeLogStreams.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Returns all the log streams that are associated with the specified log -- group. The list returned in the response is ASCII-sorted by log stream name.
gen/Network/AWS/CloudWatchLogs/DescribeMetricFilters.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Returns all the metrics filters associated with the specified log group. The -- list returned in the response is ASCII-sorted by filter name.
gen/Network/AWS/CloudWatchLogs/GetLogEvents.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Retrieves log events from the specified log stream. You can provide an -- optional time range to filter the results on the event 'timestamp'.
gen/Network/AWS/CloudWatchLogs/PutLogEvents.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Uploads a batch of log events to the specified log stream. --
gen/Network/AWS/CloudWatchLogs/PutMetricFilter.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Creates or updates a metric filter and associates it with the specified log -- group. Metric filters allow you to configure rules to extract metric data
gen/Network/AWS/CloudWatchLogs/PutRetentionPolicy.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Sets the retention of the specified log group. A retention policy allows you -- to configure the number of days you want to retain log events in the
gen/Network/AWS/CloudWatchLogs/TestMetricFilter.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Tests the filter pattern of a metric filter against a sample of log event -- messages. You can use this operation to validate the correctness of a metric
gen/Network/AWS/CloudWatchLogs/Types.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. module Network.AWS.CloudWatchLogs.Types (