amazonka-lambda 0.0.6 → 0.0.7
raw patch · 6 files changed
+7/−7 lines, 6 filesdep ~amazonka-corePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: amazonka-core
API changes (from Hackage documentation)
Files
- amazonka-lambda.cabal +2/−2
- gen/Network/AWS/Lambda/AddEventSource.hs +1/−1
- gen/Network/AWS/Lambda/GetEventSource.hs +1/−1
- gen/Network/AWS/Lambda/ListEventSources.hs +1/−1
- gen/Network/AWS/Lambda/ListFunctions.hs +1/−1
- gen/Network/AWS/Lambda/Types.hs +1/−1
amazonka-lambda.cabal view
@@ -1,5 +1,5 @@ name: amazonka-lambda-version: 0.0.6+version: 0.0.7 synopsis: Amazon Lambda SDK. homepage: https://github.com/brendanhay/amazonka license: OtherLicense@@ -59,5 +59,5 @@ other-modules: build-depends:- amazonka-core == 0.0.6.*+ amazonka-core == 0.0.7.* , base >= 4.7 && < 5
gen/Network/AWS/Lambda/AddEventSource.hs view
@@ -255,7 +255,7 @@ <*> o .:? "FunctionName" <*> o .:? "IsActive" <*> o .:? "LastModified"- <*> o .: "Parameters"+ <*> o .:? "Parameters" .!= mempty <*> o .:? "Role" <*> o .:? "Status" <*> o .:? "UUID"
gen/Network/AWS/Lambda/GetEventSource.hs view
@@ -195,7 +195,7 @@ <*> o .:? "FunctionName" <*> o .:? "IsActive" <*> o .:? "LastModified"- <*> o .: "Parameters"+ <*> o .:? "Parameters" .!= mempty <*> o .:? "Role" <*> o .:? "Status" <*> o .:? "UUID"
gen/Network/AWS/Lambda/ListEventSources.hs view
@@ -153,5 +153,5 @@ instance FromJSON ListEventSourcesResponse where parseJSON = withObject "ListEventSourcesResponse" $ \o -> ListEventSourcesResponse- <$> o .: "EventSources"+ <$> o .:? "EventSources" .!= mempty <*> o .:? "NextMarker"
gen/Network/AWS/Lambda/ListFunctions.hs view
@@ -131,5 +131,5 @@ instance FromJSON ListFunctionsResponse where parseJSON = withObject "ListFunctionsResponse" $ \o -> ListFunctionsResponse- <$> o .: "Functions"+ <$> o .:? "Functions" .!= mempty <*> o .:? "NextMarker"
gen/Network/AWS/Lambda/Types.hs view
@@ -426,7 +426,7 @@ <*> o .:? "FunctionName" <*> o .:? "IsActive" <*> o .:? "LastModified"- <*> o .: "Parameters"+ <*> o .:? "Parameters" .!= mempty <*> o .:? "Role" <*> o .:? "Status" <*> o .:? "UUID"