amazonka-config 0.0.6 → 0.0.7
raw patch · 7 files changed
+10/−10 lines, 7 filesdep ~amazonka-corePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: amazonka-core
API changes (from Hackage documentation)
Files
- amazonka-config.cabal +2/−2
- gen/Network/AWS/Config/DescribeConfigurationRecorderStatus.hs +1/−1
- gen/Network/AWS/Config/DescribeConfigurationRecorders.hs +1/−1
- gen/Network/AWS/Config/DescribeDeliveryChannelStatus.hs +1/−1
- gen/Network/AWS/Config/DescribeDeliveryChannels.hs +1/−1
- gen/Network/AWS/Config/GetResourceConfigHistory.hs +1/−1
- gen/Network/AWS/Config/Types.hs +3/−3
amazonka-config.cabal view
@@ -1,5 +1,5 @@ name: amazonka-config-version: 0.0.6+version: 0.0.7 synopsis: Amazon Config SDK. homepage: https://github.com/brendanhay/amazonka license: OtherLicense@@ -55,5 +55,5 @@ other-modules: build-depends:- amazonka-core == 0.0.6.*+ amazonka-core == 0.0.7.* , base >= 4.7 && < 5
gen/Network/AWS/Config/DescribeConfigurationRecorderStatus.hs view
@@ -129,4 +129,4 @@ instance FromJSON DescribeConfigurationRecorderStatusResponse where parseJSON = withObject "DescribeConfigurationRecorderStatusResponse" $ \o -> DescribeConfigurationRecorderStatusResponse- <$> o .: "ConfigurationRecordersStatus"+ <$> o .:? "ConfigurationRecordersStatus" .!= mempty
gen/Network/AWS/Config/DescribeConfigurationRecorders.hs view
@@ -128,4 +128,4 @@ instance FromJSON DescribeConfigurationRecordersResponse where parseJSON = withObject "DescribeConfigurationRecordersResponse" $ \o -> DescribeConfigurationRecordersResponse- <$> o .: "ConfigurationRecorders"+ <$> o .:? "ConfigurationRecorders" .!= mempty
gen/Network/AWS/Config/DescribeDeliveryChannelStatus.hs view
@@ -127,4 +127,4 @@ instance FromJSON DescribeDeliveryChannelStatusResponse where parseJSON = withObject "DescribeDeliveryChannelStatusResponse" $ \o -> DescribeDeliveryChannelStatusResponse- <$> o .: "DeliveryChannelsStatus"+ <$> o .:? "DeliveryChannelsStatus" .!= mempty
gen/Network/AWS/Config/DescribeDeliveryChannels.hs view
@@ -125,4 +125,4 @@ instance FromJSON DescribeDeliveryChannelsResponse where parseJSON = withObject "DescribeDeliveryChannelsResponse" $ \o -> DescribeDeliveryChannelsResponse- <$> o .: "DeliveryChannels"+ <$> o .:? "DeliveryChannels" .!= mempty
gen/Network/AWS/Config/GetResourceConfigHistory.hs view
@@ -190,5 +190,5 @@ instance FromJSON GetResourceConfigHistoryResponse where parseJSON = withObject "GetResourceConfigHistoryResponse" $ \o -> GetResourceConfigHistoryResponse- <$> o .: "configurationItems"+ <$> o .:? "configurationItems" .!= mempty <*> o .:? "nextToken"
gen/Network/AWS/Config/Types.hs view
@@ -650,12 +650,12 @@ <*> o .:? "configurationItemMD5Hash" <*> o .:? "configurationItemStatus" <*> o .:? "configurationStateId"- <*> o .: "relatedEvents"- <*> o .: "relationships"+ <*> o .:? "relatedEvents" .!= mempty+ <*> o .:? "relationships" .!= mempty <*> o .:? "resourceCreationTime" <*> o .:? "resourceId" <*> o .:? "resourceType"- <*> o .: "tags"+ <*> o .:? "tags" .!= mempty <*> o .:? "version" instance ToJSON ConfigurationItem where