This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ApiGateway: | |
| Type: AWS::ApiGateway::RestApi | |
| Properties: | |
| EndpointConfiguration: | |
| Types: | |
| - 'REGIONAL' | |
| Body: | |
| swagger: '2.0' | |
| info: | |
| version: 'v1' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| AWSTemplateFormatVersion: '2010-09-09' | |
| Transform: AWS::Serverless-2016-10-31 | |
| Description: Example template | |
| Resources: | |
| GetOrdersFunction: | |
| Type: AWS::Serverless::Function | |
| Properties: | |
| CodeUri: orderlambda/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| AWSTemplateFormatVersion: '2010-09-09' | |
| Transform: AWS::Serverless-2016-10-31 | |
| Description: AWS SNS topic to SQS Queue Filtered | |
| Resources: | |
| StatsTopic: | |
| Type: AWS::SNS::Topic | |
| StatsPersistQueue: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| AWSTemplateFormatVersion: '2010-09-09' | |
| Transform: AWS::Serverless-2016-10-31 | |
| Description: AWS SNS topic to SQS Queue | |
| Resources: | |
| StatsTopic: | |
| Type: AWS::SNS::Topic | |
| StatsPersistQueue: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| AWSTemplateFormatVersion: '2010-09-09' | |
| Transform: AWS::Serverless-2016-10-31 | |
| Description: AWS Api Gateway to SNS topic | |
| Resources: | |
| StatsApiGateway: | |
| Type: AWS::Serverless::Api | |
| Properties: | |
| StageName: Prod |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| AWSTemplateFormatVersion: '2010-09-09' | |
| Transform: AWS::Serverless-2016-10-31 | |
| Description: Example template | |
| Parameters: | |
| DATABASE_USERNAME: | |
| Description: 'Required. The Database username' | |
| Type: 'AWS::SSM::Parameter::Value<String>' | |
| Default: 'MyDatabaseUsername' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| AWSTemplateFormatVersion: '2010-09-09' | |
| Transform: AWS::Serverless-2016-10-31 | |
| Description: Example template | |
| Parameters: | |
| DATABASE_USERNAME: | |
| Description: 'Required. The Database username' | |
| Type: 'String' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| AWSTemplateFormatVersion: '2010-09-09' | |
| Transform: AWS::Serverless-2016-10-31 | |
| Description: Example template | |
| Resources: | |
| GetOrdersFunction: | |
| Type: AWS::Serverless::Function | |
| Properties: | |
| CodeUri: orderlambda/ |