From a72baee13545385353a3e1b69a1e500b6ea510b4 Mon Sep 17 00:00:00 2001 From: scmacdon Date: Thu, 27 Jun 2024 10:13:46 -0400 Subject: [PATCH] rolled in review comments --- getting_started_scenarios/ecr_scenario/README.md | 4 +++- getting_started_scenarios/ecr_scenario/SPECIFICATION.md | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/getting_started_scenarios/ecr_scenario/README.md b/getting_started_scenarios/ecr_scenario/README.md index 74d6e3a4b0d..136ab75c471 100644 --- a/getting_started_scenarios/ecr_scenario/README.md +++ b/getting_started_scenarios/ecr_scenario/README.md @@ -2,7 +2,9 @@ ## Overview - This Amazon Elastic Container Registry Service (Amazon ECR) basic scenario demonstrates how to interact with the Amazon ECR service using an AWS SDK. The scenario covers various operations such as creating an Amazon ECR repository, pushing images to the repository, setting an ECR repository policy, and so on. Here are the 6 top service operations this scenario will cover. + This Amazon Elastic Container Registry Service (Amazon ECR) basic scenario demonstrates how to interact with the Amazon ECR service using an AWS SDK. The scenario covers various operations such as creating an Amazon ECR repository, pushing images to the repository, setting an ECR repository policy, and so on. + + Here are the top six service operations this scenario covers. 1. **Create an ECR repository**: The program creates an Amazon ECR repository. diff --git a/getting_started_scenarios/ecr_scenario/SPECIFICATION.md b/getting_started_scenarios/ecr_scenario/SPECIFICATION.md index 243307ddd4f..bdabad34c17 100644 --- a/getting_started_scenarios/ecr_scenario/SPECIFICATION.md +++ b/getting_started_scenarios/ecr_scenario/SPECIFICATION.md @@ -65,7 +65,7 @@ The following shows the output of the Amazon ECR program in the console. ECR provides a simple and scalable way to manage container images throughout their lifecycle, from building and testing to production deployment. - The `EcrAsyncClient` interface in the AWS SDK for Java 2.x provides a set of methods to + The `EcrAsyncClient` interface in the AWS SDK provides a set of methods to programmatically interact with the Amazon ECR service. This allows developers to automate the storage, retrieval, and management of container images as part of their application deployment pipelines. With ECR, teams can focus on building and deploying their @@ -150,7 +150,7 @@ Continuing with the program... 4. Retrieve an ECR authorization token. You need an authorization token to securely access and interact with the Amazon ECR registry. -The `getAuthorizationToken` method of the `EcrAsyncClient` is responsible for securely accessing +The `getAuthorizationToken` method is responsible for securely accessing and interacting with an Amazon ECR repository. This operation is responsible for obtaining a valid authorization token, which is required to authenticate your requests to the ECR service.