Skip to content
View me2resh's full-sized avatar
🐪
🐪
  • London, UK

Block or report me2resh

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
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

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",
  6. healthbridgeltd/golang-sam-bootstrap healthbridgeltd/golang-sam-bootstrap Public template

    Cloneable bootstrap for AWS SAM and Golang setup

    Go 14