amazonka-lambda 0.2.1 → 0.2.2
raw patch · 13 files changed
+29/−29 lines, 13 filesdep ~amazonka-corePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: amazonka-core
API changes (from Hackage documentation)
+ Network.AWS.Lambda.AddEventSource: instance Read AddEventSource
+ Network.AWS.Lambda.AddEventSource: instance Read AddEventSourceResponse
+ Network.AWS.Lambda.DeleteFunction: instance Read DeleteFunction
+ Network.AWS.Lambda.DeleteFunction: instance Read DeleteFunctionResponse
+ Network.AWS.Lambda.GetEventSource: instance Read GetEventSource
+ Network.AWS.Lambda.GetEventSource: instance Read GetEventSourceResponse
+ Network.AWS.Lambda.GetFunction: instance Read GetFunction
+ Network.AWS.Lambda.GetFunction: instance Read GetFunctionResponse
+ Network.AWS.Lambda.GetFunctionConfiguration: instance Read GetFunctionConfiguration
+ Network.AWS.Lambda.GetFunctionConfiguration: instance Read GetFunctionConfigurationResponse
+ Network.AWS.Lambda.InvokeAsync: instance Read InvokeAsync
+ Network.AWS.Lambda.InvokeAsync: instance Read InvokeAsyncResponse
+ Network.AWS.Lambda.ListEventSources: instance Read ListEventSources
+ Network.AWS.Lambda.ListEventSources: instance Read ListEventSourcesResponse
+ Network.AWS.Lambda.ListFunctions: instance Read ListFunctions
+ Network.AWS.Lambda.ListFunctions: instance Read ListFunctionsResponse
+ Network.AWS.Lambda.RemoveEventSource: instance Read RemoveEventSource
+ Network.AWS.Lambda.RemoveEventSource: instance Read RemoveEventSourceResponse
+ Network.AWS.Lambda.Types: instance Read EventSourceConfiguration
+ Network.AWS.Lambda.Types: instance Read FunctionCodeLocation
+ Network.AWS.Lambda.Types: instance Read FunctionConfiguration
+ Network.AWS.Lambda.Types: instance Read Mode
+ Network.AWS.Lambda.Types: instance Read Runtime
+ Network.AWS.Lambda.UpdateFunctionConfiguration: instance Read UpdateFunctionConfiguration
+ Network.AWS.Lambda.UpdateFunctionConfiguration: instance Read UpdateFunctionConfigurationResponse
+ Network.AWS.Lambda.UploadFunction: instance Read UploadFunction
+ Network.AWS.Lambda.UploadFunction: instance Read UploadFunctionResponse
Files
- amazonka-lambda.cabal +2/−2
- gen/Network/AWS/Lambda/AddEventSource.hs +2/−2
- gen/Network/AWS/Lambda/DeleteFunction.hs +2/−2
- gen/Network/AWS/Lambda/GetEventSource.hs +2/−2
- gen/Network/AWS/Lambda/GetFunction.hs +2/−2
- gen/Network/AWS/Lambda/GetFunctionConfiguration.hs +2/−2
- gen/Network/AWS/Lambda/InvokeAsync.hs +2/−2
- gen/Network/AWS/Lambda/ListEventSources.hs +2/−2
- gen/Network/AWS/Lambda/ListFunctions.hs +2/−2
- gen/Network/AWS/Lambda/RemoveEventSource.hs +2/−2
- gen/Network/AWS/Lambda/Types.hs +5/−5
- gen/Network/AWS/Lambda/UpdateFunctionConfiguration.hs +2/−2
- gen/Network/AWS/Lambda/UploadFunction.hs +2/−2
amazonka-lambda.cabal view
@@ -1,5 +1,5 @@ name: amazonka-lambda-version: 0.2.1+version: 0.2.2 synopsis: Amazon Lambda SDK. homepage: https://github.com/brendanhay/amazonka license: OtherLicense@@ -59,5 +59,5 @@ other-modules: build-depends:- amazonka-core == 0.2.1.*+ amazonka-core == 0.2.2.* , base >= 4.7 && < 5
gen/Network/AWS/Lambda/AddEventSource.hs view
@@ -78,7 +78,7 @@ , _aesFunctionName :: Text , _aesParameters :: Map Text Text , _aesRole :: Text- } deriving (Eq, Show)+ } deriving (Eq, Read, Show) -- | 'AddEventSource' constructor. --@@ -144,7 +144,7 @@ , _aesrRole :: Maybe Text , _aesrStatus :: Maybe Text , _aesrUUID :: Maybe Text- } deriving (Eq, Show)+ } deriving (Eq, Read, Show) -- | 'AddEventSourceResponse' constructor. --
gen/Network/AWS/Lambda/DeleteFunction.hs view
@@ -49,7 +49,7 @@ newtype DeleteFunction = DeleteFunction { _dfFunctionName :: Text- } deriving (Eq, Ord, Show, Monoid, IsString)+ } deriving (Eq, Ord, Read, Show, Monoid, IsString) -- | 'DeleteFunction' constructor. --@@ -68,7 +68,7 @@ dfFunctionName = lens _dfFunctionName (\s a -> s { _dfFunctionName = a }) data DeleteFunctionResponse = DeleteFunctionResponse- deriving (Eq, Ord, Show, Generic)+ deriving (Eq, Ord, Read, Show, Generic) -- | 'DeleteFunctionResponse' constructor. deleteFunctionResponse :: DeleteFunctionResponse
gen/Network/AWS/Lambda/GetEventSource.hs view
@@ -59,7 +59,7 @@ newtype GetEventSource = GetEventSource { _gesUUID :: Text- } deriving (Eq, Ord, Show, Monoid, IsString)+ } deriving (Eq, Ord, Read, Show, Monoid, IsString) -- | 'GetEventSource' constructor. --@@ -87,7 +87,7 @@ , _gesrRole :: Maybe Text , _gesrStatus :: Maybe Text , _gesrUUID :: Maybe Text- } deriving (Eq, Show)+ } deriving (Eq, Read, Show) -- | 'GetEventSourceResponse' constructor. --
gen/Network/AWS/Lambda/GetFunction.hs view
@@ -56,7 +56,7 @@ newtype GetFunction = GetFunction { _gfFunctionName :: Text- } deriving (Eq, Ord, Show, Monoid, IsString)+ } deriving (Eq, Ord, Read, Show, Monoid, IsString) -- | 'GetFunction' constructor. --@@ -77,7 +77,7 @@ data GetFunctionResponse = GetFunctionResponse { _gfrCode :: Maybe FunctionCodeLocation , _gfrConfiguration :: Maybe FunctionConfiguration- } deriving (Eq, Show)+ } deriving (Eq, Read, Show) -- | 'GetFunctionResponse' constructor. --
gen/Network/AWS/Lambda/GetFunctionConfiguration.hs view
@@ -64,7 +64,7 @@ newtype GetFunctionConfiguration = GetFunctionConfiguration { _gfcFunctionName :: Text- } deriving (Eq, Ord, Show, Monoid, IsString)+ } deriving (Eq, Ord, Read, Show, Monoid, IsString) -- | 'GetFunctionConfiguration' constructor. --@@ -96,7 +96,7 @@ , _gfcrRole :: Maybe Text , _gfcrRuntime :: Maybe Runtime , _gfcrTimeout :: Maybe Nat- } deriving (Eq, Show)+ } deriving (Eq, Read, Show) -- | 'GetFunctionConfigurationResponse' constructor. --
gen/Network/AWS/Lambda/InvokeAsync.hs view
@@ -55,7 +55,7 @@ data InvokeAsync = InvokeAsync { _iaFunctionName :: Text , _iaInvokeArgs :: Base64- } deriving (Eq, Show)+ } deriving (Eq, Read, Show) -- | 'InvokeAsync' constructor. --@@ -83,7 +83,7 @@ newtype InvokeAsyncResponse = InvokeAsyncResponse { _iarStatus :: Int- } deriving (Eq, Ord, Show, Enum, Num, Integral, Real)+ } deriving (Eq, Ord, Read, Show, Enum, Num, Integral, Real) -- | 'InvokeAsyncResponse' constructor. --
gen/Network/AWS/Lambda/ListEventSources.hs view
@@ -60,7 +60,7 @@ , _lesFunctionName :: Maybe Text , _lesMarker :: Maybe Text , _lesMaxItems :: Maybe Nat- } deriving (Eq, Ord, Show)+ } deriving (Eq, Ord, Read, Show) -- | 'ListEventSources' constructor. --@@ -104,7 +104,7 @@ data ListEventSourcesResponse = ListEventSourcesResponse { _lesrEventSources :: List "EventSources" EventSourceConfiguration , _lesrNextMarker :: Maybe Text- } deriving (Eq, Show)+ } deriving (Eq, Read, Show) -- | 'ListEventSourcesResponse' constructor. --
gen/Network/AWS/Lambda/ListFunctions.hs view
@@ -56,7 +56,7 @@ data ListFunctions = ListFunctions { _lfMarker :: Maybe Text , _lfMaxItems :: Maybe Nat- } deriving (Eq, Ord, Show)+ } deriving (Eq, Ord, Read, Show) -- | 'ListFunctions' constructor. --@@ -84,7 +84,7 @@ data ListFunctionsResponse = ListFunctionsResponse { _lfrFunctions :: List "Functions" FunctionConfiguration , _lfrNextMarker :: Maybe Text- } deriving (Eq, Show)+ } deriving (Eq, Read, Show) -- | 'ListFunctionsResponse' constructor. --
gen/Network/AWS/Lambda/RemoveEventSource.hs view
@@ -50,7 +50,7 @@ newtype RemoveEventSource = RemoveEventSource { _resUUID :: Text- } deriving (Eq, Ord, Show, Monoid, IsString)+ } deriving (Eq, Ord, Read, Show, Monoid, IsString) -- | 'RemoveEventSource' constructor. --@@ -69,7 +69,7 @@ resUUID = lens _resUUID (\s a -> s { _resUUID = a }) data RemoveEventSourceResponse = RemoveEventSourceResponse- deriving (Eq, Ord, Show, Generic)+ deriving (Eq, Ord, Read, Show, Generic) -- | 'RemoveEventSourceResponse' constructor. removeEventSourceResponse :: RemoveEventSourceResponse
gen/Network/AWS/Lambda/Types.hs view
@@ -119,7 +119,7 @@ data Runtime = Nodejs -- ^ nodejs- deriving (Eq, Ord, Show, Generic, Enum)+ deriving (Eq, Ord, Read, Show, Generic, Enum) instance Hashable Runtime @@ -144,7 +144,7 @@ data Mode = Event -- ^ event- deriving (Eq, Ord, Show, Generic, Enum)+ deriving (Eq, Ord, Read, Show, Generic, Enum) instance Hashable Mode @@ -170,7 +170,7 @@ data FunctionCodeLocation = FunctionCodeLocation { _fclLocation :: Maybe Text , _fclRepositoryType :: Maybe Text- } deriving (Eq, Ord, Show)+ } deriving (Eq, Ord, Read, Show) -- | 'FunctionCodeLocation' constructor. --@@ -220,7 +220,7 @@ , _fcRole :: Maybe Text , _fcRuntime :: Maybe Runtime , _fcTimeout :: Maybe Nat- } deriving (Eq, Show)+ } deriving (Eq, Read, Show) -- | 'FunctionConfiguration' constructor. --@@ -362,7 +362,7 @@ , _escRole :: Maybe Text , _escStatus :: Maybe Text , _escUUID :: Maybe Text- } deriving (Eq, Show)+ } deriving (Eq, Read, Show) -- | 'EventSourceConfiguration' constructor. --
gen/Network/AWS/Lambda/UpdateFunctionConfiguration.hs view
@@ -76,7 +76,7 @@ , _ufcMemorySize :: Maybe Nat , _ufcRole :: Maybe Text , _ufcTimeout :: Maybe Nat- } deriving (Eq, Ord, Show)+ } deriving (Eq, Ord, Read, Show) -- | 'UpdateFunctionConfiguration' constructor. --@@ -151,7 +151,7 @@ , _ufcrRole :: Maybe Text , _ufcrRuntime :: Maybe Runtime , _ufcrTimeout :: Maybe Nat- } deriving (Eq, Show)+ } deriving (Eq, Read, Show) -- | 'UpdateFunctionConfigurationResponse' constructor. --
gen/Network/AWS/Lambda/UploadFunction.hs view
@@ -82,7 +82,7 @@ , _ufRole :: Text , _ufRuntime :: Runtime , _ufTimeout :: Maybe Nat- } deriving (Eq, Show)+ } deriving (Eq, Read, Show) -- | 'UploadFunction' constructor. --@@ -190,7 +190,7 @@ , _ufrRole :: Maybe Text , _ufrRuntime :: Maybe Runtime , _ufrTimeout :: Maybe Nat- } deriving (Eq, Show)+ } deriving (Eq, Read, Show) -- | 'UploadFunctionResponse' constructor. --