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 |
You can update an event source mapping. This is useful if you want to change the parameters of the existing mapping without losing your position in the stream. You can change which function will receive the stream records, but to change the stream itself, you must create a new mapping.
This operation requires permission for the 'lambda:UpdateEventSourceMapping' action.
See: AWS API Reference for UpdateEventSourceMapping.
- updateEventSourceMapping :: Text -> UpdateEventSourceMapping
- data UpdateEventSourceMapping
- uesmEnabled :: Lens' UpdateEventSourceMapping (Maybe Bool)
- uesmBatchSize :: Lens' UpdateEventSourceMapping (Maybe Natural)
- uesmFunctionName :: Lens' UpdateEventSourceMapping (Maybe Text)
- uesmUUId :: Lens' UpdateEventSourceMapping Text
- eventSourceMappingConfiguration :: EventSourceMappingConfiguration
- data EventSourceMappingConfiguration
- esmcEventSourceARN :: Lens' EventSourceMappingConfiguration (Maybe Text)
- esmcState :: Lens' EventSourceMappingConfiguration (Maybe Text)
- esmcFunctionARN :: 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)
Creating a Request
updateEventSourceMapping Source
Creates a value of UpdateEventSourceMapping
with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
data UpdateEventSourceMapping Source
See: updateEventSourceMapping
smart constructor.
Request Lenses
uesmEnabled :: Lens' UpdateEventSourceMapping (Maybe Bool) Source
Specifies whether AWS Lambda should actively poll the stream or not. If disabled, AWS Lambda will not poll the stream.
uesmBatchSize :: Lens' UpdateEventSourceMapping (Maybe Natural) Source
The maximum number of stream records that can be sent to your Lambda function for a single invocation.
uesmFunctionName :: Lens' UpdateEventSourceMapping (Maybe Text) Source
The Lambda function to which you want the stream records sent.
You can specify an unqualified function name (for example, "Thumbnail") or you can specify Amazon Resource Name (ARN) of the function (for example, "arn:aws:lambda:us-west-2:account-id:function:ThumbNail"). AWS Lambda also allows you to specify only the account ID qualifier (for example, "account-id:Thumbnail"). Note that the length constraint applies only to the ARN. If you specify only the function name, it is limited to 64 character in length.
uesmUUId :: Lens' UpdateEventSourceMapping Text Source
The event source mapping identifier.
Destructuring the Response
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:
data EventSourceMappingConfiguration Source
Describes mapping between an Amazon Kinesis stream and a Lambda function.
See: eventSourceMappingConfiguration
smart constructor.
Response Lenses
esmcEventSourceARN :: Lens' EventSourceMappingConfiguration (Maybe Text) Source
The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
esmcState :: Lens' EventSourceMappingConfiguration (Maybe Text) Source
The state of the event source mapping. It can be "Creating", "Enabled", "Disabled", "Enabling", "Disabling", "Updating", or "Deleting".
esmcFunctionARN :: Lens' EventSourceMappingConfiguration (Maybe Text) Source
The Lambda function to invoke when AWS Lambda detects an event on the stream.
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.