AWS SAM Regional API Gateways

The AWS Serverless Application Model (SAM) now supports REGIONAL API Gateways, just add EndpointConfiguration: ‘REGIONAL’ to your AWS::Serverless::Api object:

ApiGateway:
  Type: AWS::Serverless::Api
    Properties:
      DefinitionUri: apigateway.yaml
      StageName: api
      EndpointConfiguration: 'REGIONAL'

This is currently an undocumented feature but in my testing is works fine.

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s