From 86655d74ce20bae2851566ce7deca5a619462d42 Mon Sep 17 00:00:00 2001 From: Rachel Hagerman <110480692+rlhagerm@users.noreply.github.com> Date: Tue, 24 Sep 2024 14:17:44 -0500 Subject: [PATCH] Removing old bucket names. --- dotnetv3/EventBridge/Scenarios/settings.json | 2 +- dotnetv3/Rekognition/DetectFacesExample/DetectFaces.cs | 2 +- dotnetv3/Rekognition/DetectLabelsExample/DetectLabels.cs | 2 +- .../DetectModerationLabelsExample/DetectModerationLabels.cs | 2 +- dotnetv3/Rekognition/DetectTextExample/DetectText.cs | 2 +- .../SearchFacesMatchingImageExample/SearchFacesMatchingImage.cs | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dotnetv3/EventBridge/Scenarios/settings.json b/dotnetv3/EventBridge/Scenarios/settings.json index d7f628ddd8c..a6853acb428 100644 --- a/dotnetv3/EventBridge/Scenarios/settings.json +++ b/dotnetv3/EventBridge/Scenarios/settings.json @@ -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" } diff --git a/dotnetv3/Rekognition/DetectFacesExample/DetectFaces.cs b/dotnetv3/Rekognition/DetectFacesExample/DetectFaces.cs index c58ce4cbaef..48152fd6d58 100644 --- a/dotnetv3/Rekognition/DetectFacesExample/DetectFaces.cs +++ b/dotnetv3/Rekognition/DetectFacesExample/DetectFaces.cs @@ -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(); diff --git a/dotnetv3/Rekognition/DetectLabelsExample/DetectLabels.cs b/dotnetv3/Rekognition/DetectLabelsExample/DetectLabels.cs index 010a453b822..bb7ceaed7ed 100644 --- a/dotnetv3/Rekognition/DetectLabelsExample/DetectLabels.cs +++ b/dotnetv3/Rekognition/DetectLabelsExample/DetectLabels.cs @@ -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(); diff --git a/dotnetv3/Rekognition/DetectModerationLabelsExample/DetectModerationLabels.cs b/dotnetv3/Rekognition/DetectModerationLabelsExample/DetectModerationLabels.cs index 46d84f33bf2..e5d3a615557 100644 --- a/dotnetv3/Rekognition/DetectModerationLabelsExample/DetectModerationLabels.cs +++ b/dotnetv3/Rekognition/DetectModerationLabelsExample/DetectModerationLabels.cs @@ -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(); diff --git a/dotnetv3/Rekognition/DetectTextExample/DetectText.cs b/dotnetv3/Rekognition/DetectTextExample/DetectText.cs index 5622ba4655c..90d194db79d 100644 --- a/dotnetv3/Rekognition/DetectTextExample/DetectText.cs +++ b/dotnetv3/Rekognition/DetectTextExample/DetectText.cs @@ -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(); diff --git a/dotnetv3/Rekognition/SearchFacesMatchingImageExample/SearchFacesMatchingImage.cs b/dotnetv3/Rekognition/SearchFacesMatchingImageExample/SearchFacesMatchingImage.cs index aa904e54acb..cdedb4291d6 100644 --- a/dotnetv3/Rekognition/SearchFacesMatchingImageExample/SearchFacesMatchingImage.cs +++ b/dotnetv3/Rekognition/SearchFacesMatchingImageExample/SearchFacesMatchingImage.cs @@ -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();