{-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-duplicate-exports #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Network.AWS.Lambda -- Copyright : (c) 2013-2018 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- __AWS Lambda__ -- -- __Overview__ -- -- This is the /AWS Lambda API Reference/ . The AWS Lambda Developer Guide provides additional information. For the service overview, see , and for information about how the service works, see in the __AWS Lambda Developer Guide__ . -- module Network.AWS.Lambda ( -- * Service Configuration lambda -- * Errors -- $errors -- ** KMSInvalidStateException , _KMSInvalidStateException -- ** EC2ThrottledException , _EC2ThrottledException -- ** InvalidRuntimeException , _InvalidRuntimeException -- ** PolicyLengthExceededException , _PolicyLengthExceededException -- ** PreconditionFailedException , _PreconditionFailedException -- ** EC2AccessDeniedException , _EC2AccessDeniedException -- ** InvalidSubnetIdException , _InvalidSubnetIdException -- ** UnsupportedMediaTypeException , _UnsupportedMediaTypeException -- ** InvalidRequestContentException , _InvalidRequestContentException -- ** KMSNotFoundException , _KMSNotFoundException -- ** ENILimitReachedException , _ENILimitReachedException -- ** InvalidParameterValueException , _InvalidParameterValueException -- ** RequestTooLargeException , _RequestTooLargeException -- ** TooManyRequestsException , _TooManyRequestsException -- ** InvalidSecurityGroupIdException , _InvalidSecurityGroupIdException -- ** KMSDisabledException , _KMSDisabledException -- ** SubnetIPAddressLimitReachedException , _SubnetIPAddressLimitReachedException -- ** ServiceException , _ServiceException -- ** CodeStorageExceededException , _CodeStorageExceededException -- ** InvalidZipFileException , _InvalidZipFileException -- ** ResourceConflictException , _ResourceConflictException -- ** EC2UnexpectedException , _EC2UnexpectedException -- ** ResourceNotFoundException , _ResourceNotFoundException -- ** KMSAccessDeniedException , _KMSAccessDeniedException -- * Waiters -- $waiters -- * Operations -- $operations -- ** GetFunctionConfiguration , module Network.AWS.Lambda.GetFunctionConfiguration -- ** DeleteEventSourceMapping , module Network.AWS.Lambda.DeleteEventSourceMapping -- ** UpdateEventSourceMapping , module Network.AWS.Lambda.UpdateEventSourceMapping -- ** CreateAlias , module Network.AWS.Lambda.CreateAlias -- ** ListVersionsByFunction , module Network.AWS.Lambda.ListVersionsByFunction -- ** ListAliases (Paginated) , module Network.AWS.Lambda.ListAliases -- ** RemovePermission , module Network.AWS.Lambda.RemovePermission -- ** Invoke , module Network.AWS.Lambda.Invoke -- ** GetAlias , module Network.AWS.Lambda.GetAlias -- ** GetEventSourceMapping , module Network.AWS.Lambda.GetEventSourceMapping -- ** PutFunctionConcurrency , module Network.AWS.Lambda.PutFunctionConcurrency -- ** CreateFunction , module Network.AWS.Lambda.CreateFunction -- ** DeleteFunctionConcurrency , module Network.AWS.Lambda.DeleteFunctionConcurrency -- ** CreateEventSourceMapping , module Network.AWS.Lambda.CreateEventSourceMapping -- ** GetFunction , module Network.AWS.Lambda.GetFunction -- ** ListEventSourceMappings (Paginated) , module Network.AWS.Lambda.ListEventSourceMappings -- ** DeleteAlias , module Network.AWS.Lambda.DeleteAlias -- ** UpdateAlias , module Network.AWS.Lambda.UpdateAlias -- ** GetAccountSettings , module Network.AWS.Lambda.GetAccountSettings -- ** AddPermission , module Network.AWS.Lambda.AddPermission -- ** TagResource , module Network.AWS.Lambda.TagResource -- ** PublishVersion , module Network.AWS.Lambda.PublishVersion -- ** ListTags , module Network.AWS.Lambda.ListTags -- ** DeleteFunction , module Network.AWS.Lambda.DeleteFunction -- ** UntagResource , module Network.AWS.Lambda.UntagResource -- ** UpdateFunctionConfiguration , module Network.AWS.Lambda.UpdateFunctionConfiguration -- ** ListFunctions (Paginated) , module Network.AWS.Lambda.ListFunctions -- ** UpdateFunctionCode , module Network.AWS.Lambda.UpdateFunctionCode -- ** GetPolicy , module Network.AWS.Lambda.GetPolicy -- * Types -- ** EventSourcePosition , EventSourcePosition (..) -- ** FunctionVersion , FunctionVersion (..) -- ** InvocationType , InvocationType (..) -- ** LogType , LogType (..) -- ** Runtime , Runtime (..) -- ** TracingMode , TracingMode (..) -- ** AccountLimit , AccountLimit , accountLimit , alConcurrentExecutions , alTotalCodeSize , alUnreservedConcurrentExecutions , alCodeSizeUnzipped , alCodeSizeZipped -- ** AccountUsage , AccountUsage , accountUsage , auTotalCodeSize , auFunctionCount -- ** AliasConfiguration , AliasConfiguration , aliasConfiguration , acRoutingConfig , acName , acFunctionVersion , acAliasARN , acDescription , acRevisionId -- ** AliasRoutingConfiguration , AliasRoutingConfiguration , aliasRoutingConfiguration , arcAdditionalVersionWeights -- ** Concurrency , Concurrency , concurrency , cReservedConcurrentExecutions -- ** DeadLetterConfig , DeadLetterConfig , deadLetterConfig , dlcTargetARN -- ** Environment , Environment , environment , eVariables -- ** EnvironmentError , EnvironmentError , environmentError , eeErrorCode , eeMessage -- ** EnvironmentResponse , EnvironmentResponse , environmentResponse , envVariables , envError -- ** EventSourceMappingConfiguration , EventSourceMappingConfiguration , eventSourceMappingConfiguration , esmcEventSourceARN , esmcState , esmcFunctionARN , esmcUUId , esmcLastProcessingResult , esmcBatchSize , esmcStateTransitionReason , esmcLastModified -- ** FunctionCode , FunctionCode , functionCode , fcS3ObjectVersion , fcS3Key , fcZipFile , fcS3Bucket -- ** FunctionCodeLocation , FunctionCodeLocation , functionCodeLocation , fclLocation , fclRepositoryType -- ** FunctionConfiguration , FunctionConfiguration , functionConfiguration , fcMemorySize , fcRuntime , fcFunctionARN , fcKMSKeyARN , fcEnvironment , fcDeadLetterConfig , fcRole , fcVPCConfig , fcVersion , fcFunctionName , fcCodeSize , fcHandler , fcTimeout , fcLastModified , fcCodeSha256 , fcTracingConfig , fcDescription , fcRevisionId , fcMasterARN -- ** TracingConfig , TracingConfig , tracingConfig , tMode -- ** TracingConfigResponse , TracingConfigResponse , tracingConfigResponse , tcMode -- ** VPCConfig , VPCConfig , vpcConfig , vpccSecurityGroupIds , vpccSubnetIds -- ** VPCConfigResponse , VPCConfigResponse , vpcConfigResponse , vcSecurityGroupIds , vcSubnetIds , vcVPCId ) where import Network.AWS.Lambda.AddPermission import Network.AWS.Lambda.CreateAlias import Network.AWS.Lambda.CreateEventSourceMapping import Network.AWS.Lambda.CreateFunction import Network.AWS.Lambda.DeleteAlias import Network.AWS.Lambda.DeleteEventSourceMapping import Network.AWS.Lambda.DeleteFunction import Network.AWS.Lambda.DeleteFunctionConcurrency import Network.AWS.Lambda.GetAccountSettings import Network.AWS.Lambda.GetAlias import Network.AWS.Lambda.GetEventSourceMapping import Network.AWS.Lambda.GetFunction import Network.AWS.Lambda.GetFunctionConfiguration import Network.AWS.Lambda.GetPolicy import Network.AWS.Lambda.Invoke import Network.AWS.Lambda.ListAliases import Network.AWS.Lambda.ListEventSourceMappings import Network.AWS.Lambda.ListFunctions import Network.AWS.Lambda.ListTags import Network.AWS.Lambda.ListVersionsByFunction import Network.AWS.Lambda.PublishVersion import Network.AWS.Lambda.PutFunctionConcurrency import Network.AWS.Lambda.RemovePermission import Network.AWS.Lambda.TagResource import Network.AWS.Lambda.Types import Network.AWS.Lambda.UntagResource import Network.AWS.Lambda.UpdateAlias import Network.AWS.Lambda.UpdateEventSourceMapping import Network.AWS.Lambda.UpdateFunctionCode import Network.AWS.Lambda.UpdateFunctionConfiguration import Network.AWS.Lambda.Waiters {- $errors Error matchers are designed for use with the functions provided by . This allows catching (and rethrowing) service specific errors returned by 'Lambda'. -} {- $operations Some AWS operations return results that are incomplete and require subsequent requests in order to obtain the entire result set. The process of sending subsequent requests to continue where a previous request left off is called pagination. For example, the 'ListObjects' operation of Amazon S3 returns up to 1000 objects at a time, and you must send subsequent requests with the appropriate Marker in order to retrieve the next page of results. Operations that have an 'AWSPager' instance can transparently perform subsequent requests, correctly setting Markers and other request facets to iterate through the entire result set of a truncated API operation. Operations which support this have an additional note in the documentation. Many operations have the ability to filter results on the server side. See the individual operation parameters for details. -} {- $waiters Waiters poll by repeatedly sending a request until some remote success condition configured by the 'Wait' specification is fulfilled. The 'Wait' specification determines how many attempts should be made, in addition to delay and retry strategies. -}