Copyright | (c) 2013-2015 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Language | Haskell2010 |
- data Lambda
- _PolicyLengthExceededException :: AsError a => Getting (First ServiceError) a ServiceError
- _UnsupportedMediaTypeException :: AsError a => Getting (First ServiceError) a ServiceError
- _InvalidRequestContentException :: AsError a => Getting (First ServiceError) a ServiceError
- _InvalidParameterValueException :: AsError a => Getting (First ServiceError) a ServiceError
- _RequestTooLargeException :: AsError a => Getting (First ServiceError) a ServiceError
- _TooManyRequestsException :: AsError a => Getting (First ServiceError) a ServiceError
- _ServiceException :: AsError a => Getting (First ServiceError) a ServiceError
- _CodeStorageExceededException :: AsError a => Getting (First ServiceError) a ServiceError
- _ResourceConflictException :: AsError a => Getting (First ServiceError) a ServiceError
- _ResourceNotFoundException :: AsError a => Getting (First ServiceError) a ServiceError
- data EventSourcePosition
- data InvocationType
- data LogType
- data Runtime
- data EventSourceMappingConfiguration
- eventSourceMappingConfiguration :: EventSourceMappingConfiguration
- esmcEventSourceARN :: Lens' EventSourceMappingConfiguration (Maybe Text)
- esmcFunctionARN :: Lens' EventSourceMappingConfiguration (Maybe Text)
- esmcState :: Lens' EventSourceMappingConfiguration (Maybe Text)
- esmcUUId :: Lens' EventSourceMappingConfiguration (Maybe Text)
- esmcLastProcessingResult :: Lens' EventSourceMappingConfiguration (Maybe Text)
- esmcBatchSize :: Lens' EventSourceMappingConfiguration (Maybe Natural)
- esmcStateTransitionReason :: Lens' EventSourceMappingConfiguration (Maybe Text)
- esmcLastModified :: Lens' EventSourceMappingConfiguration (Maybe UTCTime)
- data FunctionCode
- functionCode :: FunctionCode
- fcS3ObjectVersion :: Lens' FunctionCode (Maybe Text)
- fcS3Key :: Lens' FunctionCode (Maybe Text)
- fcZipFile :: Lens' FunctionCode (Maybe ByteString)
- fcS3Bucket :: Lens' FunctionCode (Maybe Text)
- data FunctionCodeLocation
- functionCodeLocation :: FunctionCodeLocation
- fclLocation :: Lens' FunctionCodeLocation (Maybe Text)
- fclRepositoryType :: Lens' FunctionCodeLocation (Maybe Text)
- data FunctionConfiguration
- functionConfiguration :: FunctionConfiguration
- fcRuntime :: Lens' FunctionConfiguration (Maybe Runtime)
- fcMemorySize :: Lens' FunctionConfiguration (Maybe Natural)
- fcFunctionARN :: Lens' FunctionConfiguration (Maybe Text)
- fcRole :: Lens' FunctionConfiguration (Maybe Text)
- fcFunctionName :: Lens' FunctionConfiguration (Maybe Text)
- fcCodeSize :: Lens' FunctionConfiguration (Maybe Integer)
- fcHandler :: Lens' FunctionConfiguration (Maybe Text)
- fcTimeout :: Lens' FunctionConfiguration (Maybe Natural)
- fcLastModified :: Lens' FunctionConfiguration (Maybe Text)
- fcDescription :: Lens' FunctionConfiguration (Maybe Text)
Service
Errors
_PolicyLengthExceededException :: AsError a => Getting (First ServiceError) a ServiceError Source
Lambda function access policy is limited to 20 KB.
_UnsupportedMediaTypeException :: AsError a => Getting (First ServiceError) a ServiceError Source
Prism for UnsupportedMediaTypeException' errors.
_InvalidRequestContentException :: AsError a => Getting (First ServiceError) a ServiceError Source
The request body could not be parsed as JSON.
_InvalidParameterValueException :: AsError a => Getting (First ServiceError) a ServiceError Source
One of the parameters in the request is invalid. For example, if you
provided an IAM role for AWS Lambda to assume in the CreateFunction
or
the UpdateFunctionConfiguration
API, that AWS Lambda is unable to
assume you will get this exception.
_RequestTooLargeException :: AsError a => Getting (First ServiceError) a ServiceError Source
Prism for RequestTooLargeException' errors.
_TooManyRequestsException :: AsError a => Getting (First ServiceError) a ServiceError Source
Prism for TooManyRequestsException' errors.
_ServiceException :: AsError a => Getting (First ServiceError) a ServiceError Source
The AWS Lambda service encountered an internal error.
_CodeStorageExceededException :: AsError a => Getting (First ServiceError) a ServiceError Source
Prism for CodeStorageExceededException' errors.
_ResourceConflictException :: AsError a => Getting (First ServiceError) a ServiceError Source
The resource already exists.
_ResourceNotFoundException :: AsError a => Getting (First ServiceError) a ServiceError Source
The resource (for example, a Lambda function or access policy statement) specified in the request does not exist.
EventSourcePosition
data EventSourcePosition Source
InvocationType
data InvocationType Source
LogType
Runtime
EventSourceMappingConfiguration
data EventSourceMappingConfiguration Source
Describes mapping between an Amazon Kinesis stream and a Lambda function.
See: eventSourceMappingConfiguration
smart constructor.
eventSourceMappingConfiguration :: EventSourceMappingConfiguration Source
Creates a value of EventSourceMappingConfiguration
with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
esmcEventSourceARN :: Lens' EventSourceMappingConfiguration (Maybe Text) Source
The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
esmcFunctionARN :: Lens' EventSourceMappingConfiguration (Maybe Text) Source
The Lambda function to invoke when AWS Lambda detects an event on the stream.
esmcState :: Lens' EventSourceMappingConfiguration (Maybe Text) Source
The state of the event source mapping. It can be "Creating", "Enabled", "Disabled", "Enabling", "Disabling", "Updating", or "Deleting".
esmcUUId :: Lens' EventSourceMappingConfiguration (Maybe Text) Source
The AWS Lambda assigned opaque identifier for the mapping.
esmcLastProcessingResult :: Lens' EventSourceMappingConfiguration (Maybe Text) Source
The result of the last AWS Lambda invocation of your Lambda function.
esmcBatchSize :: Lens' EventSourceMappingConfiguration (Maybe Natural) Source
The largest number of records that AWS Lambda will retrieve from your event source at the time of invoking your function. Your function receives an event with all the retrieved records.
esmcStateTransitionReason :: Lens' EventSourceMappingConfiguration (Maybe Text) Source
The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
esmcLastModified :: Lens' EventSourceMappingConfiguration (Maybe UTCTime) Source
The UTC time string indicating the last time the event mapping was updated.
FunctionCode
data FunctionCode Source
The code for the Lambda function.
See: functionCode
smart constructor.
functionCode :: FunctionCode Source
Creates a value of FunctionCode
with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
fcS3ObjectVersion :: Lens' FunctionCode (Maybe Text) Source
The Amazon S3 object (the deployment package) version you want to upload.
fcS3Key :: Lens' FunctionCode (Maybe Text) Source
The Amazon S3 object (the deployment package) key name you want to upload.
fcZipFile :: Lens' FunctionCode (Maybe ByteString) Source
A base64-encoded .zip file containing your deployment package. For more information about creating a .zip file, go to Execution Permissions in the AWS Lambda Developer Guide.
fcS3Bucket :: Lens' FunctionCode (Maybe Text) Source
Amazon S3 bucket name where the .zip file containing your deployment package is stored. This bucket must reside in the same AWS region where you are creating the Lambda function.
FunctionCodeLocation
data FunctionCodeLocation Source
The object for the Lambda function location.
See: functionCodeLocation
smart constructor.
functionCodeLocation :: FunctionCodeLocation Source
Creates a value of FunctionCodeLocation
with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
fclLocation :: Lens' FunctionCodeLocation (Maybe Text) Source
The presigned URL you can use to download the function's .zip file that you previously uploaded. The URL is valid for up to 10 minutes.
fclRepositoryType :: Lens' FunctionCodeLocation (Maybe Text) Source
The repository from which you can download the function.
FunctionConfiguration
data FunctionConfiguration Source
A complex type that describes function metadata.
See: functionConfiguration
smart constructor.
functionConfiguration :: FunctionConfiguration Source
Creates a value of FunctionConfiguration
with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
fcRuntime :: Lens' FunctionConfiguration (Maybe Runtime) Source
The runtime environment for the Lambda function.
fcMemorySize :: Lens' FunctionConfiguration (Maybe Natural) Source
The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
fcFunctionARN :: Lens' FunctionConfiguration (Maybe Text) Source
The Amazon Resource Name (ARN) assigned to the function.
fcRole :: Lens' FunctionConfiguration (Maybe Text) Source
The Amazon Resource Name (ARN) of the IAM role that Lambda assumes when it executes your function to access any other Amazon Web Services (AWS) resources.
fcFunctionName :: Lens' FunctionConfiguration (Maybe Text) Source
The name of the function.
fcCodeSize :: Lens' FunctionConfiguration (Maybe Integer) Source
The size, in bytes, of the function .zip file you uploaded.
fcHandler :: Lens' FunctionConfiguration (Maybe Text) Source
The function Lambda calls to begin executing your function.
fcTimeout :: Lens' FunctionConfiguration (Maybe Natural) Source
The function execution time at which Lambda should terminate the function. Because the execution time has cost implications, we recommend you set this value based on your expected execution time. The default is 3 seconds.
fcLastModified :: Lens' FunctionConfiguration (Maybe Text) Source
The timestamp of the last time you updated the function.
fcDescription :: Lens' FunctionConfiguration (Maybe Text) Source
The user-provided description.