Skip to content
View me2resh's full-sized avatar
🐪
🐪

Block or report me2resh

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
me2resh/README.md

Hello!

I am a software craftsman, tech lead, architect and relentless pursuer of value and quality.

Anurag's GitHub stats

Metrics

Followers

Stars

Pinned Loading

  1. How to use lambda provisioned concur... How to use lambda provisioned concurrency in aws sam
    1
    Parameters:
    2
     FnName:
    3
     Type: String
    4
     ProvisionedConcurrency:
    5
     Type: String
  2. How to pre-sign AWS API gateway requ... How to pre-sign AWS API gateway requests invoking lambdas
    1
    <?php
    2
    use Aws\Credentials\Credentials;
    3
    use GuzzleHttp\Psr7\Request;
    4
    use Aws\Signature\SignatureV4;
    5
    use Aws\Sts\StsClient;
  3. SAM Template for creating API Gatewa... SAM Template for creating API Gateway with AWS_IAM authorizer
    1
    AWSTemplateFormatVersion: '2010-09-09'
    2
    Transform: AWS::Serverless-2016-10-31
    3
    Description: >
    4
     
    5
     go-sam-bootstrap
  4. Attach Event to a bucket in a differ... Attach Event to a bucket in a different stack, Sometimes you need to attach an event to a bucket that don't exist in your project stack, You can run this shell script to achieve that
    1
    #!/bin/bash
    2
     
    3
    # Get function ARN from stack
    4
    FUNCNAME="MyFunctionName"
    5
    FUNCARN=$(aws cloudformation describe-stacks \
  5. Replace multiple substrings in a str... Replace multiple substrings in a string using reducer
    1
    const originalString = "I would love to eat apple and banana."
    2
     
    3
    const wordsMap = {
    4
     'apple' : "mango", 
    5
     'banana' : "grapes",