aws cli get lambda uuid

Solutions on MaxInterview for aws cli get lambda uuid by the best coders in the world

showing results for - "aws cli get lambda uuid"
Emmanuel
17 Jun 2019
1{
2    "EventSourceMappings": [
3        {
4            "UUID": "a1b2c3d4-5678-90ab-cdef-11111EXAMPLE",
5            "StateTransitionReason": "USER_INITIATED",
6            "LastModified": 1569284520.333,
7            "BatchSize": 5,
8            "State": "Enabled",
9            "FunctionArn": "arn:aws:lambda:us-west-2:123456789012:function:my-function",
10            "EventSourceArn": "arn:aws:sqs:us-west-2:123456789012:mySQSqueue"
11        }
12    ]
13}
14
Matthew
06 Jul 2017
1aws lambda list-event-source-mappings \
2    --function-name my-function