amazonka-config 0.0.4 → 0.0.5
raw patch · 15 files changed
+30/−2 lines, 15 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-config.cabal +2/−2
- gen/Network/AWS/Config.hs +2/−0
- gen/Network/AWS/Config/DeleteDeliveryChannel.hs +2/−0
- gen/Network/AWS/Config/DeliverConfigSnapshot.hs +2/−0
- gen/Network/AWS/Config/DescribeConfigurationRecorderStatus.hs +2/−0
- gen/Network/AWS/Config/DescribeConfigurationRecorders.hs +2/−0
- gen/Network/AWS/Config/DescribeDeliveryChannelStatus.hs +2/−0
- gen/Network/AWS/Config/DescribeDeliveryChannels.hs +2/−0
- gen/Network/AWS/Config/GetResourceConfigHistory.hs +2/−0
- gen/Network/AWS/Config/PutConfigurationRecorder.hs +2/−0
- gen/Network/AWS/Config/PutDeliveryChannel.hs +2/−0
- gen/Network/AWS/Config/StartConfigurationRecorder.hs +2/−0
- gen/Network/AWS/Config/StopConfigurationRecorder.hs +2/−0
- gen/Network/AWS/Config/Types.hs +2/−0
README.md view
@@ -30,3 +30,5 @@ ## Licence `amazonka-config` 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-config.cabal view
@@ -1,5 +1,5 @@ name: amazonka-config-version: 0.0.4+version: 0.0.5 synopsis: Amazon Config SDK. homepage: https://github.com/brendanhay/amazonka license: OtherLicense@@ -55,5 +55,5 @@ other-modules: build-depends:- amazonka-core == 0.0.4.*+ amazonka-core == 0.0.5.* , base >= 4.7 && < 5
gen/Network/AWS/Config.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 Config is a fully managed service that provides you with an Amazon -- resource inventory, configuration history, and configuration change
gen/Network/AWS/Config/DeleteDeliveryChannel.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 specified delivery channel. --
gen/Network/AWS/Config/DeliverConfigSnapshot.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. -- | Schedules delivery of a configuration snapshot to the Amazon S3 bucket in the -- specified delivery channel. After the delivery has started, AWS Config sends
gen/Network/AWS/Config/DescribeConfigurationRecorderStatus.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 the current status of the specified configuration recorder. If a -- configuration recorder is not specified, this action returns the status of
gen/Network/AWS/Config/DescribeConfigurationRecorders.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 the name of one or more specified configuration recorders. If the -- recorder name is not specified, this action returns the names of all the
gen/Network/AWS/Config/DescribeDeliveryChannelStatus.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 the current status of the specified delivery channel. If a delivery -- channel is not specified, this action returns the current status of all
gen/Network/AWS/Config/DescribeDeliveryChannels.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 details about the specified delivery channel. If a delivery channel -- is not specified, this action returns the details of all delivery channels
gen/Network/AWS/Config/GetResourceConfigHistory.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 a list of configuration items for the specified resource. The list -- contains details about each state of the resource during the specified time
gen/Network/AWS/Config/PutConfigurationRecorder.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 configuration recorder to record the resource configurations. --
gen/Network/AWS/Config/PutDeliveryChannel.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 delivery channel object to deliver the configuration -- information to an Amazon S3 bucket, and to an Amazon SNS topic.
gen/Network/AWS/Config/StartConfigurationRecorder.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. -- | Starts recording configurations of all the resources associated with the -- account.
gen/Network/AWS/Config/StopConfigurationRecorder.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. -- | Stops recording configurations of all the resources associated with the -- account.
gen/Network/AWS/Config/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.Config.Types (