Skip to content

Commit 4850158

Browse files
committed
Fix terminology glitch
Correct "Amazon S3 Region" to just "Amazon Region" in all SNS examples.
1 parent 9accadd commit 4850158

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

swift/example_code/sns/CreateTopic/Sources/entry.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import Foundation
1212
struct ExampleCommand: ParsableCommand {
1313
@Argument(help: "Name to give the new Amazon SNS topic")
1414
var name: String
15-
@Option(help: "Name of the Amazon S3 Region to use (default: us-east-1)")
15+
@Option(help: "Name of the Amazon Region to use (default: us-east-1)")
1616
var region = "us-east-1"
1717

1818
static var configuration = CommandConfiguration(

swift/example_code/sns/DeleteTopic/Sources/entry.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import Foundation
1212
struct ExampleCommand: ParsableCommand {
1313
@Argument(help: "The ARN of the Amazon SNS topic to delete")
1414
var arn: String
15-
@Option(help: "Name of the Amazon S3 Region to use (default: us-east-1)")
15+
@Option(help: "Name of the Amazon Region to use (default: us-east-1)")
1616
var region = "us-east-1"
1717

1818
static var configuration = CommandConfiguration(

swift/example_code/sns/Publish/Sources/entry.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ struct ExampleCommand: ParsableCommand {
1313
var arn: String
1414
@Argument(help: "The message to publish to the topic")
1515
var message: String
16-
@Option(help: "Name of the Amazon S3 Region to use (default: us-east-1)")
16+
@Option(help: "Name of the Amazon Region to use (default: us-east-1)")
1717
var region = "us-east-1"
1818

1919
static var configuration = CommandConfiguration(

swift/example_code/sns/SubscribeEmail/Sources/entry.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ struct ExampleCommand: ParsableCommand {
1414
var arn: String
1515
@Argument(help: "The email address to subscribe to the topic")
1616
var email: String
17-
@Option(help: "Name of the Amazon S3 Region to use (default: us-east-1)")
17+
@Option(help: "Name of the Amazon Region to use (default: us-east-1)")
1818
var region = "us-east-1"
1919

2020
static var configuration = CommandConfiguration(

swift/example_code/sns/SubscribeSMS/Sources/entry.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ struct ExampleCommand: ParsableCommand {
1414
var arn: String
1515
@Argument(help: "The phone number to subscribe to the topic")
1616
var phone: String
17-
@Option(help: "Name of the Amazon S3 Region to use (default: us-east-1)")
17+
@Option(help: "Name of the Amazon Region to use (default: us-east-1)")
1818
var region = "us-east-1"
1919

2020
static var configuration = CommandConfiguration(

swift/example_code/sns/Unsubscribe/Sources/entry.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import Foundation
1212
struct ExampleCommand: ParsableCommand {
1313
@Argument(help: "The ARN of the subscriber to unsubscribe")
1414
var arn: String
15-
@Option(help: "Name of the Amazon S3 Region to use (default: us-east-1)")
15+
@Option(help: "Name of the Amazon Region to use (default: us-east-1)")
1616
var region = "us-east-1"
1717

1818
static var configuration = CommandConfiguration(

swift/example_code/sns/basics/Sources/entry.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import AWSSNS
1111
import Foundation
1212

1313
struct ExampleCommand: ParsableCommand {
14-
@Option(help: "Name of the Amazon S3 Region to use (default: us-east-1)")
14+
@Option(help: "Name of the Amazon Region to use (default: us-east-1)")
1515
var region = "us-east-1"
1616

1717
static var configuration = CommandConfiguration(

0 commit comments

Comments
 (0)