Skip to content

Commit b9a8826

Browse files
committed
change order of default values
1 parent 56a0d5f commit b9a8826

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

Examples/SAM/Deploy.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ DeploymentDescriptor {
1515
"Description of this deployment descriptor"
1616

1717
// a lambda function
18-
Function(name: "HttpApiLambda", architecture: .x64) {
18+
Function(name: "HttpApiLambda") {
1919

2020
EventSources {
2121

@@ -39,7 +39,7 @@ DeploymentDescriptor {
3939
}
4040

4141
// create a Lambda function and its depending resources
42-
Function(name: "SQSLambda") {
42+
Function(name: "SQSLambda", architecture: .arm64) {
4343

4444
EventSources {
4545

Examples/SAM/Makefile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,15 @@ localtest:
2727

2828
list:
2929
sam list endpoints -t sam.yaml --stack-name swift-aws-lambda-runtime-example --output json
30+
31+
logs:
32+
sam logs --stack-name swift-aws-lambda-runtime-example
33+
34+
logstail:
35+
sam logs --stack-name swift-aws-lambda-runtime-example -t
36+
37+
delete:
38+
sam delete --stack-name swift-aws-lambda-runtime-example
3039

3140
clean:
3241
# find . -name .build -exec rm -rf {} \;

0 commit comments

Comments
 (0)