Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dotnetv3/EventBridge/Scenarios/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"roleName": "eventbridge-events-rule-role",
"testBucketName": "ExampleBucket1",
"testBucketName": "amzn-s3-demo-bucket",
"topicName": "example-eventbridge-topic-name",
"eventRuleName": "example-event-rule"
}
2 changes: 1 addition & 1 deletion dotnetv3/Rekognition/DetectFacesExample/DetectFaces.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class DetectFaces
public static async Task Main()
{
string photo = "input.jpg";
string bucket = "bucket";
string bucket = "amzn-s3-demo-bucket";

var rekognitionClient = new AmazonRekognitionClient();

Expand Down
2 changes: 1 addition & 1 deletion dotnetv3/Rekognition/DetectLabelsExample/DetectLabels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class DetectLabels
public static async Task Main()
{
string photo = "del_river_02092020_01.jpg"; // "input.jpg";
string bucket = "igsmiths3photos"; // "bucket";
string bucket = "amzn-s3-demo-bucket"; // "bucket";

var rekognitionClient = new AmazonRekognitionClient();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class DetectModerationLabels
public static async Task Main(string[] args)
{
string photo = "input.jpg";
string bucket = "bucket";
string bucket = "amzn-s3-demo-bucket";

var rekognitionClient = new AmazonRekognitionClient();

Expand Down
2 changes: 1 addition & 1 deletion dotnetv3/Rekognition/DetectTextExample/DetectText.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class DetectText
public static async Task Main()
{
string photo = "Dad_photographer.jpg"; // "input.jpg";
string bucket = "igsmiths3photos"; // "bucket";
string bucket = "amzn-s3-demo-bucket"; // "bucket";

var rekognitionClient = new AmazonRekognitionClient();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class SearchFacesMatchingImage
public static async Task Main()
{
string collectionId = "MyCollection";
string bucket = "bucket";
string bucket = "amzn-s3-demo-bucket";
string photo = "input.jpg";

var rekognitionClient = new AmazonRekognitionClient();
Expand Down
Loading