Skip to content

Commit 77b0c86

Browse files
committed
fix uppercase A
1 parent b41810e commit 77b0c86

File tree

4 files changed

+6
-12
lines changed

4 files changed

+6
-12
lines changed

Examples/APIGateway/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ To actually deploy your Lambda function and create the infrastructure, type the
4242
sam deploy \
4343
--resolve-s3 \
4444
--template-file template.yaml \
45-
--stack-name APIGAtewayLambda \
45+
--stack-name APIGatewayLambda \
4646
--capabilities CAPABILITY_IAM
4747
```
4848

@@ -53,7 +53,7 @@ The output is similar to this one.
5353
-----------------------------------------------------------------------------------------------------------------------------
5454
Outputs
5555
-----------------------------------------------------------------------------------------------------------------------------
56-
Key APIGAtewayEndpoint
56+
Key APIGatewayEndpoint
5757
Description API Gateway endpoint URL"
5858
Value https://a5q74es3k2.execute-api.us-east-1.amazonaws.com
5959
-----------------------------------------------------------------------------------------------------------------------------

Examples/APIGateway/template.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Description: SAM Template for QuoteService
44

55
Resources:
66
# Lambda function
7-
APIGAtewayLambda:
7+
APIGatewayLambda:
88
Type: AWS::Serverless::Function
99
Properties:
1010
CodeUri: .build/plugins/AWSLambdaPackager/outputs/AWSLambdaPackager/APIGatewayLambda/APIGatewayLambda.zip
@@ -26,6 +26,6 @@ Resources:
2626

2727
Outputs:
2828
# print API Gateway endpoint
29-
APIGAtewayEndpoint:
29+
APIGatewayEndpoint:
3030
Description: API Gateway endpoint UR"
3131
Value: !Sub "https://${ServerlessHttpApi}.execute-api.${AWS::Region}.amazonaws.com"

Examples/AWSSDK/README.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
sam deploy \
2-
--resolve-s3 \
3-
--template-file template.yaml \
4-
--stack-name AWSSDKExample \
5-
--capabilities CAPABILITY_IAM
6-
71
# API Gateway
82

93
This is a simple example of an AWS Lambda function that uses the [AWS SDK for Swift](https://github.com/awslabs/aws-sdk-swift) to read data from Amazon S3.
@@ -62,7 +56,7 @@ The output is similar to this one.
6256
-----------------------------------------------------------------------------------------------------------------------------
6357
Outputs
6458
-----------------------------------------------------------------------------------------------------------------------------
65-
Key APIGAtewayEndpoint
59+
Key APIGatewayEndpoint
6660
Description API Gateway endpoint URL"
6761
Value https://a5q74es3k2.execute-api.us-east-1.amazonaws.com
6862
-----------------------------------------------------------------------------------------------------------------------------

Examples/Soto/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ The output is similar to this one.
6262
-----------------------------------------------------------------------------------------------------------------------------
6363
Outputs
6464
-----------------------------------------------------------------------------------------------------------------------------
65-
Key APIGAtewayEndpoint
65+
Key APIGatewayEndpoint
6666
Description API Gateway endpoint URL"
6767
Value https://a5q74es3k2.execute-api.us-east-1.amazonaws.com
6868
-----------------------------------------------------------------------------------------------------------------------------

0 commit comments

Comments
 (0)