Skip to content

Commit

Permalink
Removing old bucket names.
Browse files Browse the repository at this point in the history
  • Loading branch information
rlhagerm committed Sep 24, 2024
1 parent 1dd228f commit 86655d7
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
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

0 comments on commit 86655d7

Please sign in to comment.