AWS SAA-C03真题 No.401-600

互联网收集的AWS真题,中英双语,每个选项带解析
此内容查看价格为20金币(VIP免费),请先
0%
0 投票, 0 平均值
0

Report a question

You cannot submit an empty report. Please add some details.

SAA-C03

AWS SAA-C03真题 No.401-600

中英双语,人工翻译,带完整解析AWS SAA-C03真题 No.401-600

1 / 200

分类: SAA-C03

1. A developer has an application that uses an AWS Lambda function to upload files to Amazon S3 and needs the required permissions to
perform the task. The developer already has an IAM user with valid IAM credentials required for Amazon S3.
What should a solutions architect do to grant the permissions?
A. Add required IAM permissions in the resource policy of the Lambda function.
B. Create a signed request using the existing IAM credentials in the Lambda function.
C. Create a new IAM user and use the existing IAM credentials in the Lambda function.
D. Create an IAM execution role with the required permissions and attach the IAM role to the Lambda function.

一名开发者拥有一个使用AWS Lambda功能将文件上传至Amazon S3的应用程序,需要获得执行该任务所需的权限。开发者已经拥有一个IAM用户,具备适用于Amazon S3的有效IAM凭证。

解决方案架构师该如何授予这些权限?

A. 在Lambda功能的资源策略中添加所需的IAM权限。
B. 使用Lambda功能中现有的IAM凭证创建签名请求。
C. 创建一个新的IAM用户并在Lambda功能中使用现有的IAM凭证。
D. 创建一个具有所需权限的IAM执行角色并将该IAM角色附加到Lambda功能上。

2 / 200

分类: SAA-C03

2. A company has deployed a serverless application that invokes an AWS Lambda function when new documents are uploaded to an Amazon S3
bucket. The application uses the Lambda function to process the documents. After a recent marketing campaign, the company noticed that
the application did not process many of the documents.
What should a solutions architect do to improve the architecture of this application?
A. Set the Lambda function’s runtime timeout value to 15 minutes.
B. Configure an S3 bucket replication policy. Stage the documents in the S3 bucket for later processing.
C. Deploy an additional Lambda function. Load balance the processing of the documents across the two Lambda functions.
D. Create an Amazon Simple Queue Service (Amazon SQS) queue. Send the requests to the queue. Configure the queue as an event
source for Lambda.

一家公司部署了一个无服务器应用程序,当有新文档上传到亚马逊S3存储桶时,该程序会调用AWS Lambda函数。
应用程序使用Lambda函数来处理这些文档。在最近的一次营销活动后,公司发现该应用程序未能处理大量文档。
解决方案架构师应采取什么措施来改进该应用程序的架构?
A. 将Lambda函数的运行超时值设置为15分钟。
B. 配置S3存储桶复制策略。先将文档暂存在S3存储桶中稍后处理。
C. 部署额外的Lambda函数。在两个Lambda函数之间均衡分配文档处理负载。
D. 创建一个亚马逊简单队列服务(Amazon SQS)队列。将请求发送到队列。配置该队列作为Lambda的事件源。

3 / 200

分类: SAA-C03

3. A solutions architect is designing the architecture for a software demonstration environment. The environment will run on Amazon EC2
instances in an Auto Scaling group behind an Application Load Balancer (ALB). The system will experience signi cant increases in traffic
during working hours but is not required to operate on weekends.
Which combination of actions should the solutions architect take to ensure that the system can scale to meet demand? (Choose two.)
A. Use AWS Auto Scaling to adjust the ALB capacity based on request rate.
B. Use AWS Auto Scaling to scale the capacity of the VPC internet gateway.
C. Launch the EC2 instances in multiple AWS Regions to distribute the load across Regions.
D. Use a target tracking scaling policy to scale the Auto Scaling group based on instance CPU utilization.
E. Use scheduled scaling to change the Auto Scaling group minimum, maximum, and desired capacity to zero for weekends. Revert to the
default values at the start of the week.

一位解决方案架构师正在为一个软件演示环境设计架构。该环境将在应用负载均衡器(ALB)后面的自动扩展组中的亚马逊EC2实例上运行。
该系统在工作时间会遇到流量显著增加的情况,但在周末不需要运行。
解决方案架构师应采取哪两项措施组合来确保系统能够扩展以满足需求?(选择两项。)
A. 使用AWS自动扩展根据请求率调整ALB容量。
B. 使用AWS自动扩展调整VPC互联网网关的容量。
C. 在多个AWS区域启动EC2实例,将负载分布到不同区域。
D. 使用目标跟踪扩展策略,根据实例CPU利用率扩展自动扩展组。
E. 使用计划扩展功能,在周末将自动扩展组的最小、最大和所需容量改为零。在工作周开始时恢复为默认值。

4 / 200

分类: SAA-C03

4. A solutions architect is designing a two-tiered architecture that includes a public subnet and a database subnet. The web servers in the public
subnet must be open to the internet on port 443. The Amazon RDS for MySQL DB instance in the database subnet must be accessible only to
the web servers on port 3306.
Which combination of steps should the solutions architect take to meet these requirements? (Choose two.)
A. Create a network ACL for the public subnet. Add a rule to deny outbound traffic to 0.0.0.0/0 on port 3306.
B. Create a security group for the DB instance. Add a rule to allow traffic from the public subnet CIDR block on port 3306.
C. Create a security group for the web servers in the public subnet. Add a rule to allow traffic from 0.0.0.0/0 on port 443.
D. Create a security group for the DB instance. Add a rule to allow traffic from the web servers’ security group on port 3306.
E. Create a security group for the DB instance. Add a rule to deny all traffic except traffic from the web servers’ security group on port
3306.

一位解决方案架构师正在设计一个两层架构,包含一个公共子网和一个数据库子网。
公共子网中的Web服务器必须在443端口上对互联网开放。
数据库子网中的Amazon RDS for MySQL数据库实例必须只能通过3306端口被Web服务器访问。
解决方案架构师应该采取哪两个步骤组合来满足这些要求?(选择两项)
A. 为公共子网创建一个网络ACL。添加一条规则拒绝到0.0.0.0/0的3306端口出站流量。
B. 为数据库实例创建一个安全组。添加一条规则允许来自公共子网CIDR块的3306端口流量。
C. 为公共子网中的Web服务器创建一个安全组。添加一条规则允许来自0.0.0.0/0的443端口流量。
D. 为数据库实例创建一个安全组。添加一条规则允许来自Web服务器安全组的3306端口流量。
E. 为数据库实例创建一个安全组。添加一条规则拒绝除来自Web服务器安全组的3306端口流量之外的所有流量。

5 / 200

分类: SAA-C03

5. A company is implementing a shared storage solution for a gaming application that is hosted in the AWS Cloud. The company needs the
ability to use Lustre clients to access data. The solution must be fully managed.
Which solution meets these requirements?
A. Create an AWS DataSync task that shares the data as a mountable file system. Mount the file system to the application server.
B. Create an AWS Storage Gateway file gateway. Create a file share that uses the required client protocol. Connect the application server
to the file share.
C. Create an Amazon Elastic File System (Amazon EFS) file system, and Configure it to support Lustre. Attach the file system to the origin
server. Connect the application server to the file system.
D. Create an Amazon FSx for Lustre file system. Attach the file system to the origin server. Connect the application server to the le
system.

一家公司正在为托管在AWS云上的游戏应用程序实施共享存储解决方案。该公司需要使用Lustre客户端访问数据的能力。解决方案必须完全托管。
以下哪种方案满足这些要求?

A. 创建一个AWS DataSync任务,将数据共享为可挂载的文件系统。将文件系统挂载到应用服务器上。


B. 创建一个AWS Storage Gateway文件网关。创建一个使用所需客户端协议的文件共享。将应用服务器连接到文件共享。


C. 创建一个Amazon Elastic File System(Amazon EFS)文件系统,并将其配置为支持Lustre。将文件系统附加到源服务器。将应用服务器连接到文件系统。


D. 创建一个Amazon FSx for Lustre文件系统。将文件系统附加到源服务器。将应用服务器连接到文件系统。

6 / 200

分类: SAA-C03

6. A company runs an application that receives data from thousands of geographically dispersed remote devices that use UDP. The application
processes the data immediately and sends a message back to the device if necessary. No data is stored.
The company needs a solution that minimizes latency for the data transmission from the devices. The solution also must provide rapid
failover to another AWS Region.
Which solution will meet these requirements?
A. Configure an Amazon Route 53 failover routing policy. Create a Network Load Balancer (NLB) in each of the two Regions. Configure the
NLB to invoke an AWS Lambda function to process the data.
B. Use AWS Global Accelerator. Create a Network Load Balancer (NLB) in each of the two Regions as an endpoint. Create an Amazon
Elastic Container Service (Amazon ECS) cluster with the Fargate launch type. Create an ECS service on the cluster. Set the ECS service as
the target for the NLProcess the data in Amazon ECS.
C. Use AWS Global Accelerator. Create an Application Load Balancer (ALB) in each of the two Regions as an endpoint. Create an Amazon
Elastic Container Service (Amazon ECS) cluster with the Fargate launch type. Create an ECS service on the cluster. Set the ECS service as
the target for the ALB. Process the data in Amazon ECS.
D. Configure an Amazon Route 53 failover routing policy. Create an Application Load Balancer (ALB) in each of the two Regions. Create an
Amazon Elastic Container Service (Amazon ECS) cluster with the Fargate launch type. Create an ECS service on the cluster. Set the ECS
service as the target for the ALB. Process the data in Amazon ECS.

一家公司运行着一个应用程序,该程序从数千个使用UDP协议且地理分布广泛的远程设备接收数据。应用程序会立即处理这些数据,并在必要时向设备发送回复消息。所有数据均不会被保存。

该公司需要一个能够最小化设备数据传输延迟的解决方案。该方案还必须能够快速故障切换到另一个AWS区域。

以下哪个解决方案可以满足这些需求?

A. 配置Amazon Route 53故障转移路由策略。在两个区域各创建一个网络负载均衡器(NLB)。配置NLB以调用AWS Lambda函数来处理数据。

B. 使用AWS Global Accelerator。在两个区域各创建一个网络负载均衡器(NLB)作为端点。创建一个采用Fargate启动类型的Amazon弹性容器服务(Amazon ECS)集群。在该集群上创建ECS服务。将ECS服务设置为NLB的目标。在Amazon ECS中处理数据。

C. 使用AWS Global Accelerator。在两个区域各创建一个应用负载均衡器(ALB)作为端点。创建一个采用Fargate启动类型的Amazon弹性容器服务(Amazon ECS)集群。在该集群上创建ECS服务。将ECS服务设置为ALB的目标。在Amazon ECS中处理数据。

D. 配置Amazon Route 53故障转移路由策略。在两个区域各创建一个应用负载均衡器(ALB)。创建一个采用Fargate启动类型的Amazon弹性容器服务(Amazon ECS)集群。在该集群上创建ECS服务。将ECS服务设置为ALB的目标。在Amazon ECS中处理数据。

7 / 200

分类: SAA-C03

7. A solutions architect must migrate a Windows Internet Information Services (IIS) web application to AWS. The application currently relies on a
file share hosted in the user’s on-premises network-attached storage (NAS). The solutions architect has proposed migrating the IIS web
servers to Amazon EC2 instances in multiple Availability Zones that are connected to the storage solution, and configuring an Elastic Load
Balancer attached to the instances.
Which replacement to the on-premises file share is MOST resilient and durable?
A. Migrate the file share to Amazon RDS.
B. Migrate the file share to AWS Storage Gateway.
C. Migrate the file share to Amazon FSx for Windows File Server.
D. Migrate the file share to Amazon Elastic File System (Amazon EFS).

一位解决方案架构师必须将一个Windows Internet信息服务(IIS)web应用程序迁移到AWS。目前该应用程序依赖于用户本地网络附加存储(NAS)中托管的文件共享。
解决方案架构师建议将IIS网络服务器迁移到多个可用区中的Amazon EC2实例,这些实例连接到存储解决方案,并配置一个附加到实例上的弹性负载均衡器。

以下哪种替代本地文件共享的方案最具弹性和耐用性?
A. 将文件共享迁移到Amazon RDS。
B. 将文件共享迁移到AWS Storage Gateway。
C. 将文件共享迁移到适用于Windows文件服务器的Amazon FSx。
D. 将文件共享迁移到Amazon弹性文件系统(Amazon EFS)。

8 / 200

分类: SAA-C03

8. A company is deploying a new application on Amazon EC2 instances. The application writes data to Amazon Elastic Block Store (Amazon EBS)
volumes. The company needs to ensure that all data that is written to the EBS volumes is encrypted at rest.
Which solution will meet this requirement?
A. Create an IAM role that speci es EBS encryption. Attach the role to the EC2 instances.
B. Create the EBS volumes as encrypted volumes. Attach the EBS volumes to the EC2 instances.
C. Create an EC2 instance tag that has a key of Encrypt and a value of True. Tag all instances that require encryption at the EBS level.
D. Create an AWS Key Management Service (AWS KMS) key policy that enforces EBS encryption in the account. Ensure that the key policy
is active.

一家公司正在亚马逊弹性计算云(Amazon EC2)实例上部署新应用。
该应用会将数据写入亚马逊弹性块存储(Amazon EBS)卷。
公司需要确保写入EBS卷的所有数据在静态时都经过加密。
哪种解决方案能满足这一需求?
A. 创建一个指定EBS加密的IAM角色。将该角色附加到EC2实例上。
B. 将EBS卷创建为加密卷。将这些EBS卷附加到EC2实例上。
C. 创建一个键为Encrypt、值为True的EC2实例标签。为所有需要在EBS层级加密的实例添加该标签。
D. 创建一个在账户中强制实施EBS加密的AWS密钥管理服务(AWS KMS)密钥策略。确保该密钥策略处于活跃状态。

9 / 200

分类: SAA-C03

9. A company has a web application with sporadic usage patterns. There is heavy usage at the beginning of each month, moderate usage at the
start of each week, and unpredictable usage during the week. The application consists of a web server and a MySQL database server running
inside the data center. The company would like to move the application to the AWS Cloud, and needs to select a cost-effective database
platform that will not require database modi cations.
Which solution will meet these requirements?
A. Amazon DynamoDB
B. Amazon RDS for MySQL
C. MySQL-compatible Amazon Aurora Serverless
D. MySQL deployed on Amazon EC2 in an Auto Scaling group

一家公司拥有一个使用模式零散的Web应用程序。每月初有大量使用,每周初有中等使用量,而一周内的使用量则难以预测。该应用程序由位于数据中心内的Web服务器和MySQL数据库服务器组成。公司希望将该应用程序迁移到AWS云,并需要选择一个成本效益高且无需修改数据库的平台。
以下哪种解决方案符合这些要求?
A. Amazon DynamoDB
B. 适用于MySQL的Amazon RDS
C. MySQL兼容的Amazon Aurora无服务器版本
D. 部署在Amazon EC2自动伸缩组中的MySQL

10 / 200

分类: SAA-C03

10. An image-hosting company stores its objects in Amazon S3 buckets. The company wants to avoid accidental exposure of the objects in the S3
buckets to the public. All S3 objects in the entire AWS account need to remain private.
Which solution will meet these requirements?
A. Use Amazon GuardDuty to monitor S3 bucket policies. Create an automatic remediation action rule that uses an AWS Lambda function
to remediate any change that makes the objects public.
B. Use AWS Trusted Advisor to nd publicly accessible S3 buckets. Configure email notifications in Trusted Advisor when a change is
detected. Manually change the S3 bucket policy if it allows public access.
C. Use AWS Resource Access Manager to nd publicly accessible S3 buckets. Use Amazon Simple Notification Service (Amazon SNS) to
invoke an AWS Lambda function when a change is detected. Deploy a Lambda function that programmatically remediates the change.
D. Use the S3 Block Public Access feature on the account level. Use AWS Organizations to create a service control policy (SCP) that
prevents IAM users from changing the setting. Apply the SCP to the account.

一家图片托管公司将其对象存储在Amazon S3存储桶中。该公司希望避免S3存储桶中的对象意外公开。整个AWS账户中的所有S3对象都需要保持私有。
哪种解决方案可以满足这些要求?
A. 使用Amazon GuardDuty监控S3存储桶策略。创建一个自动修复操作规则,使用AWS Lambda函数来修复任何导致对象公开的更改。
B. 使用AWS Trusted Advisor查找可公开访问的S3存储桶。在Trusted Advisor中配置电子邮件通知以检测更改。如果存储桶策略允许公开访问,则手动更改S3存储桶策略。
C. 使用AWS Resource Access Manager查找可公开访问的S3存储桶。使用Amazon Simple Notification Service(Amazon SNS)在检测到更改时调用AWS Lambda函数。部署一个Lambda函数以程序化方式修复更改。
D. 在账户级别使用S3阻止公共访问功能。使用AWS Organizations创建服务控制策略(SCP)以防止IAM用户更改设置。将该SCP应用于账户。

11 / 200

分类: SAA-C03

11. An ecommerce company is experiencing an increase in user traffic. The company’s store is deployed on Amazon EC2 instances as a two-tier
web application consisting of a web tier and a separate database tier. As traffic increases, the company notices that the architecture is
causing signi cant delays in sending timely marketing and order con rmation email to users. The company wants to reduce the time it spends
resolving complex email delivery issues and minimize operational overhead.
What should a solutions architect do to meet these requirements?
A. Create a separate application tier using EC2 instances dedicated to email processing.
B. Configure the web instance to send email through Amazon Simple Email Service (Amazon SES).
C. Configure the web instance to send email through Amazon Simple Notification Service (Amazon SNS).
D. Create a separate application tier using EC2 instances dedicated to email processing. Place the instances in an Auto Scaling group.

一家电子商务公司正在经历用户流量的增长。该公司的商店部署在亚马逊EC2实例上,作为一个由网络层和独立数据库层组成的两层网络应用程序。随着流量的增加,公司注意到当前的架构导致向用户发送及时的营销和订单确认电子邮件出现显著延迟。公司希望减少解决复杂电子邮件发送问题所花费的时间,并最小化运营开销。

为了满足这些需求,解决方案架构师应该怎么做?

A. 使用专门用于电子邮件处理的EC2实例创建独立的应用程序层。

B. 配置网络实例通过亚马逊简单电子邮件服务(Amazon SES)发送电子邮件。

C. 配置网络实例通过亚马逊简单通知服务(Amazon SNS)发送电子邮件。

D. 使用专门用于电子邮件处理的EC2实例创建独立的应用程序层,并将这些实例放入自动扩展组中。

12 / 200

分类: SAA-C03

12. A company has a business system that generates hundreds of reports each day. The business system saves the reports to a network share in
CSV format. The company needs to store this data in the AWS Cloud in near-real time for analysis.
Which solution will meet these requirements with the LEAST administrative overhead?
A. Use AWS DataSync to transfer the files to Amazon S3. Create a scheduled task that runs at the end of each day.
B. Create an Amazon S3 File Gateway. Update the business system to use a new network share from the S3 File Gateway.
C. Use AWS DataSync to transfer the files to Amazon S3. Create an application that uses the DataSync API in the automation work ow.
D. Deploy an AWS Transfer for SFTP endpoint. Create a script that checks for new files on the network share and uploads the new files by
using SFTP.

一家公司拥有一个每天生成数百份报告的业务系统。这些报告以CSV格式保存到网络共享文件夹中。
公司需要将这些数据近乎实时地存储到AWS云平台中以便进行分析。
以下哪种解决方案能够在满足需求的同时,将管理开销降至最低?
A. 使用AWS DataSync将文件传输到Amazon S3。创建一个在每天结束时运行的定时任务。
B. 创建一个Amazon S3文件网关。更新业务系统以使用来自S3文件网关的新网络共享。
C. 使用AWS DataSync将文件传输到Amazon S3。创建一个在自动化工作流中使用DataSync API的应用程序。
D. 部署一个AWS SFTP传输终端节点。创建一个脚本用于检查网络共享中的新文件,并通过SFTP上传这些新文件。

13 / 200

分类: SAA-C03

13. A company is storing petabytes of data in Amazon S3 Standard. The data is stored in multiple S3 buckets and is accessed with varying
frequency. The company does not know access patterns for all the data. The company needs to implement a solution for each S3 bucket to
optimize the cost of S3 usage.
Which solution will meet these requirements with the MOST operational e ciency?
A. Create an S3 Lifecycle configuration with a rule to transition the objects in the S3 bucket to S3 Intelligent-Tiering.
B. Use the S3 storage class analysis tool to determine the correct tier for each object in the S3 bucket. Move each object to the identi ed
storage tier.
C. Create an S3 Lifecycle configuration with a rule to transition the objects in the S3 bucket to S3 Glacier Instant Retrieval.
D. Create an S3 Lifecycle configuration with a rule to transition the objects in the S3 bucket to S3 One Zone-Infrequent Access (S3 One
Zone-IA).

一家公司在Amazon S3标准存储中存储了PB级的数据。这些数据存储在多个S3存储桶中,并且访问频率各不相同。
该公司并不了解所有数据的访问模式。公司需要为每个S3存储桶实施一个解决方案,以优化S3使用成本。
哪种解决方案能在最大程度上满足这些操作性效率要求?
A. 创建一个S3生命周期配置,设置规则将S3存储桶中的对象转移到S3智能分层存储。
B. 使用S3存储类别分析工具确定S3存储桶中每个对象的正确存储层级,然后将每个对象移动到已识别的存储层级。
C. 创建一个S3生命周期配置,设置规则将S3存储桶中的对象转移到S3 Glacier即时检索存储。
D. 创建一个S3生命周期配置,设置规则将S3存储桶中的对象转移到S3单区-不频繁访问存储(S3 One Zone-IA)。

14 / 200

分类: SAA-C03

14. A rapidly growing global ecommerce company is hosting its web application on AWS. The web application includes static content and dynamic
content. The website stores online transaction processing (OLTP) data in an Amazon RDS database The website’s users are experiencing slow
page loads.
Which combination of actions should a solutions architect take to resolve this issue? (Choose two.)
A. Configure an Amazon Redshift cluster.
B. Set up an Amazon CloudFront distribution.
C. Host the dynamic web content in Amazon S3.
D. Create a read replica for the RDS DB instance.
E. Configure a Multi-AZ deployment for the RDS DB instance.

一家快速发展的全球电子商务公司正在AWS上托管其网络应用程序。该网络应用程序包含静态内容和动态内容。
网站在Amazon RDS数据库中存储在线交易处理(OLTP)数据。网站用户目前正经历页面加载缓慢的问题。
解决方案架构师应采取哪两项组合措施来解决这个问题?(选择两项。)
A. 配置Amazon Redshift集群。
B. 设置Amazon CloudFront分发。
C. 在Amazon S3中托管动态网页内容。
D. 为RDS数据库实例创建只读副本。
E. 为RDS数据库实例配置多可用区部署。

15 / 200

分类: SAA-C03

15. A company uses Amazon EC2 instances and AWS Lambda functions to run its application. The company has VPCs with public subnets and
private subnets in its AWS account. The EC2 instances run in a private subnet in one of the VPCs. The Lambda functions need direct network
access to the EC2 instances for the application to work.
The application will run for at least 1 year. The company expects the number of Lambda functions that the application uses to increase during
that time. The company wants to maximize its savings on all application resources and to keep network latency between the services low.
Which solution will meet these requirements?
A. Purchase an EC2 Instance Savings Plan Optimize the Lambda functions’ duration and memory usage and the number of invocations.
Connect the Lambda functions to the private subnet that contains the EC2 instances.
B. Purchase an EC2 Instance Savings Plan Optimize the Lambda functions’ duration and memory usage, the number of invocations, and
the amount of data that is transferred. Connect the Lambda functions to a public subnet in the same VPC where the EC2 instances run.
C. Purchase a Compute Savings Plan. Optimize the Lambda functions’ duration and memory usage, the number of invocations, and the
amount of data that is transferred. Connect the Lambda functions to the private subnet that contains the EC2 instances.
D. Purchase a Compute Savings Plan. Optimize the Lambda functions’ duration and memory usage, the number of invocations, and the
amount of data that is transferred. Keep the Lambda functions in the Lambda service VPC.

一家公司使用亚马逊EC2实例和AWS Lambda函数来运行其应用程序。该公司在其AWS账户中拥有包含公共子网和私有子网的VPC。EC2实例在其中一个VPC的私有子网中运行。Lambda函数需要直接网络访问EC2实例才能使应用程序正常工作。

该应用程序将至少运行1年。公司预计在此期间应用程序使用的Lambda函数数量会增加。公司希望在所有应用程序资源上最大化节省成本,并保持服务之间的网络延迟较低。

哪种解决方案能够满足这些需求?

A. 购买EC2实例节省计划。优化Lambda函数的持续时间和内存使用情况以及调用次数。将Lambda函数连接到包含EC2实例的私有子网。

B. 购买EC2实例节省计划。优化Lambda函数的持续时间、内存使用情况、调用次数以及传输的数据量。将Lambda函数连接到与EC2实例运行在相同VPC中的公共子网。

C. 购买计算节省计划。优化Lambda函数的持续时间、内存使用情况、调用次数以及传输的数据量。将Lambda函数连接到包含EC2实例的私有子网。

D. 购买计算节省计划。优化Lambda函数的持续时间、内存使用情况、调用次数以及传输的数据量。将Lambda函数保留在Lambda服务VPC中。

16 / 200

分类: SAA-C03

16. A solutions architect needs to allow team members to access Amazon S3 buckets in two different AWS accounts: a development account and
a production account. The team currently has access to S3 buckets in the development account by using unique IAM users that are assigned
to an IAM group that has appropriate permissions in the account.
The solutions architect has created an IAM role in the production account. The role has a policy that grants access to an S3 bucket in the
production account.
Which solution will meet these requirements while complying with the principle of least privilege?
A. Attach the Administrator Access policy to the development account users.
B. Add the development account as a principal in the trust policy of the role in the production account.
C. Turn off the S3 Block Public Access feature on the S3 bucket in the production account.
D. Create a user in the production account with unique credentials for each team member.

一位解决方案架构师需要允许团队成员访问两个不同的AWS账户中的Amazon S3存储桶:一个开发账户和一个生产账户。该团队目前通过使用分配给IAM组的唯一IAM用户来访问开发账户中的S3存储桶,该IAM组在该账户中具有适当的权限。

解决方案架构师已在生产账户中创建了IAM角色。该角色具有一个授予访问生产账户中S3存储桶权限的策略。

哪种解决方案能在符合最小权限原则的同时满足这些需求?

A. 将管理员访问策略附加到开发账户中的用户。

B. 在生产账户角色的信任策略中将开发账户添加为主体。

C. 关闭生产账户中S3存储桶的S3阻止公共访问功能。

D. 在生产账户中为每个团队成员创建具有唯一凭证的用户。

17 / 200

分类: SAA-C03

17. A company uses AWS Organizations with all features enabled and runs multiple Amazon EC2 workloads in the ap-southeast-2 Region. The
company has a service control policy (SCP) that prevents any resources from being created in any other Region. A security policy requires the
company to encrypt all data at rest.
An audit discovers that employees have created Amazon Elastic Block Store (Amazon EBS) volumes for EC2 instances without encrypting the
volumes. The company wants any new EC2 instances that any IAM user or root user launches in ap-southeast-2 to use encrypted EBS volumes.
The company wants a solution that will have minimal effect on employees who create EBS volumes.
Which combination of steps will meet these requirements? (Choose two.)
A. In the Amazon EC2 console, select the EBS encryption account attribute and de ne a default encryption key.
B. Create an IAM permission boundary. Attach the permission boundary to the root organizational unit (OU). De ne the boundary to deny
the ec2:CreateVolume action when the ec2:Encrypted condition equals false.
C. Create an SCP. Attach the SCP to the root organizational unit (OU). De ne the SCP to deny the ec2:CreateVolume action whenthe
ec2:Encrypted condition equals false.
D. Update the IAM policies for each account to deny the ec2:CreateVolume action when the ec2:Encrypted condition equals false.
E. In the Organizations management account, specify the Default EBS volume encryption setting.

一家公司启用了所有功能的AWS Organizations,并在ap-southeast-2区域运行多个Amazon EC2工作负载。
这家公司有一个服务控制策略(SCP),防止在任何其他区域创建任何资源。一项安全政策要求该公司对所有静态数据进行加密。
审计发现,员工在为EC2实例创建Amazon Elastic Block Store(Amazon EBS)卷时未加密这些卷。公司希望任何IAM用户或根用户在ap-southeast-2区域启动的任何新EC2实例都使用加密的EBS卷。
公司希望解决方案对创建EBS卷的员工影响最小。
哪种步骤组合能够满足这些要求?(选择两个。)
A. 在Amazon EC2控制台中,选择EBS加密账户属性并定义默认加密密钥。
B. 创建一个IAM权限边界。将该权限边界附加到根组织单位(OU)。定义边界以在ec2:Encrypted条件等于false时拒绝ec2:CreateVolume操作。
C. 创建一个SCP。将该SCP附加到根组织单位(OU)。定义SCP以在ec2:Encrypted条件等于false时拒绝ec2:CreateVolume操作。
D. 更新每个账户的IAM策略,以在ec2:Encrypted条件等于false时拒绝ec2:CreateVolume操作。
E. 在Organizations管理账户中,指定默认EBS卷加密设置。

18 / 200

分类: SAA-C03

18. A company wants to use an Amazon RDS for PostgreSQL DB cluster to simplify time-consuming database administrative tasks for production
database workloads. The company wants to ensure that its database is highly available and will provide automatic failover support in most
scenarios in less than 40 seconds. The company wants to o oad reads off of the primary instance and keep costs as low as possible.
Which solution will meet these requirements?
A. Use an Amazon RDS Multi-AZ DB instance deployment. Create one read replica and point the read workload to the read replica.
B. Use an Amazon RDS Multi-AZ DB duster deployment Create two read replicas and point the read workload to the read replicas.
C. Use an Amazon RDS Multi-AZ DB instance deployment. Point the read workload to the secondary instances in the Multi-AZ pair.
D. Use an Amazon RDS Multi-AZ DB cluster deployment Point the read workload to the reader endpoint.

一家公司希望使用亚马逊RDS(PostgreSQL数据库集群)来简化生产数据库工作负载中耗时的数据库管理任务。

公司希望确保其数据库具有高可用性,并在大多数情况下提供在40秒以内的自动故障转移支持。

公司希望将读取负载从主实例上分流出去,并尽可能降低成本。

哪种解决方案能够满足这些需求?

A. 使用亚马逊RDS多可用区(Multi-AZ)数据库实例部署。创建一个只读副本,并将读取工作负载指向该只读副本。

B. 使用亚马逊RDS多可用区(Multi-AZ)数据库集群部署。创建两个只读副本,并将读取工作负载指向这些只读副本。

C. 使用亚马逊RDS多可用区(Multi-AZ)数据库实例部署。将读取工作负载指向多可用区对中的次要实例。

D. 使用亚马逊RDS多可用区(Multi-AZ)数据库集群部署。将读取工作负载指向读取器端点(reader endpoint)。

19 / 200

分类: SAA-C03

19. A company runs a highly available SFTP service. The SFTP service uses two Amazon EC2 Linux instances that run with elastic IP addresses to
accept traffic from trusted IP sources on the internet. The SFTP service is backed by shared storage that is attached to the instances. User
accounts are created and managed as Linux users in the SFTP servers.
The company wants a serverless option that provides high IOPS performance and highly configurable security. The company also wants to
maintain control over user permissions.
Which solution will meet these requirements?
A. Create an encrypted Amazon Elastic Block Store (Amazon EBS) volume. Create an AWS Transfer Family SFTP service with a public
endpoint that allows only trusted IP addresses. Attach the EBS volume to the SFTP service endpoint. Grant users access to the SFTP
service.
B. Create an encrypted Amazon Elastic File System (Amazon EFS) volume. Create an AWS Transfer Family SFTP service with elastic IP
addresses and a VPC endpoint that has internet-facing access. Attach a security group to the endpoint that allows only trusted IP
addresses. Attach the EFS volume to the SFTP service endpoint. Grant users access to the SFTP service.
C. Create an Amazon S3 bucket with default encryption enabled. Create an AWS Transfer Family SFTP service with a public endpoint that
allows only trusted IP addresses. Attach the S3 bucket to the SFTP service endpoint. Grant users access to the SFTP service.
D. Create an Amazon S3 bucket with default encryption enabled. Create an AWS Transfer Family SFTP service with a VPC endpoint that
has internal access in a private subnet. Attach a security group that allows only trusted IP addresses. Attach the S3 bucket to the SFTP
service endpoint. Grant users access to the SFTP service.

一家公司运行着一个高可用的SFTP服务。该SFTP服务使用两个带有弹性IP地址的亚马逊EC2 Linux实例,

接收来自互联网上可信IP来源的流量。SFTP服务由附加到实例的共享存储支持。

用户账户在SFTP服务器上作为Linux用户创建和管理。

公司希望有一个无服务器的选项,提供高IOPS性能和高度可配置的安全性。公司还希望

保持对用户权限的控制。

哪种解决方案能够满足这些要求?

A. 创建一个加密的亚马逊弹性块存储(Amazon EBS)卷。创建一个AWS Transfer Family SFTP服务,

该服务具有仅允许可信IP地址的公共终端节点。将EBS卷附加到SFTP服务终端节点。授予用户访问SFTP服务的权限。

B. 创建一个加密的亚马逊弹性文件系统(Amazon EFS)卷。创建一个带有弹性IP地址的AWS Transfer Family SFTP服务,

以及一个具有面向互联网访问的VPC终端节点。将一个仅允许可信IP地址的安全组附加到终端节点。

将EFS卷附加到SFTP服务终端节点。授予用户访问SFTP服务的权限。

C. 创建一个启用默认加密的亚马逊S3存储桶。创建一个仅允许可信IP地址的公共终端节点的AWS Transfer Family SFTP服务。

将S3存储桶附加到SFTP服务终端节点。授予用户访问SFTP服务的权限。

D. 创建一个启用默认加密的亚马逊S3存储桶。创建一个在私有子网中具有内部访问权限的VPC终端节点的AWS Transfer Family SFTP服务。

附加一个仅允许可信IP地址的安全组。将S3存储桶附加到SFTP服务终端节点。授予用户访问SFTP服务的权限。

20 / 200

分类: SAA-C03

20. A company is developing a new machine learning (ML) model solution on AWS. The models are developed as independent microservices that
fetch approximately 1 GB of model data from Amazon S3 at startup and load the data into memory. Users access the models through an
asynchronous API. Users can send a request or a batch of requests and specify where the results should be sent.
The company provides models to hundreds of users. The usage patterns for the models are irregular. Some models could be unused for days
or weeks. Other models could receive batches of thousands of requests at a time.
Which design should a solutions architect recommend to meet these requirements?
A. Direct the requests from the API to a Network Load Balancer (NLB). Deploy the models as AWS Lambda functions that are invoked by
the NLB.
B. Direct the requests from the API to an Application Load Balancer (ALB). Deploy the models as Amazon Elastic Container Service
(Amazon ECS) services that read from an Amazon Simple Queue Service (Amazon SQS) queue. Use AWS App Mesh to scale the instances
of the ECS cluster based on the SQS queue size.
C. Direct the requests from the API into an Amazon Simple Queue Service (Amazon SQS) queue. Deploy the models as AWS Lambda
functions that are invoked by SQS events. Use AWS Auto Scaling to increase the number of vCPUs for the Lambda functions based on the
SQS queue size.
D. Direct the requests from the API into an Amazon Simple Queue Service (Amazon SQS) queue. Deploy the models as Amazon Elastic
Container Service (Amazon ECS) services that read from the queue. Enable AWS Auto Scaling on Amazon ECS for both the cluster and
copies of the service based on the queue size.

一家公司在AWS上开发新的机器学习(ML)模型解决方案。这些模型以独立的微服务形式开发,在启动时会从Amazon S3获取约1 GB的模型数据并加载到内存中。用户通过异步API访问这些模型。用户可以发送单个请求或批量请求,并指定结果应发送的位置。

该公司为数百名用户提供模型。模型的使用模式并不规律。某些模型可能数天或数周无人使用,而其他模型可能一次性接收数千个请求的批次。

解决方案架构师应推荐哪种设计来满足这些需求?

A. 将来自API的请求直接导向网络负载均衡器(NLB)。将模型部署为由NLB调用的AWS Lambda函数。

B. 将来自API的请求直接导向应用负载均衡器(ALB)。将模型部署为从Amazon Simple Queue Service(Amazon SQS)队列读取数据的Amazon Elastic Container Service(Amazon ECS)服务。使用AWS App Mesh基于SQS队列大小扩展ECS集群实例。

C. 将来自API的请求导入Amazon Simple Queue Service(Amazon SQS)队列。将模型部署为由SQS事件触发的AWS Lambda函数。使用AWS Auto Scaling根据SQS队列大小增加Lambda函数的vCPU数量。

D. 将来自API的请求导入Amazon Simple Queue Service(Amazon SQS)队列。将模型部署为从队列读取数据的Amazon Elastic Container Service(Amazon ECS)服务。基于队列大小,在Amazon ECS上为集群和服务副本启用AWS Auto Scaling。

21 / 200

分类: SAA-C03

21. A company is running a custom application on Amazon EC2 On-Demand Instances. The application has frontend nodes that need to run 24
hours a day, 7 days a week and backend nodes that need to run only for a short time based on workload. The number of backend nodes varies
during the day.
The company needs to scale out and scale in more instances based on workload.
Which solution will meet these requirements MOST cost-effectively?
A. Use Reserved Instances for the frontend nodes. Use AWS Fargate for the backend nodes.
B. Use Reserved Instances for the frontend nodes. Use Spot Instances for the backend nodes.
C. Use Spot Instances for the frontend nodes. Use Reserved Instances for the backend nodes.
D. Use Spot Instances for the frontend nodes. Use AWS Fargate for the backend nodes.

一家公司在Amazon EC2按需实例上运行一个定制应用程序。该应用程序具有需要每天24小时、每周7天持续运行的前端节点,以及只需根据工作量短期运行的后端节点。后端节点的数量在一天之中会不断变化。
公司需要根据工作量扩展或缩减更多实例。
哪种解决方案能够以最具成本效益的方式满足这些需求?
A. 前端节点使用预留实例。后端节点使用AWS Fargate。
B. 前端节点使用预留实例。后端节点使用竞价实例。
C. 前端节点使用竞价实例。后端节点使用预留实例。
D. 前端节点使用竞价实例。后端节点使用AWS Fargate。

22 / 200

分类: SAA-C03

22. A company uses high block storage capacity to runs its workloads on premises. The company’s daily peak input and output transactions per
second are not more than 15,000 IOPS. The company wants to migrate the workloads to Amazon EC2 and to provision disk performance
independent of storage capacity.
Which Amazon Elastic Block Store (Amazon EBS) volume type will meet these requirements MOST cost-effectively?
A. GP2 volume type
B. io2 volume type
C. GP3 volume type
D. io1 volume type

一家公司在本地运营其工作负载,使用高块存储容量。公司每日的峰值输入输出交易每秒不超过15,000次IOPS。
该公司希望将这些工作负载迁移到Amazon EC2,并配置与存储容量无关的磁盘性能。
哪种Amazon Elastic Block Store (Amazon EBS) 卷类型最能经济高效地满足这些要求?
A. GP2卷类型
B. io2卷类型
C. GP3卷类型
D. io1卷类型

23 / 200

分类: SAA-C03

23. A company needs to store data from its healthcare application. The application’s data frequently changes. A new regulation requires audit
access at all levels of the stored data.
The company hosts the application on an on-premises infrastructure that is running out of storage capacity. A solutions architect must
securely migrate the existing data to AWS while satisfying the new regulation.
Which solution will meet these requirements?
A. Use AWS DataSync to move the existing data to Amazon S3. Use AWS CloudTrail to log data events.
B. Use AWS Snowcone to move the existing data to Amazon S3. Use AWS CloudTrail to log management events.
C. Use Amazon S3 Transfer Acceleration to move the existing data to Amazon S3. Use AWS CloudTrail to log data events.
D. Use AWS Storage Gateway to move the existing data to Amazon S3. Use AWS CloudTrail to log management events.

一家公司需要存储其医疗保健应用程序的数据。该应用程序的数据经常变化。
一项新法规要求对存储数据的所有级别进行审计访问。
该公司将应用程序托管在本地的内部基础设施上,该基础设施的存储容量即将耗尽。
一名解决方案架构师必须安全地将现有数据迁移到AWS,同时满足新法规的要求。
以下哪种解决方案能够满足这些要求?

A. 使用AWS DataSync将现有数据迁移至Amazon S3。使用AWS CloudTrail记录数据事件。
B. 使用AWS Snowcone将现有数据迁移至Amazon S3。使用AWS CloudTrail记录管理事件。
C. 使用Amazon S3 Transfer Acceleration将现有数据迁移至Amazon S3。使用AWS CloudTrail记录数据事件。
D. 使用AWS Storage Gateway将现有数据迁移至Amazon S3。使用AWS CloudTrail记录管理事件。

24 / 200

分类: SAA-C03

24. A solutions architect is implementing a complex Java application with a MySQL database. The Java application must be deployed on Apache
Tomcat and must be highly available.
What should the solutions architect do to meet these requirements?
A. Deploy the application in AWS Lambda. Configure an Amazon API Gateway API to connect with the Lambda functions.
B. Deploy the application by using AWS Elastic Beanstalk. Configure a load-balanced environment and a rolling deployment policy.
C. Migrate the database to Amazon ElastiCache. Configure the ElastiCache security group to allow access from the application.
D. Launch an Amazon EC2 instance. Install a MySQL server on the EC2 instance. Configure the application on the server. Create an AMI.
Use the AMI to create a launch template with an Auto Scaling group.

一位解决方案架构师正在实施一个带有MySQL数据库的复杂Java应用程序。
该Java应用程序需要部署在Apache Tomcat上,并且必须具有高可用性。
解决方案架构师应该采取什么措施来满足这些需求?

A. 将应用程序部署在AWS Lambda中。配置一个Amazon API Gateway API来连接Lambda函数。
B. 使用AWS Elastic Beanstalk部署应用程序。配置一个负载均衡环境和一个滚动部署策略。
C. 将数据库迁移到Amazon ElastiCache。配置ElastiCache安全组以允许从应用程序访问。
D. 启动一个Amazon EC2实例。在EC2实例上安装MySQL服务器。在服务器上配置应用程序。创建一个AMI。
使用该AMI创建一个带有Auto Scaling组的启动模板。

25 / 200

分类: SAA-C03

25. A serverless application uses Amazon API Gateway, AWS Lambda, and Amazon DynamoDB. The Lambda function needs permissions to read
and write to the DynamoDB table.
Which solution will give the Lambda function access to the DynamoDB table MOST securely?
A. Create an IAM user with programmatic access to the Lambda function. Attach a policy to the user that allows read and write access to
the DynamoDB table. Store the access_key_id and secret_access_key parameters as part of the Lambda environment variables. Ensure
that other AWS users do not have read and write access to the Lambda function configuration.
B. Create an IAM role that includes Lambda as a trusted service. Attach a policy to the role that allows read and write access to the
DynamoDB table. Update the configuration of the Lambda function to use the new role as the execution role.
C. Create an IAM user with programmatic access to the Lambda function. Attach a policy to the user that allows read and write access to
the DynamoDB table. Store the access_key_id and secret_access_key parameters in AWS Systems Manager Parameter Store as secure
string parameters. Update the Lambda function code to retrieve the secure string parameters before connecting to the DynamoDB table.
D. Create an IAM role that includes DynamoDB as a trusted service. Attach a policy to the role that allows read and write access from the
Lambda function. Update the code of the Lambda function to attach to the new role as an execution role.

一个无服务器应用使用了亚马逊API网关、AWS Lambda和亚马逊DynamoDB。Lambda函数需要权限来读写DynamoDB表。

哪种解决方案能以最安全的方式给予Lambda函数对DynamoDB表的访问权限?

A. 创建一个对Lambda函数具有编程访问权限的IAM用户。为该用户附加一个允许读写DynamoDB表的策略。将access_key_id和secret_access_key参数作为Lambda环境变量的一部分存储。确保其他AWS用户没有对Lambda函数配置的读写权限。

B. 创建一个将Lambda列为可信服务的IAM角色。为该角色附加一个允许读写DynamoDB表的策略。更新Lambda函数的配置,将该新角色作为执行角色使用。

C. 创建一个对Lambda函数具有编程访问权限的IAM用户。为该用户附加一个允许读写DynamoDB表的策略。将access_key_id和secret_access_key参数作为安全字符串参数存储在AWS系统管理器参数存储中。更新Lambda函数代码,在连接DynamoDB表之前检索这些安全字符串参数。

D. 创建一个将DynamoDB列为可信服务的IAM角色。为该角色附加一个允许来自Lambda函数的读写访问权限的。更新Lambda函数的代码以将该新角色附加为执行角色。

26 / 200

分类: SAA-C03

26. A manufacturing company has machine sensors that upload .csv files to an Amazon S3 bucket. These .csv files must be converted into images
and must be made available as soon as possible for the automatic generation of graphical reports.
The images become irrelevant after 1 month, but the .csv files must be kept to train machine learning (ML) models twice a year. The ML
trainings and audits are planned weeks in advance.
Which combination of steps will meet these requirements MOST cost-effectively? (Choose two.)
A. Launch an Amazon EC2 Spot Instance that downloads the .csv files every hour, generates the image les, and uploads the images to
the S3 bucket.
B. Design an AWS Lambda function that converts the .csv files into images and stores the images in the S3 bucket. Invoke the Lambda
function when a .csv file is uploaded.
C. Create S3 Lifecycle rules for .csv files and image files in the S3 bucket. Transition the .csv files from S3 Standard to S3 Glacier 1 day
after they are uploaded. Expire the image files after 30 days.
D. Create S3 Lifecycle rules for .csv files and image files in the S3 bucket. Transition the .csv files from S3 Standard to S3 One Zone
Infrequent Access (S3 One Zone-IA) 1 day after they are uploaded. Expire the image files after 30 days.
E. Create S3 Lifecycle rules for .csv files and image files in the S3 bucket. Transition the .csv files from S3 Standard to S3 Standard
Infrequent Access (S3 Standard-IA) 1 day after they are uploaded. Keep the image files in Reduced Redundancy Storage (RRS).

一家制造公司的机器传感器将.csv文件上传到Amazon S3存储桶中。这些.csv文件必须转换为图像,并且必须尽快提供用于图形报告的自动生成。
这些图像在1个月后就会失效,但.csv文件必须保留下来以便每年两次用于训练机器学习(ML)模型。ML训练和审计工作会提前几周进行规划。
哪种步骤组合能以最具成本效益的方式满足这些要求?(选择两项。)
A. 启动一个Amazon EC2 Spot实例,每小时下载.csv文件,生成图像文件,并将图像上传到S3存储桶。
B. 设计一个AWS Lambda函数,将.csv文件转换为图像并将图像存储在S3存储桶中。当.csv文件上传时调用该Lambda函数。
C. 为S3存储桶中的.csv文件和图像文件创建S3生命周期规则。在.csv文件上传1天后将其从S3标准存储转换为S3 Glacier存储。图像文件在30天后过期。
D. 为S3存储桶中的.csv文件和图像文件创建S3生命周期规则。在.csv文件上传1天后将其从S3标准存储转换为S3单区低频访问存储(S3 One Zone-IA)。图像文件在30天后过期。
E. 为S3存储桶中的.csv文件和图像文件创建S3生命周期规则。在.csv文件上传1天后将其从S3标准存储转换为S3标准低频访问存储(S3 Standard-IA)。将图像文件保留在降低冗余存储(RRS)中。

27 / 200

分类: SAA-C03

27. A company has developed a new video game as a web application. The application is in a three-tier architecture in a VPC with Amazon RDS
for MySQL in the database layer. Several players will compete concurrently online. The game’s developers want to display a top-10 scoreboard
in near-real time and offer the ability to stop and restore the game while preserving the current scores.
What should a solutions architect do to meet these requirements?
A. Set up an Amazon ElastiCache for Memcached cluster to cache the scores for the web application to display.
B. Set up an Amazon ElastiCache for Redis cluster to compute and cache the scores for the web application to display.
C. Place an Amazon CloudFront distribution in front of the web application to cache the scoreboard in a section of the application.
D. Create a read replica on Amazon RDS for MySQL to run queries to compute the scoreboard and serve the read traffic to the web
application.

一家公司开发了一款新的网页游戏应用。
该应用采用三层架构部署在一个VPC中,数据库层使用Amazon RDS for MySQL。
多位玩家将在网上同时竞技。
游戏开发者希望近乎实时地显示前十名积分榜,并能够在保持当前分数的情况下暂停和恢复游戏。

解决方案架构师应采取什么措施来满足这些需求?

A. 建立Amazon ElastiCache for Memcached集群来缓存分数,供网页应用展示。
B. 建立Amazon ElastiCache for Redis集群来计算和缓存分数,供网页应用展示。
C. 在网页应用前部署Amazon CloudFront分发,来缓存应用部分的积分榜。
D. 在Amazon RDS for MySQL上创建只读副本,运行查询来计算积分榜并为网页应用提供读取流量。

28 / 200

分类: SAA-C03

28. An ecommerce company wants to use machine learning (ML) algorithms to build and train models. The company will use the models to
visualize complex scenarios and to detect trends in customer data. The architecture team wants to integrate its ML models with a reporting
platform to analyze the augmented data and use the data directly in its business intelligence dashboards.
Which solution will meet these requirements with the LEAST operational overhead?
A. Use AWS Glue to create an ML transform to build and train models. Use Amazon OpenSearch Service to visualize the data.
B. Use Amazon SageMaker to build and train models. Use Amazon QuickSight to visualize the data.
C. Use a pre-built ML Amazon Machine Image (AMI) from the AWS Marketplace to build and train models. Use Amazon OpenSearch Service
to visualize the data.
D. Use Amazon QuickSight to build and train models by using calculated elds. Use Amazon QuickSight to visualize the data.

一家电子商务公司希望使用机器学习(ML)算法来构建和训练模型。该公司将利用这些模型
来可视化复杂场景并检测客户数据趋势。架构团队希望将ML模型与报表平台集成,
以分析增强数据并直接在商业智能仪表板中使用这些数据。
哪种方案能以最小的运维开销满足这些需求?
A. 使用AWS Glue创建ML转换来构建和训练模型。使用Amazon OpenSearch Service进行数据可视化。
B. 使用Amazon SageMaker构建和训练模型。使用Amazon QuickSight进行数据可视化。
C. 使用AWS Marketplace中的预构建ML亚马逊机器镜像(AMI)来构建和训练模型。使用Amazon OpenSearch Service
进行数据可视化。
D. 使用Amazon QuickSight通过计算字段构建和训练模型。使用Amazon QuickSight进行数据可视化。

29 / 200

分类: SAA-C03

29. A company is running its production and nonproduction environment workloads in multiple AWS accounts. The accounts are in an organization
in AWS Organizations. The company needs to design a solution that will prevent the modi cation of cost usage tags.
Which solution will meet these requirements?
A. Create a custom AWS Config rule to prevent tag modi cation except by authorized principals.
B. Create a custom trail in AWS CloudTrail to prevent tag modi cation.
C. Create a service control policy (SCP) to prevent tag modi cation except by authorized principals.
D. Create custom Amazon CloudWatch logs to prevent tag modi cation.

一家公司在多个AWS账户中运行其生产环境和非生产环境的工作负载。这些账户属于AWS Organizations中的一个组织。

该公司需要设计一个解决方案,防止成本使用标签被修改。

哪个解决方案能够满足这些要求?

A. 创建一个自定义的AWS Config规则,防止未经授权的主体修改标签。

B. 在AWS CloudTrail中创建自定义跟踪,防止标签被修改。

C. 创建一个服务控制策略(SCP),防止未经授权的主体修改标签。

D. 创建自定义的Amazon CloudWatch日志,防止标签被修改。

30 / 200

分类: SAA-C03

30. A company hosts its application in the AWS Cloud. The application runs on Amazon EC2 instances behind an Elastic Load Balancer in an Auto
Scaling group and with an Amazon DynamoDB table. The company wants to ensure the application can be made available in anotherAWS
Region with minimal downtime.
What should a solutions architect do to meet these requirements with the LEAST amount of downtime?
A. Create an Auto Scaling group and a load balancer in the disaster recovery Region. Configure the DynamoDB table as a global table.
Configure DNS failover to point to the new disaster recovery Region’s load balancer.
B. Create an AWS CloudFormation template to create EC2 instances, load balancers, and DynamoDB tables to be launched when needed
Configure DNS failover to point to the new disaster recovery Region’s load balancer.
C. Create an AWS CloudFormation template to create EC2 instances and a load balancer to be launched when needed. Configure the
DynamoDB table as a global table. Configure DNS failover to point to the new disaster recovery Region’s load balancer.
D. Create an Auto Scaling group and load balancer in the disaster recovery Region. Configure the DynamoDB table as a global table.
Create an Amazon CloudWatch alarm to trigger an AWS Lambda function that updates Amazon Route 53 pointing to the disaster recovery
load balancer.

一家公司将其应用程序托管在AWS云中。该应用程序运行在位于自动扩展组中弹性负载均衡器后方的Amazon EC2实例上,并配有一个Amazon DynamoDB表。公司希望确保该应用程序能够在另一个AWS区域以最短停机时间实现可用性。
解决方案架构师应该采取什么措施,以最少停机时间满足这些要求?
A. 在灾难恢复区域创建一个自动扩展组和负载均衡器。将DynamoDB表配置为全局表。配置DNS故障切换指向新的灾难恢复区域的负载均衡器。
B. 创建一个AWS CloudFormation模板,用于在需要时启动EC2实例、负载均衡器和DynamoDB表。配置DNS故障切换指向新的灾难恢复区域的负载均衡器。
C. 创建一个AWS CloudFormation模板,用于在需要时启动EC2实例和负载均衡器。将DynamoDB表配置为全局表。配置DNS故障切换指向新的灾难恢复区域的负载均衡器。
D. 在灾难恢复区域创建一个自动扩展组和负载均衡器。将DynamoDB表配置为全局表。创建一个Amazon CloudWatch警报以触发AWS Lambda函数更新指向灾难恢复负载均衡器的Amazon Route 53。

31 / 200

分类: SAA-C03

31. A company needs to migrate a MySQL database from its on-premises data center to AWS within 2 weeks. The database is 20 TB in size. The
company wants to complete the migration with minimal downtime.
Which solution will migrate the database MOST cost-effectively?
A. Order an AWS Snowball Edge Storage Optimized device. Use AWS Database Migration Service (AWS DMS) with AWS Schema Conversion
Tool (AWS SCT) to migrate the database with replication of ongoing changes. Send the Snowball Edge device to AWS to nish the
migration and continue the ongoing replication.
B. Order an AWS Snowmobile vehicle. Use AWS Database Migration Service (AWS DMS) with AWS Schema Conversion Tool (AWS SCT) to
migrate the database with ongoing changes. Send the Snowmobile vehicle back to AWS to nish the migration and continue the ongoing
replication.
C. Order an AWS Snowball Edge Compute Optimized with GPU device. Use AWS Database Migration Service (AWS DMS) with AWS Schema
Conversion Tool (AWS SCT) to migrate the database with ongoing changes. Send the Snowball device to AWS to nish the migration and
continue the ongoing replication
D. Order a 1 GB dedicated AWS Direct Connect connection to establish a connection with the data center. Use AWS Database Migration
Service (AWS DMS) with AWS Schema Conversion Tool (AWS SCT) to migrate the database with replication of ongoing changes.

一家公司需要在两周内将其本地数据中心的MySQL数据库迁移到AWS。该数据库的大小为20 TB。
公司希望以最小的停机时间完成迁移。
哪种解决方案能够以最具成本效益的方式迁移数据库?
A. 订购一个AWS Snowball Edge存储优化设备。使用AWS数据库迁移服务(AWS DMS)和AWS模式转换工具(AWS SCT)进行数据库迁移,并复制持续的变化。将Snowball Edge设备发送到AWS以完成迁移并继续进行持续复制。
B. 订购一辆AWS Snowmobile车辆。使用AWS数据库迁移服务(AWS DMS)和AWS模式转换工具(AWS SCT)进行数据库迁移,并复制持续的变化。将Snowmobile车辆送回AWS以完成迁移并继续进行持续复制。
C. 订购一个带有GPU的AWS Snowball Edge计算优化设备。使用AWS数据库迁移服务(AWS DMS)和AWS模式转换工具(AWS SCT)进行数据库迁移,并复制持续的变化。将Snowball设备发送到AWS以完成迁移并继续进行持续复制。
D. 订购一个1 GB的专用AWS Direct Connect连接以建立与数据中心的连接。使用AWS数据库迁移服务(AWS DMS)和AWS模式转换工具(AWS SCT)进行数据库迁移,并复制持续的变化。

32 / 200

分类: SAA-C03

32. A company moved its on-premises PostgreSQL database to an Amazon RDS for PostgreSQL DB instance. The company successfully launched
a new product. The workload on the database has increased. The company wants to accommodate the larger workload without adding
infrastructure.
Which solution will meet these requirements MOST cost-effectively?
A. Buy reserved DB instances for the total workload. Make the Amazon RDS for PostgreSQL DB instance larger.
B. Make the Amazon RDS for PostgreSQL DB instance a Multi-AZ DB instance.
C. Buy reserved DB instances for the total workload. Add another Amazon RDS for PostgreSQL DB instance.
D. Make the Amazon RDS for PostgreSQL DB instance an on-demand DB instance.

一家公司将其本地PostgreSQL数据库迁移到了Amazon RDS for PostgreSQL数据库实例。
公司成功推出了新产品,数据库的工作负载也随之增加。
公司希望在不增加基础设施的情况下适应更大的工作负载。

哪种解决方案能以最具成本效益的方式满足这些需求?

A. 为总工作负载购买预留数据库实例,扩大Amazon RDS for PostgreSQL数据库实例的规模。
B. 将Amazon RDS for PostgreSQL数据库实例设为多可用区数据库实例。
C. 为总工作负载购买预留数据库实例,添加另一个Amazon RDS for PostgreSQL数据库实例。
D. 将Amazon RDS for PostgreSQL数据库实例设为按需数据库实例。

33 / 200

分类: SAA-C03

33. A company operates an ecommerce website on Amazon EC2 instances behind an Application Load Balancer (ALB) in an Auto Scaling group.
The site is experiencing performance issues related to a high request rate from illegitimate external systems with changing IP addresses. The
security team is worried about potential DDoS attacks against the website. The company must block the illegitimate incoming requests in a
way that has a minimal impact on legitimate users.
What should a solutions architect recommend?
A. Deploy Amazon Inspector and associate it with the ALB.
B. Deploy AWS WAF, associate it with the ALB, and Configure a rate-limiting rule.
C. Deploy rules to the network ACLs associated with the ALB to block the incomingtraffic.
D. Deploy Amazon GuardDuty and enable rate-limiting protection when configuring GuardDuty.

一家公司在应用负载均衡器(ALB)后的自动扩展组中的亚马逊EC2实例上运营一个电子商务网站。
该网站正面临与来自不断变换IP地址的非法外部系统的高请求率相关的性能问题。
安全团队担心网站可能遭受DDoS攻击。公司必须以对合法用户影响最小的方式阻止非法传入请求。
解决方案架构师应推荐什么?
A. 部署Amazon Inspector并将其与ALB关联。
B. 部署AWS WAF,将其与ALB关联,并配置速率限制规则。
C. 向与ALB关联的网络ACL部署规则以阻止传入流量。
D. 部署Amazon GuardDuty并在配置GuardDuty时启用速率限制保护。

34 / 200

分类: SAA-C03

34. A company wants to share accounting data with an external auditor. The data is stored in an Amazon RDS DB instance that resides in a private
subnet. The auditor has its own AWS account and requires its own copy of the database.
What is the MOST secure way for the company to share the database with the auditor?
A. Create a read replica of the database. Configure IAM standard database authentication to grant the auditor access.
B. Export the database contents to text files. Store the files in an Amazon S3 bucket. Create a new IAM user for the auditor. Grant the user
access to the S3 bucket.
C. Copy a snapshot of the database to an Amazon S3 bucket. Create an IAM user. Share the user’s keys with the auditor to grant access to
the object in the S3 bucket.
D. Create an encrypted snapshot of the database. Share the snapshot with the auditor. Allow access to the AWS Key Management Service
(AWS KMS) encryption key.

一家公司希望与外部审计员共享会计数据。数据存储在一个位于私有子网中的Amazon RDS数据库实例中。
审计员拥有自己的AWS账户,并要求拥有自己的数据库副本。
该公司与审计员共享数据库的最安全方式是什么?
A. 创建数据库的只读副本。配置IAM标准数据库验证以授予审计员访问权限。
B. 将数据库内容导出为文本文件。将文件存储在一个Amazon S3桶中。为审计员创建新的IAM用户。授予该用户对S3桶的访问权限。
C. 将数据库的快照复制到一个Amazon S3桶中。创建一个IAM用户。与审计员共享用户的密钥以授予对S3桶中对象的访问权限。
D. 创建数据库的加密快照。与审计员共享快照。允许访问AWS密钥管理服务(AWS KMS)加密密钥。

35 / 200

分类: SAA-C03

35. A solutions architect Configured a VPC that has a small range of IP addresses. The number of Amazon EC2 instances that are in the VPC is
increasing, and there is an insu cient number of IP addresses for future workloads.
Which solution resolves this issue with the LEAST operational overhead?
A. Add an additional IPv4 CIDR block to increase the number of IP addresses and create additional subnets in the VPC. Create new
resources in the new subnets by using the new CIDR.
B. Create a second VPC with additional subnets. Use a peering connection to connect the second VPC with the first VPC Update the routes
and create new resources in the subnets of the second VPC.
C. Use AWS Transit Gateway to add a transit gateway and connect a second VPC with the first VPUpdate the routes of the transit gateway
and VPCs. Create new resources in the subnets of the second VPC.
D. Create a second VPC. Create a Site-to-Site VPN connection between the first VPC and the second VPC by using a VPN-hosted solution
on Amazon EC2 and a virtual private gateway. Update the route between VPCs to the traffic through the VPN. Create new resources in the
subnets of the second VPC.

一位解决方案架构师配置了一个具有小范围IP地址的VPC。当前VPC内的亚马逊EC2实例数量正在增加,现有IP地址数量已经无法满足未来工作负载的需求。

哪种解决方案能够以最小的操作开销解决这个问题?

A. 添加额外的IPv4 CIDR块以增加IP地址数量,并在VPC中创建新的子网。使用新的CIDR在新子网中创建新资源。

B. 创建具有额外子网的第二个VPC。使用对等连接将第二个VPC与第一个VPC相连,更新路由表并在第二个VPC的子网中创建新资源。

C. 使用AWS中转网关添加中转网关,并将第二个VPC与第一个VPC连接。更新中转网关和VPC的路由表。在第二个VPC的子网中创建新资源。

D. 创建第二个VPC。通过在亚马逊EC2上部署VPN托管解决方案和虚拟专用网关,在第一个VPC与第二个VPC之间建立站点到站点VPN连接。更新VPC间的路由使流量通过VPN传输。在第二个VPC的子网中创建新资源。

36 / 200

分类: SAA-C03

36. A company used an Amazon RDS for MySQL DB instance during application testing. Before terminating the DB instance at the end of the test
cycle, a solutions architect created two backups. The solutions architect created the first backup by using the mysqldump utility to create a
database dump. The solutions architect created the second backup by enabling the nal DB snapshot option on RDS termination.
The company is now planning for a new test cycle and wants to create a new DB instance from the most recent backup. The company has
chosen a MySQL-compatible edition ofAmazon Aurora to host the DB instance.
Which solutions will create the new DB instance? (Choose two.)
A. Import the RDS snapshot directly into Aurora.
B. Upload the RDS snapshot to Amazon S3. Then import the RDS snapshot into Aurora.
C. Upload the database dump to Amazon S3. Then import the database dump into Aurora.
D. Use AWS Database Migration Service (AWS DMS) to import the RDS snapshot into Aurora.
E. Upload the database dump to Amazon S3. Then use AWS Database Migration Service (AWS DMS) to import the database dump into
Aurora.

一家公司在应用程序测试期间使用了 Amazon RDS for MySQL 数据库实例。在测试周期结束时终止数据库实例之前,解决方案架构师创建了两个备份。解决方案架构师首先使用 mysqldump 工具创建数据库转储来进行第一个备份。解决方案架构师通过在 RDS 终止时启用最终数据库快照选项来创建第二个备份。

公司现在正在规划一个新的测试周期,并希望从最近的备份中创建一个新的数据库实例。公司选择了与 MySQL 兼容的 Amazon Aurora 版本来托管数据库实例。

哪些解决方案可以创建新的数据库实例?(选择两个。)
A. 直接将 RDS 快照导入到 Aurora。
B. 将 RDS 快照上传到 Amazon S3。然后将 RDS 快照导入到 Aurora。
C. 将数据库转储上传到 Amazon S3。然后将数据库转储导入到 Aurora。
D. 使用 AWS Database Migration Service (AWS DMS) 将 RDS 快照导入到 Aurora。
E. 将数据库转储上传到 Amazon S3。然后使用 AWS Database Migration Service (AWS DMS) 将数据库转储导入到 Aurora。

37 / 200

分类: SAA-C03

37. A company hosts a multi-tier web application on Amazon Linux Amazon EC2 instances behind an Application Load Balancer. The instances
run in an Auto Scaling group across multiple Availability Zones. The company observes that the Auto Scaling group launches more On-Demand
Instances when the application’s end users access high volumes of static web content. The company wants to optimize cost.
What should a solutions architect do to redesign the application MOST cost-effectively?
A. Update the Auto Scaling group to use Reserved Instances instead of On-Demand Instances.
B. Update the Auto Scaling group to scale by launching Spot Instances instead of On-Demand Instances.
C. Create an Amazon CloudFront distribution to host the static web contents from an Amazon S3 bucket.
D. Create an AWS Lambda function behind an Amazon API Gateway API to host the static website contents.

一家公司在位于应用负载均衡器后的Amazon Linux Amazon EC2实例上托管了一个多层Web应用程序。
这些实例在一个跨多个可用区的自动扩展组中运行。
公司发现当应用程序的最终用户访问大量静态Web内容时,自动扩展组会启动更多的按需实例。
公司希望优化成本。
解决方案架构师应如何重新设计应用程序才能最具成本效益?
A. 更新自动扩展组,改用预留实例而非按需实例。
B. 更新自动扩展组,通过启动Spot实例而非按需实例来进行扩展。
C. 创建一个Amazon CloudFront分发,从Amazon S3存储桶托管静态Web内容。
D. 在Amazon API Gateway API后面创建一个AWS Lambda函数来托管静态网站内容。

38 / 200

分类: SAA-C03

38. A company stores several petabytes of data across multiple AWS accounts. The company uses AWS Lake Formation to manage its data lake.
The company’s data science team wants to securely share selective data from its accounts with the company’s engineering team for analytical
purposes.
Which solution will meet these requirements with the LEAST operational overhead?
A. Copy the required data to a common account. Create an IAM access role in that account. Grant access by specifying a permission policy
that includes users from the engineering team accounts as trusted entities.
B. Use the Lake Formation permissions Grant command in each account where the data is stored to allow the required engineering team
users to access the data.
C. Use AWS Data Exchange to privately publish the required data to the required engineering team accounts.
D. Use Lake Formation tag-based access control to authorize and grant cross-account permissions for the required data to the engineering
team accounts.

一家公司在多个AWS账户中存储了数PB的数据,并使用AWS Lake Formation来管理其数据湖。
该公司的数据科学团队希望安全地将其账户中的部分数据共享给公司的工程团队用于分析目的。
哪种解决方案能在满足这些需求的同时实现最小的运维开销?
A. 将所需数据复制到一个共用账户。在该账户中创建一个IAM访问角色。通过指定一个包含来自工程团队账户的用户作为受信任实体的权限策略来授予访问权限。
B. 在每个存储数据的账户中使用Lake Formation权限授予命令,允许所需的工程团队用户访问数据。
C. 使用AWS Data Exchange私有发布所需数据到目标工程团队账户。
D. 使用Lake Formation基于标签的访问控制来授权并向工程团队账户授予跨账户访问所需数据的权限。

39 / 200

分类: SAA-C03

39. A company wants to host a scalable web application on AWS. The application will be accessed by users from different geographic regions of
the world. Application users will be able to download and upload unique data up to gigabytes in size. The development team wants a cost
effective solution to minimize upload and download latency and maximize performance.
What should a solutions architect do to accomplish this?
A. Use Amazon S3 with Transfer Acceleration to host the application.
B. Use Amazon S3 with CacheControl headers to host the application.
C. Use Amazon EC2 with Auto Scaling and Amazon CloudFront to host the application.
D. Use Amazon EC2 with Auto Scaling and Amazon ElastiCache to host the application.

一家公司希望在AWS上托管一个可扩展的Web应用程序。该应用程序将被来自世界不同地理区域的用户访问。应用程序用户将能够下载和上传高达GB大小的独特数据。开发团队需要一个经济有效的解决方案,以尽量减少上传和下载延迟并最大化性能。
解决方案架构师应该怎么做才能实现这一目标?
A. 使用带有传输加速功能的Amazon S3来托管应用程序。
B. 使用带有CacheControl标头的Amazon S3来托管应用程序。
C. 使用带有自动扩展功能的Amazon EC2和Amazon CloudFront来托管应用程序。
D. 使用带有自动扩展功能的Amazon EC2和Amazon ElastiCache来托管应用程序。

40 / 200

分类: SAA-C03

40. A company has hired a solutions architect to design a reliable architecture for its application. The application consists of one Amazon RDS DB
instance and two manually provisioned Amazon EC2 instances that run web servers. The EC2 instances are located in a single Availability
Zone.
An employee recently deleted the DB instance, and the application was unavailable for 24 hours as a result. The company is concerned with
the overall reliability of its environment.
What should the solutions architect do to maximize reliability of the application’s infrastructure?
A. Delete one EC2 instance and enable termination protection on the other EC2 instance. Update the DB instance to be Multi-AZ, and
enable deletion protection.
B. Update the DB instance to be Multi-AZ, and enable deletion protection. Place the EC2 instances behind an Application Load Balancer,
and run them in an EC2 Auto Scaling group across multiple Availability Zones.
C. Create an additional DB instance along with an Amazon API Gateway and an AWS Lambda function. Configure the application to invoke
the Lambda function through API Gateway. Have the Lambda function write the data to the two DB instances.
D. Place the EC2 instances in an EC2 Auto Scaling group that has multiple subnets located in multiple Availability Zones. Use Spot
Instances instead of On-Demand Instances. Set up Amazon CloudWatch alarms to monitor the health of the instances Update the DB
instance to be Multi-AZ, and enable deletion protection.

一家公司聘请了一位解决方案架构师来为其应用程序设计一个可靠的架构。该应用程序由一个亚马逊RDS数据库实例和两台手动配置的亚马逊EC2实例组成,这两台EC2实例运行着网络服务器。这些EC2实例位于单个可用区。
最近一名员工删除了数据库实例,导致应用程序停机了24小时。公司对其环境的整体可靠性感到担忧。
解决方案架构师应该采取什么措施来最大限度地提高应用程序基础设施的可靠性?
A. 删除一台EC2实例并对另一台EC2实例启用终止保护。将数据库实例更新为多可用区配置,并启用删除保护。
B. 将数据库实例更新为多可用区配置,并启用删除保护。将EC2实例置于应用负载均衡器后面,并在跨多个可用区的EC2自动扩展组中运行它们。
C. 创建一个额外的数据库实例,以及亚马逊API网关和AWS Lambda函数。配置应用程序通过API网关调用Lambda函数。让Lambda函数将数据写入两个数据库实例。
D. 将EC2实例放入一个包含位于多个可用区的多个子网的EC2自动扩展组中。使用Spot实例而不是按需实例。设置亚马逊CloudWatch警报来监控实例的健康状况。将数据库实例更新为多可用区配置,并启用删除保护。

41 / 200

分类: SAA-C03

41. A company is storing 700 terabytes of data on a large network-attached storage (NAS) system in its corporate data center. The company has a
hybrid environment with a 10 Gbps AWS Direct Connect connection.
After an audit from a regulator, the company has 90 days to move the data to the cloud. The company needs to move the data e ciently and
without disruption. The company still needs to be able to access and update the data during the transfer window.
Which solution will meet these requirements?
A. Create an AWS DataSync agent in the corporate data center. Create a data transfer task Start the transfer to an Amazon S3 bucket.
B. Back up the data to AWS Snowball Edge Storage Optimized devices. Ship the devices to an AWS data center. Mount a target Amazon S3
bucket on the on-premises file system.
C. Use rsync to copy the data directly from local storage to a designated Amazon S3 bucket over the Direct Connect connection.
D. Back up the data on tapes. Ship the tapes to an AWS data center. Mount a target Amazon S3 bucket on the on-premises file system.

一家公司在其企业数据中心的大型网络附加存储(NAS)系统中存储了700 TB的数据。该公司拥有一个混合环境,配备了10 Gbps的AWS Direct Connect连接。
在一次监管机构的审计后,该公司需要在90天内将数据迁移到云端。公司需要高效且无中断地迁移数据,同时在传输窗口期间仍能访问和更新数据。
哪个方案可以满足这些要求?
A. 在企业数据中心创建AWS DataSync代理,创建数据传输任务,开始将数据迁移到Amazon S3存储桶。
B. 将数据备份至AWS Snowball Edge存储优化设备,将设备运送至AWS数据中心,在本地文件系统上挂载目标Amazon S3存储桶。
C. 使用rsync通过Direct Connect连接直接将数据从本地存储复制到指定的Amazon S3存储桶。
D. 将数据备份至磁带,将磁带运送至AWS数据中心,在本地文件系统上挂载目标Amazon S3存储桶。

42 / 200

分类: SAA-C03

42. A company stores data in PDF format in an Amazon S3 bucket. The company must follow a legal requirement to retain all new and existing
data in Amazon S3 for 7 years.
Which solution will meet these requirements with the LEAST operational overhead?
A. Turn on the S3 Versioning feature for the S3 bucket. Configure S3 Lifecycle to delete the data after 7 years. Configure multi-factor
authentication (MFA) delete for all S3 objects.
B. Turn on S3 Object Lock with governance retention mode for the S3 bucket. Set the retention period to expire after 7 years. Recopy all
existing objects to bring the existing data into compliance.
C. Turn on S3 Object Lock with compliance retention mode for the S3 bucket. Set the retention period to expire after 7 years. Recopy all
existing objects to bring the existing data into compliance.
D. Turn on S3 Object Lock with compliance retention mode for the S3 bucket. Set the retention period to expire after 7 years. Use S3 Batch
Operations to bring the existing data into compliance.

一家公司将数据以PDF格式存储在亚马逊S3存储桶中。公司必须遵守一项法律要求,即在亚马逊S3中保留所有新数据和现有数据7年。
哪种解决方案能够以最少的操作开销满足这些要求?
A. 为S3存储桶启用S3版本控制功能。配置S3生命周期策略在7年后删除数据。为所有S3对象配置多因素认证(MFA)删除功能。
B. 为S3存储桶启用采用治理保留模式的S3对象锁定功能。将保留期限设置为7年后过期。重新复制所有现有对象以使现有数据合规。
C. 为S3存储桶启用采用合规保留模式的S3对象锁定功能。将保留期限设置为7年后过期。重新复制所有现有对象以使现有数据合规。
D. 为S3存储桶启用采用合规保留模式的S3对象锁定功能。将保留期限设置为7年后过期。使用S3批量操作使现有数据合规。

43 / 200

分类: SAA-C03

43. A company has a stateless web application that runs on AWS Lambda functions that are invoked by Amazon API Gateway. The company wants
to deploy the application across multiple AWS Regions to provide Regional failover capabilities.
What should a solutions architect do to route traffic to multiple Regions?
A. Create Amazon Route 53 health checks for each Region. Use an active-active failover configuration.
B. Create an Amazon CloudFront distribution with an origin for each Region. Use CloudFront health checks to route traffic.
C. Create a transit gateway. Attach the transit gateway to the API Gateway endpoint in each Region. Configure the transit gateway to route
requests.
D. Create an Application Load Balancer in the primary Region. Set the target group to point to the API Gateway endpoint hostnames in
each Region.

一家公司在AWS Lambda函数上运行着一个无状态网络应用程序,这些函数由Amazon API Gateway调用。公司希望将该应用程序部署到多个AWS区域,以提供区域故障转移能力。

解决方案架构师应该采取什么措施将流量路由到多个区域?

A. 为每个区域创建Amazon Route 53健康检查。使用主动 主动故障转移配置。

B. 为每个区域创建一个带有源的Amazon CloudFront分配。使用CloudFront健康检查来路由流量。

C. 创建一个传输网关。将该传输网关连接到每个区域的API Gateway终端节点。配置传输网关以路由请求。

D. 在主区域创建一个应用负载均衡器。将目标组设置为指向每个区域的API Gateway终端节点主机名。

44 / 200

分类: SAA-C03

44. A company has two VPCs named Management and Production. The Management VPC uses VPNs through a customer gateway to connect to a
single device in the data center. The Production VPC uses a virtual private gateway with two attached AWS Direct Connect connections. The
Management and Production VPCs both use a single VPC peering connection to allow communication between the applications.
What should a solutions architect do to mitigate any single point of failure in this architecture?
A. Add a set of VPNs between the Management and Production VPCs.
B. Add a second virtual private gateway and attach it to the Management VPC.
C. Add a second set of VPNs to the Management VPC from a second customer gateway device.
D. Add a second VPC peering connection between the Management VPC and the Production VPC.

一家公司拥有两个分别名为”管理”和”生产”的虚拟私有云(VPC)。管理VPC通过客户网关使用VPN连接到数据中心中的单一设备。
生产VPC则使用带有两条AWS直连连接附加的虚拟私有网关。
管理VPC和生产VPC两者都使用单一的VPC对等连接来实现应用程序之间的通信。
在这个架构中,解决方案架构师应该采取什么措施来缓解任何单点故障问题?
A. 在管理VPC和生产VPC之间添加一组VPN
B. 添加第二个虚拟私有网关并将其附加到管理VPC
C. 从第二个客户网关设备向管理VPC添加第二组VPN
D. 在管理VPC和生产VPC之间添加第二个VPC对等连接

45 / 200

分类: SAA-C03

45. A company runs its application on an Oracle database. The company plans to quickly migrate to AWS because of limited resources for the
database, backup administration, and data center maintenance. The application uses third-party database features that require privileged
access.
Which solution will help the company migrate the database to AWS MOST cost-effectively?
A. Migrate the database to Amazon RDS for Oracle. Replace third-party features with cloud services.
B. Migrate the database to Amazon RDS Custom for Oracle. Customize the database settings to support third-party features.
C. Migrate the database to an Amazon EC2 Amazon Machine Image (AMI) for Oracle. Customize the database settings to support third
party features.
D. Migrate the database to Amazon RDS for PostgreSQL by rewriting the application code to remove dependency on Oracle APEX.

一家公司在Oracle数据库上运行其应用程序。
由于数据库、备份管理和数据中心维护方面的资源有限,该公司计划快速迁移到AWS。
该应用程序使用了需要特权访问的第三方数据库功能。
哪种解决方案能帮助该公司以最具成本效益的方式将数据库迁移到AWS?
A. 将数据库迁移到Amazon RDS for Oracle。用云服务替换第三方功能。
B. 将数据库迁移到Amazon RDS Custom for Oracle。自定义数据库设置以支持第三方功能。
C. 将数据库迁移到用于Oracle的Amazon EC2 Amazon Machine Image (AMI)。自定义数据库设置以支持第三方功能。
D. 通过重写应用程序代码以消除对Oracle APEX的依赖,将数据库迁移到Amazon RDS for PostgreSQL。

46 / 200

分类: SAA-C03

46. A company has a three-tier web application that is in a single server. The company wants to migrate the application to the AWS Cloud. The
company also wants the application to align with the AWS Well-Architected Framework and to be consistent with AWS recommended best
practices for security, scalability, and resiliency.
Which combination of solutions will meet these requirements? (Choose three.)
A. Create a VPC across two Availability Zones with the application’s existing architecture. Host the application with existing architecture
on an Amazon EC2 instance in a private subnet in each Availability Zone with EC2 Auto Scaling groups. Secure the EC2 instance with
security groups and network access control lists (network ACLs).
B. Set up security groups and network access control lists (network ACLs) to control access to the database layer. Set up a single Amazon
RDS database in a private subnet.
C. Create a VPC across two Availability Zones. Refactor the application to host the web tier, application tier, and database tier. Host each
tier on its own private subnet with Auto Scaling groups for the web tier and application tier.
D. Use a single Amazon RDS database. Allow database access only from the application tier security group.
E. Use Elastic Load Balancers in front of the web tier. Control access by using security groups containing references to each layer’s
security groups.
F. Use an Amazon RDS database Multi-AZ cluster deployment in private subnets. Allow database access only from application tier security
groups.

一家公司拥有一个三层架构的网页应用程序,目前运行在单台服务器上。该公司希望将应用程序迁移至亚马逊云科技(AWS)平台,同时要求该应用符合AWS完善架构框架标准,并遵循AWS在安全性、可扩展性和恢复能力方面的推荐最佳实践。
下列哪组解决方案组合能够满足这些需求?(选择三项)
A. 跨两个可用区创建虚拟私有云(VPC),保持应用程序现有架构。在各自可用区的私有子网中,通过EC2自动扩展组将应用程序以现有架构托管在亚马逊EC2实例上。使用安全组和网络访问控制列表(网络ACL)保护EC2实例。
B. 设置安全组和网络访问控制列表(网络ACL)来控制对数据库层的访问。在私有子网中配置单一亚马逊RDS数据库。
C. 跨两个可用区创建虚拟私有云(VPC)。重构应用程序以分别托管展现层、应用层和数据库层。为展现层和应用层配置自动扩展组,将每个层级部署在独立的私有子网中。
D. 使用单一亚马逊RDS数据库,仅允许来自应用层安全组的数据库访问。
E. 在展现层前端配置弹性负载均衡器,通过引用各层级安全组的安全组来控制访问权限。
F. 在私有子网中部署亚马逊RDS数据库多可用区集群,仅允许来自应用层安全组的数据库访问。

47 / 200

分类: SAA-C03

47. A company is migrating its applications and databases to the AWS Cloud. The company will use Amazon Elastic Container Service (Amazon
ECS), AWS Direct Connect, and Amazon RDS.
Which activities will be managed by the company’s operational team? (Choose three.)
A. Management of the Amazon RDS infrastructure layer, operating system, and platforms
B. Creation of an Amazon RDS DB instance and configuring the scheduled maintenance window
C. Configuration of additional software components on Amazon ECS for monitoring, patch management, log management, and host
intrusion detection
D. Installation of patches for all minor and major database versions for Amazon RDS
E. Ensure the physical security of the Amazon RDS infrastructure in the data center
F. Encryption of the data that moves in transit through Direct Connect

一家公司正在将其应用程序和数据库迁移到AWS云。
该公司将使用亚马逊弹性容器服务(Amazon ECS)、AWS直连和亚马逊关系数据库服务(Amazon RDS)。
哪些活动将由该公司的运维团队管理?(选择三项)
A. 管理Amazon RDS的基础架构层、操作系统和平台
B. 创建Amazon RDS数据库实例并配置计划的维护窗口
C. 在Amazon ECS上配置用于监控、补丁管理、日志管理和主机入侵检测的额外软件组件
D. 为Amazon RDS的所有次要和主要数据库版本安装补丁
E. 确保数据中心内Amazon RDS基础架构的物理安全
F. 对通过直连传输的数据进行加密

48 / 200

分类: SAA-C03

48. A company runs a Java-based job on an Amazon EC2 instance. The job runs every hour and takes 10 seconds to run. The job runs on a
scheduled interval and consumes 1 GB of memory. The CPU utilization of the instance is low except for short surges during which the job uses
the maximum CPU available. The company wants to optimize the costs to run the job.
Which solution will meet these requirements?
A. Use AWS App2Container (A2C) to containerize the job. Run the job as an Amazon Elastic Container Service (Amazon ECS) task on AWS
Fargate with 0.5 virtual CPU (vCPU) and 1 GB of memory.
B. Copy the code into an AWS Lambda function that has 1 GB of memory. Create an Amazon EventBridge scheduled rule to run the code
each hour.
C. Use AWS App2Container (A2C) to containerize the job. Install the container in the existing Amazon Machine Image (AMI). Ensure that
the schedule stops the container when the task nishes.
D. Configure the existing schedule to stop the EC2 instance at the completion of the job and restart the EC2 instance when the next job
starts.

一家公司在亚马逊EC2实例上运行基于Java的定时任务。
该任务每小时运行一次,每次耗时10秒,运行期间消耗1GB内存。
除任务运行期间的短暂高峰外,实例的CPU利用率一直很低,在任务运行时才会使用最大可用CPU资源。
公司希望优化该任务的运行成本。
以下哪种解决方案能满足这些需求?
A. 使用AWS App2Container (A2C)将任务容器化,并在配置0.5个虚拟CPU(vCPU)和1GB内存的AWS Fargate上以Amazon Elastic Container Service(Amazon ECS)任务形式运行
B. 将代码复制到配置1GB内存的AWS Lambda函数中,并创建Amazon EventBridge定时规则每小时执行该代码
C. 使用AWS App2Container (A2C)将任务容器化,并将容器安装到现有的Amazon Machine Image(AMI)中,同时确保任务完成后调度机制能停止容器
D. 配置现有调度策略,在任务完成后停止EC2实例,并在下次任务启动时重新启动该EC2实例

49 / 200

分类: SAA-C03

49. A company wants to implement a backup strategy for Amazon EC2 data and multiple Amazon S3 buckets. Because of regulatory requirements,
the company must retain backup files for a speci c time period. The company must not alter the files for the duration of the retention period.
Which solution will meet these requirements?
A. Use AWS Backup to create a backup vault that has a vault lock in governance mode. Create the required backup plan.
B. Use Amazon Data Lifecycle Manager to create the required automated snapshot policy.
C. Use Amazon S3 File Gateway to create the backup. Configure the appropriate S3 Lifecycle management.
D. Use AWS Backup to create a backup vault that has a vault lock in compliance mode. Create the required backup plan.

一家公司希望为亚马逊EC2数据和多个亚马逊S3存储桶实施备份策略。
由于监管要求,公司必须在特定时间段内保留备份文件,且在保留期内不得更改这些文件。

哪种解决方案可以满足这些要求?

A. 使用AWS Backup创建一个在治理模式下具有保管库锁的备份保管库,并创建所需的备份计划。

B. 使用亚马逊数据生命周期管理器创建所需的自动快照策略。

C. 使用亚马逊S3文件网关创建备份,并配置适当的S3生命周期管理。

D. 使用AWS Backup创建一个在合规模式下具有保管库锁的备份保管库,并创建所需的备份计划。

50 / 200

分类: SAA-C03

50. A company has resources across multiple AWS Regions and accounts. A newly hired solutions architect discovers a previous employee did not
provide details about the resources inventory. The solutions architect needs to build and map the relationship details of the various workloads
across all accounts.
Which solution will meet these requirements in the MOST operationally e cient way?
A. Use AWS Systems Manager Inventory to generate a map view from the detailed view report.
B. Use AWS Step Functions to collect workload details. Build architecture diagrams of the workloads manually.
C. Use Workload Discovery on AWS to generate architecture diagrams of the workloads.
D. Use AWS X-Ray to view the workload details. Build architecture diagrams with relationships.

一家公司在多个AWS区域和账户中拥有资源。一位新聘用的解决方案架构师发现前任员工没有提供关于资源清单的详细信息。该解决方案架构师需要构建并映射所有账户中各种工作负载的关系细节。

哪种解决方案能以最高效的方式满足这些要求?
A. 使用AWS Systems Manager Inventory从详细视图报告中生成地图视图。
B. 使用AWS Step Functions收集工作负载详情。手动构建工作负载的架构图。
C. 使用AWS上的Workload Discovery生成工作负载的架构图。
D. 使用AWS X-Ray查看工作负载详情。构建包含关系的架构图。

51 / 200

分类: SAA-C03

51. A company uses AWS Organizations. The company wants to operate some of its AWS accounts with different budgets. The company wants to
receive alerts and automatically prevent provisioning of additional resources on AWS accounts when the allocated budget threshold is met
during a speci c period.
Which combination of solutions will meet these requirements? (Choose three.)
A. Use AWS Budgets to create a budget. Set the budget amount under the Cost and Usage Reports section of the required AWS accounts.
B. Use AWS Budgets to create a budget. Set the budget amount under the Billing dashboards of the required AWS accounts.
C. Create an IAM user for AWS Budgets to run budget actions with the required permissions.
D. Create an IAM role for AWS Budgets to run budget actions with the required permissions.
E. Add an alert to notify the company when each account meets its budget threshold. Add a budget action that selects the IAM identity
created with the appropriate config rule to prevent provisioning of additional resources.
F. Add an alert to notify the company when each account meets its budget threshold. Add a budget action that selects the IAM identity
created with the appropriate service control policy (SCP) to prevent provisioning of additional resources.

一家公司使用AWS组织。该公司希望以不同的预算运营其部分AWS账户。该公司希望在特定时期内达到分配的预算阈值时,能够接收警报并自动防止在AWS账户上配置额外资源。

哪几种解决方案组合可以满足这些要求?(选择三个。)

A. 使用AWS预算创建预算。在所需AWS账户的”成本与使用报告”部分设置预算金额。

B. 使用AWS预算创建预算。在所需AWS账户的”结算仪表板”下设置预算金额。

C. 为AWS预算创建一个IAM用户,以运行具有所需权限的预算操作。

D. 为AWS预算创建一个IAM角色,以运行具有所需权限的预算操作。

E. 添加一个警报,当每个账户达到其预算阈值时通知公司。添加一个预算操作,选择使用适当配置规则创建的IAM身份以防止配置额外资源。

F. 添加一个警报,当每个账户达到其预算阈值时通知公司。添加一个预算操作,选择使用适当服务控制策略(SCP)创建的IAM身份以防止配置额外资源。

52 / 200

分类: SAA-C03

52. A company runs applications on Amazon EC2 instances in one AWS Region. The company wants to back up the EC2 instances to a second
Region. The company also wants to provision EC2 resources in the second Region and manage the EC2 instances centrally from one AWS
account.
Which solution will meet these requirements MOST cost-effectively?
A. Create a disaster recovery (DR) plan that has a similar number of EC2 instances in the second Region. Configure data replication.
B. Create point-in-time Amazon Elastic Block Store (Amazon EBS) snapshots of the EC2 instances. Copy the snapshots to the second
Region periodically.
C. Create a backup plan by using AWS Backup. Configure cross-Region backup to the second Region for the EC2 instances.
D. Deploy a similar number of EC2 instances in the second Region. Use AWS DataSync to transfer the data from the source Region to the
second Region.

一家公司在单个AWS区域的亚马逊EC2实例上运行应用程序。该公司希望将这些EC2实例备份到第二个区域。
同时,该公司还希望在第二个区域配置EC2资源,并通过一个AWS账户集中管理这些EC2实例。

以下哪种解决方案能以最具成本效益的方式满足这些需求?

A. 制定灾难恢复(DR)计划,在第二个区域部署相同数量的EC2实例。配置数据复制。
B. 创建EC2实例的亚马逊弹性块存储(Amazon EBS)时间点快照。定期将这些快照复制到第二个区域。
C. 使用AWS Backup创建备份计划。为EC2实例配置跨区域备份至第二个区域。
D. 在第二个区域部署相同数量的EC2实例。使用AWS DataSync将数据从源区域传输至第二个区域。

53 / 200

分类: SAA-C03

53. A company that uses AWS is building an application to transfer data to a product manufacturer. The company has its own identity provider
(IdP). The company wants the IdP to authenticate application users while the users use the application to transfer data. The company must
use Applicability Statement 2 (AS2) protocol.
Which solution will meet these requirements?
A. Use AWS DataSync to transfer the data. Create an AWS Lambda function for IdP authentication.
B. Use Amazon AppFlow ows to transfer the data. Create an Amazon Elastic Container Service (Amazon ECS) task for IdP authentication.
C. Use AWS Transfer Family to transfer the data. Create an AWS Lambda function for IdP authentication.
D. Use AWS Storage Gateway to transfer the data. Create an Amazon Cognito identity pool for IdP authentication.

一家使用亚马逊云服务(AWS)的公司正在构建一个向产品制造商传输数据的应用程序。该公司拥有自己的身份提供商(IdP)。
该公司希望用户在使用应用程序传输数据时,通过该IdP对应用程序用户进行身份验证。公司必须使用适用性声明2(AS2)协议。
以下哪种解决方案能够满足这些需求?
A. 使用AWS DataSync传输数据。创建一个AWS Lambda函数用于IdP身份验证。
B. 使用Amazon AppFlow传输数据。创建一个Amazon Elastic Container Service(Amazon ECS)任务用于IdP身份验证。
C. 使用AWS Transfer Family传输数据。创建一个AWS Lambda函数用于IdP身份验证。
D. 使用AWS Storage Gateway传输数据。创建一个Amazon Cognito身份池用于IdP身份验证。

54 / 200

分类: SAA-C03

54. A solutions architect is designing a RESTAPI in Amazon API Gateway for a cash payback service. The application requires 1 GB of memory and
2 GB of storage for its computation resources. The application will require that the data is in a relational format.
Which additional combination ofAWS services will meet these requirements with the LEAST administrative effort? (Choose two.)
A. Amazon EC2
B. AWS Lambda
C. Amazon RDS
D. Amazon DynamoDB
E. Amazon Elastic Kubernetes Services (Amazon EKS)

一位解决方案架构师正在为现金返现服务设计亚马逊API网关中的RESTAPI。该应用程序需要1GB内存和
2GB存储空间作为其计算资源。应用程序要求数据以关系格式存储。
以下哪两种AWS服务的组合能以最少的管理工作量满足这些要求?(选择两项)
A. 亚马逊弹性计算云(Amazon EC2)
B. AWS Lambda
C. 亚马逊关系数据库服务(Amazon RDS)
D. 亚马逊DynamoDB
E. 亚马逊弹性Kubernetes服务(Amazon EKS)

55 / 200

分类: SAA-C03

55. A company uses AWS Organizations to run workloads within multiple AWS accounts. A tagging policy adds department tags to AWS resources
when the company creates tags.
An accounting team needs to determine spending on Amazon EC2 consumption. The accounting team must determine which departments are
responsible for the costs regardless ofAWS account. The accounting team has access to AWS Cost Explorer for all AWS accounts within the
organization and needs to access all reports from Cost Explorer.
Which solution meets these requirements in the MOST operationally e cient way?
A. From the Organizations management account billing console, activate a user-de ned cost allocation tag named department. Create
one cost report in Cost Explorer grouping by tag name, and lter by EC2.
B. From the Organizations management account billing console, activate an AWS-de ned cost allocation tag named department. Create
one cost report in Cost Explorer grouping by tag name, and lter by EC2.
C. From the Organizations member account billing console, activate a user-de ned cost allocation tag named department. Create one cost
report in Cost Explorer grouping by the tag name, and lter by EC2.
D. From the Organizations member account billing console, activate an AWS-de ned cost allocation tag named department. Create one
cost report in Cost Explorer grouping by tag name, and lter by EC2.

一家公司使用AWS组织在多个AWS账户中运行工作负载。当公司创建标签时,标记策略会向AWS资源添加部门标签。

会计团队需要确定Amazon EC2消耗的支出。会计团队必须确定哪些部门应对成本负责,而不考虑AWS账户。会计团队有权访问组织内所有AWS账户的AWS成本资源管理器,并需要从成本资源管理器中获取所有报告。

哪种解决方案能以最具操作效率的方式满足这些要求?

A. 从组织管理账户的账单控制台,激活名为”department”的用户定义成本分配标签。在成本资源管理器中创建一个按标签名称分组并筛选EC2的成本报告。

B. 从组织管理账户的账单控制台,激活名为”department”的AWS定义成本分配标签。在成本资源管理器中创建一个按标签名称分组并筛选EC2的成本报告。

C. 从组织成员账户的账单控制台,激活名为”department”的用户定义成本分配标签。在成本资源管理器中创建一个按标签名称分组并筛选EC2的成本报告。

D. 从组织成员账户的账单控制台,激活名为”department”的AWS定义成本分配标签。在成本资源管理器中创建一个按标签名称分组并筛选EC2的成本报告。

56 / 200

分类: SAA-C03

56. A company wants to securely exchange data between its software as a service (SaaS) application Salesforce account and Amazon S3. The
company must encrypt the data at rest by using AWS Key Management Service (AWS KMS) customer managed keys (CMKs). The company
must also encrypt the data in transit. The company has enabled API access for the Salesforce account.
A. Create AWS Lambda functions to transfer the data securely from Salesforce to Amazon S3.
B. Create an AWS Step Functions work ow. De ne the task to transfer the data securely from Salesforce to Amazon S3.
C. Create Amazon AppFlow ows to transfer the data securely from Salesforce to Amazon S3.
D. Create a custom connector for Salesforce to transfer the data securely from Salesforce to Amazon S3.

一家公司希望在其软件即服务(SaaS)应用程序Salesforce账户与亚马逊S3之间安全地交换数据。
公司必须使用AWS密钥管理服务(AWS KMS)的客户托管密钥(CMKs)对静态数据进行加密。
同时,公司还必须对传输中的数据进行加密。公司已为Salesforce账户启用了API访问权限。
A. 创建AWS Lambda函数,将数据从Salesforce安全传输到Amazon S3。
B. 创建一个AWS Step Functions工作流。定义将数据从Salesforce安全传输到Amazon S3的任务。
C. 创建Amazon AppFlow流程,将数据从Salesforce安全传输到Amazon S3。
D. 为Salesforce创建一个自定义连接器,将数据从Salesforce安全传输到Amazon S3。

57 / 200

分类: SAA-C03

57. A company is developing a mobile gaming app in a single AWS Region. The app runs on multiple Amazon EC2 instances in an Auto Scaling
group. The company stores the app data in Amazon DynamoDB. The app communicates by using TCP traffic and UDP traffic between the users
and the servers. The application will be used globally. The company wants to ensure the lowest possible latency for all users.
Which solution will meet these requirements?
A. Use AWS Global Accelerator to create an accelerator. Create an Application Load Balancer (ALB) behind an accelerator endpoint that
uses Global Accelerator integration and listening on the TCP and UDP ports. Update the Auto Scaling group to register instances on the
ALB.
B. Use AWS Global Accelerator to create an accelerator. Create a Network Load Balancer (NLB) behind an accelerator endpoint that uses
Global Accelerator integration and listening on the TCP and UDP ports. Update the Auto Scaling group to register instances on the NLB.
C. Create an Amazon CloudFront content delivery network (CDN) endpoint. Create a Network Load Balancer (NLB) behind the endpoint
and listening on the TCP and UDP ports. Update the Auto Scaling group to register instances on the NLB. Update CloudFront to use the
NLB as the origin.
D. Create an Amazon CloudFront content delivery network (CDN) endpoint. Create an Application Load Balancer (ALB) behind the endpoint
and listening on the TCP and UDP ports. Update the Auto Scaling group to register instances on the ALB. Update CloudFront to use the
ALB as the origin.

一家公司正在单个AWS区域开发一款手机游戏应用程序。该应用程序在自动扩展组中的多个Amazon EC2实例上运行。公司使用Amazon DynamoDB存储应用程序数据。应用程序通过用户和服务器之间的TCP流量与UDP流量进行通信。该应用程序将在全球范围内使用。公司希望为所有用户确保尽可能低的延迟。
哪种解决方案可以满足这些需求?
A. 使用AWS Global Accelerator创建一个加速器。在具有Global Accelerator集成的加速器终端节点后面创建并监听TCP和UDP端口的应用程序负载均衡器(ALB)。更新自动扩展组以在ALB上注册实例。
B. 使用AWS Global Accelerator创建一个加速器。在具有Global Accelerator集成的加速器终端节点后面创建并监听TCP和UDP端口的网络负载均衡器(NLB)。更新自动扩展组以在NLB上注册实例。
C. 创建一个Amazon CloudFront内容分发网络(CDN)终端节点。在该终端节点后面创建并监听TCP和UDP端口的网络负载均衡器(NLB)。更新自动扩展组以在NLB上注册实例。更新CloudFront以使用NLB作为源站。
D. 创建一个Amazon CloudFront内容分发网络(CDN)终端节点。在该终端节点后面创建并监听TCP和UDP端口的应用程序负载均衡器(ALB)。更新自动扩展组以在ALB上注册实例。更新CloudFront以使用ALB作为源站。

58 / 200

分类: SAA-C03

58. A company has an application that processes customer orders. The company hosts the application on an Amazon EC2 instance that saves the
orders to an Amazon Aurora database. Occasionally when traffic is high the workload does not process orders fast enough.
What should a solutions architect do to write the orders reliably to the database as quickly as possible?
A. Increase the instance size of the EC2 instance when traffic is high. Write orders to Amazon Simple Notification Service (Amazon SNS).
Subscribe the database endpoint to the SNS topic.
B. Write orders to an Amazon Simple Queue Service (Amazon SQS) queue. Use EC2 instances in an Auto Scaling group behind an
Application Load Balancer to read from the SQS queue and process orders into the database.
C. Write orders to Amazon Simple Notification Service (Amazon SNS). Subscribe the database endpoint to the SNS topic. Use EC2
instances in an Auto Scaling group behind an Application Load Balancer to read from the SNS topic.
D. Write orders to an Amazon Simple Queue Service (Amazon SQS) queue when the EC2 instance reaches CPU threshold limits. Use
scheduled scaling of EC2 instances in an Auto Scaling group behind an Application Load Balancer to read from the SQS queue and
process orders into the database.

一家公司拥有一个处理客户订单的应用程序。该公司将应用程序托管在一个亚马逊EC2实例上,该实例将订单保存到一个亚马逊Aurora数据库中。偶尔当流量较高时,工作负载无法足够快速地处理订单。
解决方案架构师应该如何操作才能尽可能快速可靠地将订单写入数据库?
A. 在流量高时增加EC2实例的实例大小。将订单写入亚马逊简单通知服务(Amazon SNS)。将数据库端点订阅到SNS主题。
B. 将订单写入亚马逊简单队列服务(Amazon SQS)队列。使用应用程序负载均衡器后面的自动扩展组中的EC2实例从SQS队列读取并将订单处理到数据库中。
C. 将订单写入亚马逊简单通知服务(Amazon SNS)。将数据库端点订阅到SNS主题。使用应用程序负载均衡器后面的自动扩展组中的EC2实例从SNS主题读取。
D. 当EC2实例达到CPU阈值限制时将订单写入亚马逊简单队列服务(Amazon SQS)队列。使用应用程序负载均衡器后面的自动扩展组中的EC2实例的定时扩展从SQS队列读取并将订单处理到数据库中。

59 / 200

分类: SAA-C03

59. An IoT company is releasing a mattress that has sensors to collect data about a user’s sleep. The sensors will send data to an Amazon S3
bucket. The sensors collect approximately 2 MB of data every night for each mattress. The company must process and summarize the data for
each mattress. The results need to be available as soon as possible. Data processing will require 1 GB of memory and will nish within 30
seconds.
Which solution will meet these requirements MOST cost-effectively?
A. Use AWS Glue with a Scala job
B. Use Amazon EMR with an Apache Spark script
C. Use AWS Lambda with a Python script
D. Use AWS Glue with a PySpark job

一家物联网公司正在推出一款带有传感器的床垫,用于收集用户的睡眠数据。传感器将把数据发送到亚马逊S3存储桶。每张床垫每晚大约产生2 MB的数据。
公司需要对每张床垫的数据进行处理和汇总。处理结果需要尽快可用。数据处理需要1 GB内存并能在30秒内完成。
以下哪种解决方案能以最具成本效益的方式满足这些需求?
A. 使用带有Scala作业的AWS Glue
B. 使用带有Apache Spark脚本的Amazon EMR
C. 使用带有Python脚本的AWS Lambda
D. 使用带有PySpark作业的AWS Glue

60 / 200

分类: SAA-C03

60. A company hosts an online shopping application that stores all orders in an Amazon RDS for PostgreSQL Single-AZ DB instance. Management
wants to eliminate single points of failure and has asked a solutions architect to recommend an approach to minimize database downtime
without requiring any changes to the application code.
Which solution meets these requirements?
A. Convert the existing database instance to a Multi-AZ deployment by modifying the database instance and specifying the Multi-AZ
option.
B. Create a new RDS Multi-AZ deployment. Take a snapshot of the current RDS instance and restore the new Multi-AZ deployment with the
snapshot.
C. Create a read-only replica of the PostgreSQL database in another Availability Zone. Use Amazon Route 53 weighted record sets to
distribute requests across the databases.
D. Place the RDS for PostgreSQL database in an Amazon EC2 Auto Scaling group with a minimum group size of two. Use Amazon Route 53
weighted record sets to distribute requests across instances.

一家公司托管了一个在线购物应用程序,该应用程序将所有订单存储在亚马逊RDS for PostgreSQL单可用区数据库实例中。
管理层希望消除单点故障,并已要求解决方案架构师推荐一种方法来最大限度地减少数据库停机时间,且无需对应用程序代码进行任何更改。
哪种解决方案满足这些要求?
A. 通过修改数据库实例并指定多可用区选项,将现有数据库实例转换为多可用区部署。
B. 创建一个新的RDS多可用区部署。对当前RDS实例进行快照,并使用该快照恢复新的多可用区部署。
C. 在另一个可用区中创建一个PostgreSQL数据库的只读副本。使用亚马逊Route 53加权记录集在数据库之间分配请求。
D. 将RDS for PostgreSQL数据库放置在亚马逊EC2自动扩展组中,最小组大小为两个。使用亚马逊Route 53加权记录集在实例之间分配请求。

61 / 200

分类: SAA-C03

61. A company is developing an application to support customer demands. The company wants to deploy the application on multiple Amazon EC2
Nitro-based instances within the same Availability Zone. The company also wants to give the application the ability to write to multiple block
storage volumes in multiple EC2 Nitro-based instances simultaneously to achieve higher application availability.
Which solution will meet these requirements?
A. Use General Purpose SSD (gp3) EBS volumes with Amazon Elastic Block Store (Amazon EBS) Multi-Attach
B. Use Throughput Optimized HDD (st1) EBS volumes with Amazon Elastic Block Store (Amazon EBS) Multi-Attach
C. Use Provisioned IOPS SSD (io2) EBS volumes with Amazon Elastic Block Store (Amazon EBS) Multi-Attach
D. Use General Purpose SSD (gp2) EBS volumes with Amazon Elastic Block Store (Amazon EBS) Multi-Attach

一家公司正在开发一个应用程序以支持客户需求。公司希望将应用程序部署在同一可用区内的多个基于Amazon EC2 Nitro的实例上。
公司还希望该应用程序能够同时向多个基于EC2 Nitro的实例中的多个块存储卷写入数据,以实现更高的应用程序可用性。
以下哪种解决方案可以满足这些要求?
A. 将通用型SSD (gp3) EBS卷与Amazon Elastic Block Store (Amazon EBS)多挂载功能一起使用
B. 将吞吐优化型HDD (st1) EBS卷与Amazon Elastic Block Store (Amazon EBS)多挂载功能一起使用
C. 将预配置IOPS SSD (io2) EBS卷与Amazon Elastic Block Store (Amazon EBS)多挂载功能一起使用
D. 将通用型SSD (gp2) EBS卷与Amazon Elastic Block Store (Amazon EBS)多挂载功能一起使用

62 / 200

分类: SAA-C03

62. A company designed a stateless two-tier application that uses Amazon EC2 in a single Availability Zone and an Amazon RDS Multi-AZ DB
instance. New company management wants to ensure the application is highly available.
What should a solutions architect do to meet this requirement?
A. Configure the application to use Multi-AZ EC2 Auto Scaling and create an Application Load Balancer
B. Configure the application to take snapshots of the EC2 instances and send them to a different AWS Region
C. Configure the application to use Amazon Route 53 latency-based routing to feed requests to the application
D. Configure Amazon Route 53 rules to handle incoming requests and create a Multi-AZ Application Load Balancer

一家公司设计了一个无状态双层应用程序,该程序在单个可用区中使用亚马逊EC2,并采用了亚马逊RDS多可用区数据库实例。新公司管理层希望确保该应用程序具有高可用性。

解决方案架构师应如何满足这一要求?

A. 配置应用程序以使用多可用区EC2自动扩展并创建应用程序负载均衡器
B. 配置应用程序对EC2实例制作快照,并将快照发送至不同的AWS区域
C. 配置应用程序使用亚马逊Route 53基于延迟的路由功能将请求导向应用程序
D. 配置亚马逊Route 53规则以处理传入请求,并创建一个多可用区应用程序负载均衡器

63 / 200

分类: SAA-C03

63. A company uses AWS Organizations. A member account has purchased a Compute Savings Plan. Because of changes in the workloads inside
the member account, the account no longer receives the full bene t of the Compute Savings Plan commitment. The company uses less than
50% of its purchased compute power.
A. Turn on discount sharing from the Billing Preferences section of the account console in the member account that purchased the
Compute Savings Plan.
B. Turn on discount sharing from the Billing Preferences section of the account console in the company’s Organizations management
account.
C. Migrate additional compute workloads from another AWS account to the account that has the Compute Savings Plan.
D. Sell the excess Savings Plan commitment in the Reserved Instance Marketplace.

一家公司使用了AWS组织(AWS Organizations)。某个成员账户购买了一个计算节约计划(Compute Savings Plan)。由于该成员账户内工作负载的变化,该账户不再能充分利用计算节约计划的承诺用量。目前公司使用的计算资源不到其购买计算能力的50%。
A. 在购买计算节约计划的成员账户中,从账户控制台的”账单偏好设置”(Billing Preferences)部分开启折扣共享功能。
B. 在公司的组织管理账户中,从账户控制台的”账单偏好设置”(Billing Preferences)部分开启折扣共享功能。
C. 将其他AWS账户中的额外计算工作负载迁移至拥有计算节约计划的账户。
D. 在预留实例市场(Reserved Instance Marketplace)出售多余的节约计划承诺用量。

64 / 200

分类: SAA-C03

64. A company is developing a microservices application that will provide a search catalog for customers. The company must use REST APIs to
present the frontend of the application to users. The REST APIs must access the backend services that the company hosts in containers in
private VPC subnets.
Which solution will meet these requirements?
A. Design a WebSocket API by using Amazon API Gateway. Host the application in Amazon Elastic Container Service (Amazon ECS) in a
private subnet. Create a private VPC link for API Gateway to access Amazon ECS.
B. Design a REST API by using Amazon API Gateway. Host the application in Amazon Elastic Container Service (Amazon ECS) in a private
subnet. Create a private VPC link for API Gateway to access Amazon ECS.
C. Design a WebSocket API by using Amazon API Gateway. Host the application in Amazon Elastic Container Service (Amazon ECS) in a
private subnet. Create a security group for API Gateway to access Amazon ECS.
D. Design a REST API by using Amazon API Gateway. Host the application in Amazon Elastic Container Service (Amazon ECS) in a private
subnet. Create a security group for API Gateway to access Amazon ECS.

一家公司正在开发一个微服务应用程序,该程序将为客户提供一个搜索目录。公司必须使用REST API向用户展示应用程序的前端。这些REST API需要访问公司托管在私有VPC子网容器中的后端服务。
哪种解决方案能够满足这些要求?
A. 使用Amazon API Gateway设计一个WebSocket API。将应用程序托管在私有子网的Amazon Elastic Container Service (Amazon ECS)中。创建一个私有VPC链接让API Gateway访问Amazon ECS。
B. 使用Amazon API Gateway设计一个REST API。将应用程序托管在私有子网的Amazon Elastic Container Service (Amazon ECS)中。创建一个私有VPC链接让API Gateway访问Amazon ECS。
C. 使用Amazon API Gateway设计一个WebSocket API。将应用程序托管在私有子网的Amazon Elastic Container Service (Amazon ECS)中。创建一个安全组让API Gateway访问Amazon ECS。
D. 使用Amazon API Gateway设计一个REST API。将应用程序托管在私有子网的Amazon Elastic Container Service (Amazon ECS)中。创建一个安全组让API Gateway访问Amazon ECS。

65 / 200

分类: SAA-C03

65. A company stores raw collected data in an Amazon S3 bucket. The data is used for several types of analytics on behalf of the company’s
customers. The type of analytics requested determines the access pattern on the S3 objects.
The company cannot predict or control the access pattern. The company wants to reduce its S3 costs.
Which solution will meet these requirements?
A. Use S3 replication to transition infrequently accessed objects to S3 Standard-Infrequent Access (S3 Standard-IA)
B. Use S3 Lifecycle rules to transition objects from S3 Standard to Standard-Infrequent Access (S3 Standard-IA)
C. Use S3 Lifecycle rules to transition objects from S3 Standard to S3 Intelligent-Tiering
D. Use S3 Inventory to identify and transition objects that have not been accessed from S3 Standard to S3 Intelligent-Tiering

一家公司将收集的原始数据存储在亚马逊S3存储桶中。这些数据用于代表公司客户进行多种类型的分析。
请求的分析类型决定了S3对象的访问模式。
公司无法预测或控制访问模式。公司希望降低其S3成本。
哪种解决方案能够满足这些需求?
A. 使用S3复制将不常访问的对象转移至S3标准-低频访问(S3 Standard-IA)
B. 使用S3生命周期规则将对象从S3标准转移至标准-低频访问(S3 Standard-IA)
C. 使用S3生命周期规则将对象从S3标准转移至S3智能分层
D. 使用S3清单识别未访问对象并将其从S3标准转移至S3智能分层

66 / 200

分类: SAA-C03

66. A company has applications hosted on Amazon EC2 instances with IPv6 addresses. The applications must initiate communications with other
external applications using the internet. However the company’s security policy states that any external service cannot initiate a connection
to the EC2 instances.
What should a solutions architect recommend to resolve this issue?
A. Create a NAT gateway and make it the destination of the subnet’s route table
B. Create an internet gateway and make it the destination of the subnet’s route table
C. Create a virtual private gateway and make it the destination of the subnet’s route table
D. Create an egress-only internet gateway and make it the destination of the subnet’s route table

一家公司在使用IPv6地址的Amazon EC2实例上托管应用程序。这些应用程序必须通过互联网与其他外部应用程序发起通信。然而,公司的安全策略规定任何外部服务都不得主动向EC2实例发起连接。

解决方案架构师应建议采取什么措施来解决此问题?
A. 创建NAT网关并将其设为子网路由表的目标
B. 创建互联网网关并将其设为子网路由表的目标
C. 创建虚拟专用网关并将其设为子网路由表的目标
D. 创建仅出口互联网网关并将其设为子网路由表的目标

67 / 200

分类: SAA-C03

67. A company is creating an application that runs on containers in a VPC. The application stores and accesses data in an Amazon S3 bucket.
During the development phase, the application will store and access 1 TB of data in Amazon S3 each day. The company wants to minimize
costs and wants to prevent traffic from traversing the internet whenever possible.
Which solution will meet these requirements?
A. Enable S3 Intelligent-Tiering for the S3 bucket
B. Enable S3 Transfer Acceleration for the S3 bucket
C. Create a gateway VPC endpoint for Amazon S3. Associate this endpoint with all route tables in the VPC
D. Create an interface endpoint for Amazon S3 in the VPC. Associate this endpoint with all route tables in the VPC

一家公司正在开发一个运行在虚拟私有云(VPC)中容器上的应用程序。该应用程序会在亚马逊简单存储服务(Amazon S3)存储桶中存储和访问数据。
在开发阶段,该应用程序每天将在亚马逊简单存储服务(Amazon S3)中存储和访问1TB的数据。公司希望尽可能降低成本,并尽可能避免流量通过公共互联网传输。
以下哪种解决方案能够满足这些需求?
A. 为S3存储桶启用S3智能分层(S3 Intelligent-Tiering)功能
B. 为S3存储桶启用S3传输加速(S3 Transfer Acceleration)功能
C. 为亚马逊简单存储服务(Amazon S3)创建一个网关型VPC终端节点(gateway VPC endpoint),并将该终端节点与VPC中的所有路由表关联
D. 在VPC中为亚马逊简单存储服务(Amazon S3)创建一个接口型终端节点(interface endpoint),并将该终端节点与VPC中的所有路由表关联

68 / 200

分类: SAA-C03

68. A company has a mobile chat application with a data store based in Amazon DynamoDB. Users would like new messages to be read with as
little latency as possible. A solutions architect needs to design an optimal solution that requires minimal application changes.
Which method should the solutions architect select?
A. Configure Amazon DynamoDB Accelerator (DAX) for the new messages table. Update the code to use the DAX endpoint.
B. Add DynamoDB read replicas to handle the increased read load. Update the application to point to the read endpoint for the read
replicas.
C. Double the number of read capacity units for the new messages table in DynamoDB. Continue to use the existing DynamoDB endpoint.
D. Add an Amazon ElastiCache for Redis cache to the application stack. Update the application to point to the Redis cache endpoint
instead of DynamoDB.

一家公司拥有一个基于Amazon DynamoDB数据存储的移动聊天应用程序。用户希望新消息能以尽可能低的延迟被读取。

解决方案架构师需要设计一个需要最少应用程序更改的最佳解决方案。

解决方案架构师应该选择哪种方法?

A. 为新消息表配置Amazon DynamoDB加速器(DAX)。更新代码以使用DAX端点。

B. 添加DynamoDB读取副本来处理增加的读取负载。更新应用程序以指向读取副本的读取端点。

C. 将DynamoDB中新消息表的读取容量单元数量增加一倍。继续使用现有的DynamoDB端点。

D. 在应用程序堆栈中添加Amazon ElastiCache for Redis缓存。更新应用程序以指向Redis缓存端点而非DynamoDB。

69 / 200

分类: SAA-C03

69. A company hosts a website on Amazon EC2 instances behind an Application Load Balancer (ALB). The website serves static content. Website
traffic is increasing, and the company is concerned about a potential increase in cost.
A. Create an Amazon CloudFront distribution to cache state files at edge locations
B. Create an Amazon ElastiCache cluster. Connect the ALB to the ElastiCache cluster to serve cached les
C. Create an AWS WAF web ACL and associate it with the ALB. Add a rule to the web ACL to cache static les
D. Create a second ALB in an alternative AWS Region. Route user traffic to the closest Region to minimize data transfer costs

一家公司在应用负载均衡器(ALB)后端的亚马逊EC2实例上托管了一个网站。该网站提供静态内容。
网站流量正在增加,公司对潜在的成本上升表示担忧。
A. 创建一个亚马逊CloudFront分发,在边缘位置缓存静态文件
B. 创建一个亚马逊ElastiCache集群。将ALB连接到ElastiCache集群以提供缓存文件
C. 创建一个AWS WAF Web ACL并将其与ALB关联。向Web ACL添加规则以缓存静态文件
D. 在另一个AWS区域创建第二个ALB。将用户流量路由至最近的区域以最小化数据传输成本

70 / 200

分类: SAA-C03

70. A company has multiple VPCs across AWS Regions to support and run workloads that are isolated from workloads in other Regions. Because
of a recent application launch requirement, the company’s VPCs must communicate with all other VPCs across all Regions.
Which solution will meet these requirements with the LEAST amount of administrative effort?
A. Use VPC peering to manage VPC communication in a single Region. Use VPC peering across Regions to manage VPC communications.
B. Use AWS Direct Connect gateways across all Regions to connect VPCs across regions and manage VPC communications.
C. Use AWS Transit Gateway to manage VPC communication in a single Region and Transit Gateway peering across Regions to manage
VPC communications.
D. Use AWS PrivateLink across all Regions to connect VPCs across Regions and manage VPC communications

一家公司在多个AWS区域拥有多个VPC,用于支持并运行与其他区域工作负载隔离的工作负载。由于最近的应用发布需求,公司的VPC必须与所有其他区域的所有VPC进行通信。
哪种解决方案能以最少的管理工作量满足这些需求?
A. 使用VPC对等连接管理单个区域内的VPC通信。使用跨区域VPC对等连接管理VPC间的通信。
B. 在所有区域使用AWS Direct Connect网关跨区域连接VPC并管理VPC通信。
C. 使用AWS Transit Gateway管理单个区域内的VPC通信,并通过跨区域Transit Gateway对等连接管理VPC通信。
D. 在所有区域使用AWS PrivateLink跨区域连接VPC并管理VPC通信。

71 / 200

分类: SAA-C03

71. A company is designing a containerized application that will use Amazon Elastic Container Service (Amazon ECS). The application needs to
access a shared file system that is highly durable and can recover data to another AWS Region with a recovery point objective (RPO) of 8
hours. The file system needs to provide a mount target m each Availability Zone within a Region.
A solutions architect wants to use AWS Backup to manage the replication to another Region.
Which solution will meet these requirements?
A. Amazon FSx for Windows File Server with a Multi-AZ deployment
B. Amazon FSx for NetApp ONTAP with a Multi-AZ deployment
C. Amazon Elastic File System (Amazon EFS) with the Standard storage class
D. Amazon FSx for OpenZFS

一家公司正在设计一个使用亚马逊弹性容器服务(Amazon ECS)的容器化应用程序。该应用需要访问一个高度耐用的共享文件系统,并且能够将数据恢复到另一个AWS区域,恢复点目标(RPO)为8小时。文件系统需要在每个区域的每个可用区内提供一个挂载目标。

一位解决方案架构师希望使用AWS Backup来管理跨区域复制。

哪个解决方案能够满足这些需求?

A. 采用多可用区部署的Amazon FSx for Windows File Server
B. 采用多可用区部署的Amazon FSx for NetApp ONTAP
C. 采用标准存储类的亚马逊弹性文件系统(Amazon EFS)
D. Amazon FSx for OpenZFS

72 / 200

分类: SAA-C03

72. A company is expecting rapid growth in the near future. A solutions architect needs to Configure existing users and grant permissions to new
users on AWS. The solutions architect has decided to create IAM groups. The solutions architect will add the new users to IAM groups based
on department.
Which additional action is the MOST secure way to grant permissions to the new users?
A. Apply service control policies (SCPs) to manage access permissions
B. Create IAM roles that have least privilege permission. Attach the roles to the IAM groups
C. Create an IAM policy that grants least privilege permission. Attach the policy to the IAM groups
D. Create IAM roles. Associate the roles with a permissions boundary that de nes the maximum permissions

一家公司预计在不久的将来会快速增长。
一位解决方案架构师需要配置现有用户并向AWS上的新用户授予权限。
解决方案架构师决定创建IAM组。
解决方案架构师将根据部门将新用户添加到IAM组中。

哪种额外操作是向新用户授予权限的最安全方式?

A. 应用服务控制策略(SCPs)来管理访问权限
B. 创建具有最小权限的IAM角色,将这些角色附加到IAM组
C. 创建授予最小权限的IAM策略,将该策略附加到IAM组
D. 创建IAM角色,将角色与定义最大权限的权限边界关联

73 / 200

分类: SAA-C03

73. A law rm needs to share information with the public. The information includes hundreds of files that must be publicly readable. Modi cations
or deletions of the files by anyone before a designated future date are prohibited.
Which solution will meet these requirements in the MOST secure way?
A. Upload all files to an Amazon S3 bucket that is Configured for static website hosting. Grant read-only IAM permissions to any AWS
principals that access the S3 bucket until the designated date.
B. Create a new Amazon S3 bucket with S3 Versioning enabled. Use S3 Object Lock with a retention period in accordance with the
designated date. Configure the S3 bucket for static website hosting. Set an S3 bucket policy to allow read-only access to the objects.
C. Create a new Amazon S3 bucket with S3 Versioning enabled. Configure an event trigger to run an AWS Lambda function in case of
object modi cation or deletion. Configure the Lambda function to replace the objects with the original versions from a private S3 bucket.
D. Upload all files to an Amazon S3 bucket that is Configured for static website hosting. Select the folder that contains the files. Use S3
Object Lock with a retention period in accordance with the designated date. Grant read-only IAM permissions to any AWS principals that
access the S3 bucket.

一家律师事务所需要与公众分享信息。这些信息包括数百个必须公开可读的文件。
在指定的未来日期之前,禁止任何人修改或删除这些文件。
以下哪种解决方案能以最安全的方式满足这些需求?
A. 将所有文件上传到配置了静态网站托管的亚马逊S3存储桶。在指定日期之前,授予访问该S3存储桶的任何AWS主体只读IAM权限。
B. 创建一个启用了S3版本控制的新亚马逊S3存储桶。根据指定日期使用S3对象锁定设置保留期。将该S3存储桶配置为静态网站托管。设置S3存储桶策略以允许对对象的只读访问。
C. 创建一个启用了S3版本控制的新亚马逊S3存储桶。配置一个事件触发器,在对象被修改或删除时运行AWS Lambda函数。配置Lambda函数以从私有S3存储桶中用原始版本替换被修改的对象。
D. 将所有文件上传到配置了静态网站托管的亚马逊S3存储桶。选择包含文件的文件夹。根据指定日期使用S3对象锁定设置保留期。授予访问该S3存储桶的任何AWS主体只读IAM权限。

74 / 200

分类: SAA-C03

74. A company is making a prototype of the infrastructure for its new website by manually provisioning the necessary infrastructure. This
infrastructure includes an Auto Scaling group, an Application Load Balancer and an Amazon RDS database. After the configuration has been
thoroughly validated, the company wants the capability to immediately deploy the infrastructure for development and production use in two
Availability Zones in an automated fashion.
What should a solutions architect recommend to meet these requirements?
A. Use AWS Systems Manager to replicate and provision the prototype infrastructure in two Availability Zones
B. De ne the infrastructure as a template by using the prototype infrastructure as a guide. Deploy the infrastructure with AWS
CloudFormation.
C. Use AWS Config to record the inventory of resources that are used in the prototype infrastructure. Use AWS Config to deploy the
prototype infrastructure into two Availability Zones.
D. Use AWS Elastic Beanstalk and Configure it to use an automated reference to the prototype infrastructure to automatically deploy new
environments in two Availability Zones.

一家公司正在通过手动配置必要的基础设施来为其新网站制作基础设施原型。该基础设施包括一个自动扩展组、一个应用负载均衡器和一个亚马逊RDS数据库。在全面验证配置后,公司希望能够以自动化方式立即在两个可用区部署该基础设施,供开发和生产使用。
解决方案架构师应推荐何种方案来满足这些需求?

A. 使用AWS Systems Manager在两个可用区复制并部署原型基础设施

B. 以原型基础设施为指导,将基础设施定义为模板。使用AWS CloudFormation部署该基础设施。

C. 使用AWS Config记录原型基础设施中使用的资源清单。使用AWS Config将原型基础设施部署到两个可用区。

D. 使用AWS Elastic Beanstalk并将其配置为通过自动化引用原型基础设施,从而自动在两个可用区部署新环境。

75 / 200

分类: SAA-C03

75. A business application is hosted on Amazon EC2 and uses Amazon S3 for encrypted object storage. The chief information security o cer has
directed that no application traffic between the two services should traverse the public internet.
Which capability should the solutions architect use to meet the compliance requirements?
A. AWS Key Management Service (AWS KMS)
B. VPC endpoint
C. Private subnet
D. Virtual private gateway

题目:

一个业务应用程序托管在亚马逊EC2上,并使用亚马逊S3进行加密对象存储。首席信息安全官指示,这两个服务之间的应用程序流量不得通过公共互联网传输。
解决方案架构师应该使用哪种功能来满足合规性要求?
A. AWS密钥管理服务(AWS KMS)
B. VPC终端节点
C. 私有子网
D. 虚拟专用网关

76 / 200

分类: SAA-C03

76. A company hosts a three-tier web application in the AWS Cloud. A Multi-AZAmazon RDS for MySQL server forms the database layer Amazon
ElastiCache forms the cache layer. The company wants a caching strategy that adds or updates data in the cache when a customer adds an
item to the database. The data in the cache must always match the data in the database.
Which solution will meet these requirements?
A. Implement the lazy loading caching strategy
B. Implement the write-through caching strategy
C. Implement the adding TTL caching strategy
D. Implement the AWS AppConfig caching strategy

一家公司在AWS云中托管了一个三层网络应用程序。多可用区Amazon RDS for MySQL服务器构成了数据库层,
Amazon ElastiCache构成了缓存层。公司希望采用一种缓存策略,当客户向数据库添加项目时,能同时在缓存中添加或更新数据。
缓存中的数据必须始终与数据库中的数据保持一致。

哪种解决方案能满足这些要求?
A. 实施延迟加载缓存策略
B. 实施直写式缓存策略
C. 实施添加TTL的缓存策略
D. 实施AWS AppConfig缓存策略

77 / 200

分类: SAA-C03

77. A company wants to migrate 100 GB of historical data from an on-premises location to an Amazon S3 bucket. The company has a 100
megabits per second (Mbps) internet connection on premises. The company needs to encrypt the data in transit to the S3 bucket. The
company will store new data directly in Amazon S3.
Which solution will meet these requirements with the LEAST operational overhead?
A. Use the s3 sync command in the AWS CLI to move the data directly to an S3 bucket
B. Use AWS DataSync to migrate the data from the on-premises location to an S3 bucket
C. Use AWS Snowball to move the data to an S3 bucket
D. Set up an IPsec VPN from the on-premises location to AWS. Use the s3 cp command in the AWS CLI to move the data directly to an S3
bucket

一家公司希望将100 GB的历史数据从本地迁移到Amazon S3存储桶。该公司在本地拥有每秒100兆比特(Mbps)的互联网连接。公司需要对这些传输到S3存储桶的数据进行加密。未来新数据将直接存储在Amazon S3中。
哪种解决方案能以最小的运维工作量满足这些需求?
A. 使用AWS CLI中的s3 sync命令直接将数据移动到S3存储桶
B. 使用AWS DataSync将数据从本地位置迁移到S3存储桶
C. 使用AWS Snowball将数据移动到S3存储桶
D. 建立从本地位置到AWS的IPsec VPN。使用AWS CLI中的s3 cp命令直接将数据移动到S3存储桶

78 / 200

分类: SAA-C03

78. A company containerized a Windows job that runs on .NET 6 Framework under a Windows container. The company wants to run this job in the
AWS Cloud. The job runs every 10 minutes. The job’s runtime varies between 1 minute and 3 minutes.
Which solution will meet these requirements MOST cost-effectively?
A. Create an AWS Lambda function based on the container image of the job. Configure Amazon EventBridge to invoke the function every
10 minutes.
B. Use AWS Batch to create a job that uses AWS Fargate resources. Configure the job scheduling to run every 10 minutes.
C. Use Amazon Elastic Container Service (Amazon ECS) on AWS Fargate to run the job. Create a scheduled task based on the container
image of the job to run every 10 minutes.
D. Use Amazon Elastic Container Service (Amazon ECS) on AWS Fargate to run the job. Create a standalone task based on the container
image of the job. Use Windows task scheduler to run the job every
10 minutes.

一家公司将一个运行在.NET 6框架下的Windows作业进行了容器化,并在Windows容器中运行。该公司希望在AWS云中运行此作业。该作业每10分钟运行一次,运行时间在1分钟到3分钟之间。

哪种解决方案能以最具成本效益的方式满足这些需求?

A. 基于该作业的容器镜像创建一个AWS Lambda函数。配置Amazon EventBridge每10分钟调用该函数一次。

B. 使用AWS Batch创建一个使用AWS Fargate资源的作业。配置作业调度使其每10分钟运行一次。

C. 在AWS Fargate上使用Amazon Elastic Container Service (Amazon ECS)运行该作业。基于该作业的容器镜像创建一个定时任务,使其每10分钟运行一次。

D. 在AWS Fargate上使用Amazon Elastic Container Service (Amazon ECS)运行该作业。基于该作业的容器镜像创建一个独立任务。使用Windows任务计划程序每10分钟运行该作业一次。

79 / 200

分类: SAA-C03

79. A company wants to move from many standalone AWS accounts to a consolidated, multi-account architecture. The company plans to create
many new AWS accounts for different business units. The company needs to authenticate access to these AWS accounts by using a
centralized corporate directory service.
Which combination of actions should a solutions architect recommend to meet these requirements? (Choose two.)
A. Create a new organization in AWS Organizations with all features turned on. Create the new AWS accounts in the organization.
B. Set up an Amazon Cognito identity pool. Configure AWS IAM Identity Center (AWS Single Sign-On) to accept Amazon Cognito
authentication.
C. Configure a service control policy (SCP) to manage the AWS accounts. Add AWS IAM Identity Center (AWS Single Sign-On) to AWS
Directory Service.
D. Create a new organization in AWS Organizations. Configure the organization’s authentication mechanism to use AWS Directory Service
directly.
E. Set up AWS IAM Identity Center (AWS Single Sign-On) in the organization. Configure IAM Identity Center, and integrate it with the
company’s corporate directory service.

一家公司希望从多个独立的AWS账户转变为整合的多账户架构。公司计划为不同业务部门创建许多新的AWS账户,需要通过集中式企业目录服务对这些AWS账户进行访问认证。

解决方案架构师应推荐采取哪两项措施来满足这些要求?(选择两项)

A. 在AWS Organizations中创建一个启用所有功能的新组织,并在该组织内创建新的AWS账户。

B. 设置一个Amazon Cognito身份池,配置AWS IAM Identity Center(AWS单点登录)以接受Amazon Cognito认证。

C. 配置服务控制策略(SCP)来管理AWS账户,将AWS IAM Identity Center(AWS单点登录)添加到AWS Directory Service中。

D. 在AWS Organizations中创建一个新组织,并配置该组织直接使用AWS Directory Service作为认证机制。

E. 在组织中设置AWS IAM Identity Center(AWS单点登录),配置IAM Identity Center并与公司的企业目录服务集成。

80 / 200

分类: SAA-C03

80. A company is looking for a solution that can store video archives in AWS from old news footage. The company needs to minimize costs and
will rarely need to restore these files. When the files are needed, they must be available in a maximum of ve minutes.
What is the MOST cost-effective solution?
A. Store the video archives in Amazon S3 Glacier and use Expedited retrievals.
B. Store the video archives in Amazon S3 Glacier and use Standard retrievals.
C. Store the video archives in Amazon S3 Standard-Infrequent Access (S3 Standard-IA).
D. Store the video archives in Amazon S3 One Zone-Infrequent Access (S3 One Zone-IA).

一家公司正在寻找一种解决方案,能够将旧新闻素材的视频档案存储到AWS中。
该公司需要尽可能降低成本,并且很少需要恢复这些文件。
但当需要这些文件时,必须在最多五分钟内可用。
哪种方案最具成本效益?

A. 将视频档案存储在Amazon S3 Glacier中,并使用快速检索功能。
B. 将视频档案存储在Amazon S3 Glacier中,并使用标准检索功能。
C. 将视频档案存储在Amazon S3标准不频繁访问(S3 Standard-IA)中。
D. 将视频档案存储在Amazon S3单一区域不频繁访问(S3 One Zone-IA)中。

81 / 200

分类: SAA-C03

81. A company is building a three-tier application on AWS. The presentation tier will serve a static website The logic tier is a containerized
application. This application will store data in a relational database. The company wants to simplify deployment and to reduce operational
costs.
Which solution will meet these requirements?
A. Use Amazon S3 to host static content. Use Amazon Elastic Container Service (Amazon ECS) with AWS Fargate for compute power. Use a
managed Amazon RDS cluster for the database.
B. Use Amazon CloudFront to host static content. Use Amazon Elastic Container Service (Amazon ECS) with Amazon EC2 for compute
power. Use a managed Amazon RDS cluster for the database.
C. Use Amazon S3 to host static content. Use Amazon Elastic Kubernetes Service (Amazon EKS) with AWS Fargate for compute power. Use
a managed Amazon RDS cluster for the database.
D. Use Amazon EC2 Reserved Instances to host static content. Use Amazon Elastic Kubernetes Service (Amazon EKS) with Amazon EC2 for
compute power. Use a managed Amazon RDS cluster for the database.

一家公司正在AWS上构建三层应用程序。展示层将服务静态网站,逻辑层是容器化应用程序。该应用程序会将数据存储在关系型数据库中。公司希望简化部署并降低运营成本。
哪个解决方案能满足这些需求?
A. 使用Amazon S3托管静态内容。使用Amazon Elastic Container Service(Amazon ECS)搭配AWS Fargate提供计算能力。使用托管的Amazon RDS集群作为数据库。
B. 使用Amazon CloudFront托管静态内容。使用Amazon Elastic Container Service(Amazon ECS)搭配Amazon EC2提供计算能力。使用托管的Amazon RDS集群作为数据库。
C. 使用Amazon S3托管静态内容。使用Amazon Elastic Kubernetes Service(Amazon EKS)搭配AWS Fargate提供计算能力。使用托管的Amazon RDS集群作为数据库。
D. 使用Amazon EC2预留实例托管静态内容。使用Amazon Elastic Kubernetes Service(Amazon EKS)搭配Amazon EC2提供计算能力。使用托管的Amazon RDS集群作为数据库。

82 / 200

分类: SAA-C03

82. A company seeks a storage solution for its application. The solution must be highly available and scalable. The solution also must function as
a file system be mountable by multiple Linux instances in AWS and on premises through native protocols, and have no minimum size
requirements. The company has set up a Site-to-Site VPN for access from its on-premises network to its VPC.
Which storage solution meets these requirements?
A. Amazon FSx Multi-AZ deployments
B. Amazon Elastic Block Store (Amazon EBS) Multi-Attach volumes
C. Amazon Elastic File System (Amazon EFS) with multiple mount targets
D. Amazon Elastic File System (Amazon EFS) with a single mount target and multiple access points

一家公司为其应用程序寻求存储解决方案。
该解决方案必须具备高可用性和可扩展性。
该解决方案还需能够作为文件系统使用,可通过原生协议在AWS和本地环境中被多个Linux实例挂载,并且没有最低容量要求。
该公司已设置了站点到站点VPN,以便从其本地网络访问其VPC。
哪种存储解决方案满足这些要求?
A. 亚马逊FSx多可用区部署
B. 亚马逊弹性块存储(Amazon EBS)多挂载卷
C. 配备多个挂载目标的亚马逊弹性文件系统(Amazon EFS)
D. 配备单个挂载目标和多个访问点的亚马逊弹性文件系统(Amazon EFS)

83 / 200

分类: SAA-C03

83. A 4-year-old media company is using the AWS Organizations all features feature set to organize its AWS accounts. According to the company’s
nance team, the billing information on the member accounts must not be accessible to anyone, including the root user of the member
accounts.
Which solution will meet these requirements?
A. Add all nance team users to an IAM group. Attach an AWS managed policy named Billing to the group.
B. Attach an identity-based policy to deny access to the billing information to all users, including the root user.
C. Create a service control policy (SCP) to deny access to the billing information. Attach the SCP to the root organizational unit (OU).
D. Convert from the Organizations all features feature set to the Organizations consolidated billing feature set.

一家拥有四年历史的媒体公司正在使用AWS Organizations的全功能集来组织其AWS账户。根据该公司的财务团队要求,包括成员账户的根用户在内,任何人都不得访问成员账户上的账单信息。
哪种解决方案能够满足这些要求?
A. 将所有财务团队用户添加到一个IAM组。将名为Billing的AWS托管策略附加到该组。
B. 附加基于身份的策略,拒绝所有用户(包括根用户)访问账单信息。
C. 创建一个服务控制策略(SCP)来拒绝对账单信息的访问。将该SCP附加到根组织单元(OU)。
D. 从Organizations的全功能集转换为Organizations的合并账单功能集。

84 / 200

分类: SAA-C03

84. An ecommerce company runs an application in the AWS Cloud that is integrated with an on-premises warehouse solution. The company uses
Amazon Simple Notification Service (Amazon SNS) to send order messages to an on-premises HTTPS endpoint so the warehouse application
can process the orders. The local data center team has detected that some of the order messages were not received.
A solutions architect needs to retain messages that are not delivered and analyze the messages for up to 14 days.
Which solution will meet these requirements with the LEAST development effort?
A. Configure an Amazon SNS dead letter queue that has an Amazon Kinesis Data Stream target with a retention period of 14 days.
B. Add an Amazon Simple Queue Service (Amazon SQS) queue with a retention period of 14 days between the application and Amazon
SNS.
C. Configure an Amazon SNS dead letter queue that has an Amazon Simple Queue Service (Amazon SQS) target with a retention period of
14 days.
D. Configure an Amazon SNS dead letter queue that has an Amazon DynamoDB target with a TTL attribute set for a retention period of 14
days.

一家电子商务公司在AWS云中运行一个应用程序,该程序与本地仓库解决方案集成。公司使用
Amazon Simple Notification Service(Amazon SNS)将订单消息发送到本地HTTPS端点,以便仓库应用程序
可以处理订单。本地数据中心团队发现部分订单消息未被接收。
解决方案架构师需要保留未送达的消息,并将消息保留分析长达14天。
以下哪种解决方案能以最少开发工作量满足这些需求?
A. 配置一个目标为Amazon Kinesis Data Stream且保留期为14天的Amazon SNS死信队列。
B. 在应用程序和Amazon SNS之间添加一个保留期为14天的Amazon Simple Queue Service(Amazon SQS)队列。
C. 配置一个目标为Amazon Simple Queue Service(Amazon SQS)且保留期为14天的Amazon SNS死信队列。
D. 配置一个目标为Amazon DynamoDB且TTL属性设置为14天保留期的Amazon SNS死信队列。

85 / 200

分类: SAA-C03

85. A gaming company uses Amazon DynamoDB to store user information such as geographic location, player data, and leaderboards. The
company needs to Configure continuous backups to an Amazon S3 bucket with a minimal amount of coding. The backups must not affect
availability of the application and must not affect the read capacity units (RCUs) that are de ned for the table.
Which solution meets these requirements?
A. Use an Amazon EMR cluster. Create an Apache Hive job to back up the data to Amazon S3.
B. Export the data directly from DynamoDB to Amazon S3 with continuous backups. Turn on point-in-time recovery for the table.
C. Configure Amazon DynamoDB Streams. Create an AWS Lambda function to consume the stream and export the data to an Amazon S3
bucket.
D. Create an AWS Lambda function to export the data from the database tables to Amazon S3 on a regular basis. Turn on point-in-time
recovery for the table.

一家游戏公司使用亚马逊DynamoDB来存储用户信息,例如地理位置、玩家数据和排行榜。
公司需要以最少的编码工作量配置将连续备份存储到亚马逊S3桶。备份不得影响应用程序的可用性,也不得影响表中定义的读取容量单位(RCUs)。
哪个解决方案符合这些要求?
A. 使用亚马逊EMR集群。创建一个Apache Hive作业将数据备份到亚马逊S3。
B. 直接从DynamoDB将数据导出到亚马逊S3,并启用连续备份。为表启用时间点恢复功能。
C. 配置亚马逊DynamoDB流。创建一个AWS Lambda函数来消费流并将数据导出到亚马逊S3桶。
D. 创建一个AWS Lambda函数定期将数据从数据库表导出到亚马逊S3。为表启用时间点恢复功能。

86 / 200

分类: SAA-C03

86. A solutions architect is designing an asynchronous application to process credit card data validation requests for a bank. The application
must be secure and be able to process each request at least once.
Which solution will meet these requirements MOST cost-effectively?
A. Use AWS Lambda event source mapping. Set Amazon Simple Queue Service (Amazon SQS) standard queues as the event source. Use
AWS Key Management Service (SSE-KMS) for encryption. Add the kms:Decrypt permission for the Lambda execution role.
B. Use AWS Lambda event source mapping. Use Amazon Simple Queue Service (Amazon SQS) FIFO queues as the event source. Use SQS
managed encryption keys (SSE-SQS) for encryption. Add the encryption key invocation permission for the Lambda function.
C. Use the AWS Lambda event source mapping. Set Amazon Simple Queue Service (Amazon SQS) FIFO queues as the event source. Use
AWS KMS keys (SSE-KMS). Add the kms:Decrypt permission for the Lambda execution role.
D. Use the AWS Lambda event source mapping. Set Amazon Simple Queue Service (Amazon SQS) standard queues as the event source.
Use AWS KMS keys (SSE-KMS) for encryption. Add the encryption key invocation permission for the Lambda function.

一位解决方案架构师正在为一家银行设计一个异步应用程序,用于处理信用卡数据验证请求。
该应用程序必须安全且能够至少处理每个请求一次。
哪种解决方案能以最具成本效益的方式满足这些要求?

A. 使用AWS Lambda事件源映射。将Amazon Simple Queue Service (Amazon SQS)标准队列设置为事件源。
使用AWS密钥管理服务(SSE-KMS)进行加密。为Lambda执行角色添加kms:Decrypt权限。

B. 使用AWS Lambda事件源映射。将Amazon Simple Queue Service (Amazon SQS) FIFO队列作为事件源。
使用SQS托管加密密钥(SSE-SQS)进行加密。为Lambda函数添加加密密钥调用权限。

C. 使用AWS Lambda事件源映射。将Amazon Simple Queue Service (Amazon SQS) FIFO队列设置为事件源。
使用AWS KMS密钥(SSE-KMS)。为Lambda执行角色添加kms:Decrypt权限。

D. 使用AWS Lambda事件源映射。将Amazon Simple Queue Service (Amazon SQS)标准队列设置为事件源。
使用AWS KMS密钥(SSE-KMS)进行加密。为Lambda函数添加加密密钥调用权限。

87 / 200

分类: SAA-C03

87. A company has multiple AWS accounts for development work. Some staff consistently use oversized Amazon EC2 instances, which causes the
company to exceed the yearly budget for the development accounts. The company wants to centrally restrict the creation of AWS resources in
these accounts.
Which solution will meet these requirements with the LEAST development effort?
A. Develop AWS Systems Manager templates that use an approved EC2 creation process. Use the approved Systems Manager templates
to provision EC2 instances.
B. Use AWS Organizations to organize the accounts into organizational units (OUs). De ne and attach a service control policy (SCP) to
control the usage of EC2 instance types.
C. Configure an Amazon EventBridge rule that invokes an AWS Lambda function when an EC2 instance is created. Stop disallowed EC2
instance types.
D. Set up AWS Service Catalog products for the staff to create the allowed EC2 instance types. Ensure that staff can deploy EC2 instances
only by using the Service Catalog products.

一家公司拥有多个用于开发工作的AWS账户。部分员工持续使用过大的Amazon EC2实例,导致公司超出开发账户的年度预算。
公司希望集中限制这些账户中AWS资源的创建。
哪种解决方案能以最低开发工作量满足这些需求?
A. 开发使用已批准EC2创建流程的AWS Systems Manager模板。使用经批准的Systems Manager模板来配置EC2实例。
B. 使用AWS Organizations将账户组织到组织单元(OU)中。定义并附加服务控制策略(SCP)以控制EC2实例类型的使用。
C. 配置Amazon EventBridge规则,在创建EC2实例时调用AWS Lambda函数。停止不允许的EC2实例类型。
D. 为员工设置AWS Service Catalog产品以创建允许的EC2实例类型。确保员工只能通过Service Catalog产品部署EC2实例。

88 / 200

分类: SAA-C03

88. A company wants to use arti cial intelligence (AI) to determine the quality of its customer service calls. The company currently manages calls
in four different languages, including English. The company will offer new languages in the future. The company does not have the resources
to regularly maintain machine learning (ML) models.
The company needs to create written sentiment analysis reports from the customer service call recordings. The customer service call
recording text must be translated into English.
Which combination of steps will meet these requirements? (Choose three.)
A. Use Amazon Comprehend to translate the audio recordings into English.
B. Use Amazon Lex to create the written sentiment analysis reports.
C. Use Amazon Polly to convert the audio recordings into text.
D. Use Amazon Transcribe to convert the audio recordings in any language into text.
E. Use Amazon Translate to translate text in any language to English.
F. Use Amazon Comprehend to create the sentiment analysis reports.

一家公司希望使用人工智能(AI)来评估其客户服务通话的质量。该公司目前以四种不同的语言管理通话,包括英语。未来该公司还将提供更多语言的支持。该公司没有资源来定期维护机器学习(ML)模型。

公司需要根据客户服务通话录音创建书面情感分析报告。客户服务通话的录音文本必须翻译成英语。

以下哪种步骤组合能够满足这些需求?(选择三项。)
A. 使用Amazon Comprehend将音频录音翻译成英语。
B. 使用Amazon Lex创建书面情感分析报告。
C. 使用Amazon Polly将音频录音转换为文本。
D. 使用Amazon Transcribe将任何语言的音频录音转换为文本。
E. 使用Amazon Translate将任何语言的文本翻译成英语。
F. 使用Amazon Comprehend创建情感分析报告。

89 / 200

分类: SAA-C03

89. A company is conducting an internal audit. The company wants to ensure that the data in an Amazon S3 bucket that is associated with the
company’s AWS Lake Formation data lake does not contain sensitive customer or employee data. The company wants to discover personally
identi able information (PII) or nancial information, including passport numbers and credit card numbers.
Which solution will meet these requirements?
A. Configure AWS Audit Manager on the account. Select the Payment Card Industry Data Security Standards (PCI DSS) for auditing.
B. Configure Amazon S3 Inventory on the S3 bucket Configure Amazon Athena to query the inventory.
C. Configure Amazon Macie to run a data discovery job that uses managed identi ers for the required data types.
D. Use Amazon S3 Select to run a report across the S3 bucket.

一家公司正在进行内部审计。该公司希望确保与公司AWS Lake Formation数据湖相关联的Amazon S3存储桶中的数据不包含敏感的客户或员工数据。该公司希望发现个人可识别信息(PII)或财务信息,包括护照号码和信用卡号码。
哪种解决方案能够满足这些要求?
A. 在账户上配置AWS Audit Manager。选择支付卡行业数据安全标准(PCI DSS)进行审计。
B. 在S3存储桶上配置Amazon S3库存。配置Amazon Athena查询库存。
C. 配置Amazon Macie运行数据发现作业,使用托管标识符查找所需数据类型。
D. 使用Amazon S3 Select在整个S3存储桶上运行报告。

90 / 200

分类: SAA-C03

90. A company uses on-premises servers to host its applications. The company is running out of storage capacity. The applications use both block
storage and NFS storage. The company needs a high-performing solution that supports local caching without re-architecting its existing
applications.
Which combination of actions should a solutions architect take to meet these requirements? (Choose two.)
A. Mount Amazon S3 as a file system to the on-premises servers.
B. Deploy an AWS Storage Gateway file gateway to replace NFS storage.
C. Deploy AWS Snowball Edge to provision NFS mounts to on-premises servers.
D. Deploy an AWS Storage Gateway volume gateway to replace the block storage.
E. Deploy Amazon Elastic File System (Amazon EFS) volumes and mount them to on-premises servers.

一家公司使用本地服务器来托管其应用程序。公司的存储容量即将耗尽。这些应用程序同时使用块存储和NFS存储。公司需要一个高性能的解决方案,支持本地缓存,且无需重新设计现有的应用程序。

解决方案架构师应该采取哪些组合行动来满足这些要求?(选择两个。)

A. 将Amazon S3作为文件系统挂载到本地服务器上。
B. 部署AWS Storage Gateway文件网关以替代NFS存储。
C. 部署AWS Snowball Edge以配置NFS挂载到本地服务器。
D. 部署AWS Storage Gateway卷网关以替代块存储。
E. 部署Amazon Elastic File System(Amazon EFS)卷并将其挂载到本地服务器。

91 / 200

分类: SAA-C03

91. A company has a service that reads and writes large amounts of data from an Amazon S3 bucket in the same AWS Region. The service is
deployed on Amazon EC2 instances within the private subnet of a VPC. The service communicates with Amazon S3 over a NAT gateway in the
public subnet. However, the company wants a solution that will reduce the data output costs.
Which solution will meet these requirements MOST cost-effectively?
A. Provision a dedicated EC2 NAT instance in the public subnet. Configure the route table for the private subnet to use the elastic network
interface of this instance as the destination for all S3 traffic.
B. Provision a dedicated EC2 NAT instance in the private subnet. Configure the route table for the public subnet to use the elastic network
interface of this instance as the destination for all S3 traffic.
C. Provision a VPC gateway endpoint. Configure the route table for the private subnet to use the gateway endpoint as the route for all S3
traffic.
D. Provision a second NAT gateway. Configure the route table for the private subnet to use this NAT gateway as the destination for all S3
traffic.

一家公司有一项服务,需要从同一AWS区域内的Amazon S3存储桶读取和写入大量数据。
该服务部署在VPC私有子网中的Amazon EC2实例上,并通过公有子网中的NAT网关与Amazon S3通信。
然而,该公司希望找到一种降低数据输出成本的解决方案。

以下哪种解决方案能够以最具成本效益的方式满足这些要求?

A. 在公有子网中配置专用的EC2 NAT实例。将私有子网的路由表配置为使用此实例的弹性网络接口作为所有S3流量的目的地。
B. 在私有子网中配置专用的EC2 NAT实例。将公有子网的路由表配置为使用此实例的弹性网络接口作为所有S3流量的目的地。
C. 配置VPC网关终端节点。将私有子网的路由表配置为使用该网关终端节点作为所有S3流量的路由。
D. 配置第二个NAT网关。将私有子网的路由表配置为使用此NAT网关作为所有S3流量的目的地。

92 / 200

分类: SAA-C03

92. A company uses Amazon S3 to store high-resolution pictures in an S3 bucket. To minimize application changes, the company stores the
pictures as the latest version of an S3 object. The company needs to retain only the two most recent versions of the pictures.
The company wants to reduce costs. The company has identi ed the S3 bucket as a large expense.
Which solution will reduce the S3 costs with the LEAST operational overhead?
A. Use S3 Lifecycle to delete expired object versions and retain the two most recent versions.
B. Use an AWS Lambda function to check for older versions and delete all but the two most recent versions.
C. Use S3 Batch Operations to delete noncurrent object versions and retain only the two most recent versions.
D. Deactivate versioning on the S3 bucket and retain the two most recent versions.

一家公司使用亚马逊S3存储高分辨率图片,并将这些图片保存在一个S3存储桶中。为了最小化应用程序的更改,该公司将图片存储为S3对象的最新版本。该公司只需要保留图片的两个最新版本。

该公司希望降低成本,并将S3存储桶确定为一项重大支出。

哪种解决方案能在最小操作负担的前提下降低S3成本?

A. 使用S3生命周期策略删除过期的对象版本,并保留两个最新版本。
B. 使用AWS Lambda函数检查旧版本,并删除除两个最新版本之外的所有版本。
C. 使用S3批量操作删除非当前对象版本,并仅保留两个最新版本。
D. 在S3存储桶上停用版本控制,并保留两个最新版本。

93 / 200

分类: SAA-C03

93. A company needs to minimize the cost of its 1 Gbps AWS Direct Connect connection. The company’s average connection utilization is less
than 10%. A solutions architect must recommend a solution that will reduce the cost without compromising security.
Which solution will meet these requirements?
A. Set up a new 1 Gbps Direct Connect connection. Share the connection with another AWS account.
B. Set up a new 200 Mbps Direct Connect connection in the AWS Management Console.
C. Contact an AWS Direct Connect Partner to order a 1 Gbps connection. Share the connection with another AWS account.
D. Contact an AWS Direct Connect Partner to order a 200 Mbps hosted connection for an existing AWS account.

一家公司需要最小化其1 Gbps AWS直连连接的成本。该公司的平均连接利用率低于10%。解决方案架构师必须推荐一个既能降低成本又不会影响安全性的解决方案。
哪种方案能够满足这些要求?
A. 建立一个新的1 Gbps直连连接,并与另一个AWS账户共享该连接。
B. 在AWS管理控制台中建立一个新的200 Mbps直连连接。
C. 联系AWS直连合作伙伴订购1 Gbps连接,并与另一个AWS账户共享该连接。
D. 联系AWS直连合作伙伴为现有AWS账户订购200 Mbps托管连接。

94 / 200

分类: SAA-C03

94. A company has multiple Windows file servers on premises. The company wants to migrate and consolidate its files into an Amazon FSx for
Windows File Server file system. File permissions must be preserved to ensure that access rights do not change.
Which solutions will meet these requirements? (Choose two.)
A. Deploy AWS DataSync agents on premises. Schedule DataSync tasks to transfer the data to the FSx for Windows File Server file system.
B. Copy the shares on each file server into Amazon S3 buckets by using the AWS CLI. Schedule AWS DataSync tasks to transfer the data to
the FSx for Windows File Server file system.
C. Remove the drives from each file server. Ship the drives to AWS for import into Amazon S3. Schedule AWS DataSync tasks to transfer
the data to the FSx for Windows File Server file system.
D. Order an AWS Snowcone device. Connect the device to the on-premises network. Launch AWS DataSync agents on the device. Schedule
DataSync tasks to transfer the data to the FSx for Windows File Server file system.
E. Order an AWS Snowball Edge Storage Optimized device. Connect the device to the on-premises network. Copy data to the device by
using the AWS CLI. Ship the device back to AWS for import into Amazon S3. Schedule AWS DataSync tasks to transfer the data to the FSx
for Windows File Server file system.

一家公司在本地拥有多台Windows文件服务器。该公司希望将其文件迁移并整合到Amazon FSx for Windows File Server文件系统中。必须保留文件权限,以确保访问权限不发生改变。
哪些解决方案能够满足这些要求?(选择两个。)
A. 在本地部署AWS DataSync代理。安排DataSync任务将数据传输到FSx for Windows File Server文件系统。
B. 使用AWS CLI将每个文件服务器上的共享复制到Amazon S3存储桶中。安排AWS DataSync任务将数据传输到FSx for Windows File Server文件系统。
C. 从每台文件服务器上卸下驱动器。将驱动器运送到AWS以导入Amazon S3。安排AWS DataSync任务将数据传输到FSx for Windows File Server文件系统。
D. 订购一台AWS Snowcone设备。将该设备连接到本地网络。在设备上启动AWS DataSync代理。安排DataSync任务将数据传输到FSx for Windows File Server文件系统。
E. 订购一台AWS Snowball Edge存储优化设备。将该设备连接到本地网络。使用AWS CLI将数据复制到设备上。将设备运回AWS以导入Amazon S3。安排AWS DataSync任务将数据传输到FSx for Windows File Server文件系统。

95 / 200

分类: SAA-C03

95. A company wants to ingest customer payment data into the company’s data lake in Amazon S3. The company receives payment data every
minute on average. The company wants to analyze the payment data in real time. Then the company wants to ingest the data into the data
lake.
Which solution will meet these requirements with the MOST operational e ciency?
A. Use Amazon Kinesis Data Streams to ingest data. Use AWS Lambda to analyze the data in real time.
B. Use AWS Glue to ingest data. Use Amazon Kinesis Data Analytics to analyze the data in real time.
C. Use Amazon Kinesis Data Firehose to ingest data. Use Amazon Kinesis Data Analytics to analyze the data in real time.
D. Use Amazon API Gateway to ingest data. Use AWS Lambda to analyze the data in real time.

一家公司希望将客户支付数据摄取到公司位于Amazon S3的数据湖中。公司平均每分钟都会收到支付数据。
公司希望实时分析这些支付数据,然后将数据摄取到数据湖中。
哪种解决方案能够以最高的运营效率满足这些需求?
A. 使用Amazon Kinesis Data Streams摄取数据,使用AWS Lambda实时分析数据。
B. 使用AWS Glue摄取数据,使用Amazon Kinesis Data Analytics实时分析数据。
C. 使用Amazon Kinesis Data Firehose摄取数据,使用Amazon Kinesis Data Analytics实时分析数据。
D. 使用Amazon API Gateway摄取数据,使用AWS Lambda实时分析数据。

96 / 200

分类: SAA-C03

96. A company runs a website that uses a content management system (CMS) on Amazon EC2. The CMS runs on a single EC2 instance and uses
an Amazon Aurora MySQL Multi-AZ DB instance for the data tier. Website images are stored on an Amazon Elastic Block Store (Amazon EBS)
volume that is mounted inside the EC2 instance.
Which combination of actions should a solutions architect take to improve the performance and resilience of the website? (Choose two.)
A. Move the website images into an Amazon S3 bucket that is mounted on every EC2 instance
B. Share the website images by using an NFS share from the primary EC2 instance. Mount this share on the other EC2 instances.
C. Move the website images onto an Amazon Elastic File System (Amazon EFS) file system that is mounted on every EC2 instance.
D. Create an Amazon Machine Image (AMI) from the existing EC2 instance. Use the AMI to provision new instances behind an Application
Load Balancer as part of an Auto Scaling group. Configure the Auto Scaling group to maintain a minimum of two instances. Configure an
accelerator in AWS Global Accelerator for the website
E. Create an Amazon Machine Image (AMI) from the existing EC2 instance. Use the AMI to provision new instances behind an Application
Load Balancer as part of an Auto Scaling group. Configure the Auto Scaling group to maintain a minimum of two instances. Configure an
Amazon CloudFront distribution for the website.

一家公司在Amazon EC2上运行一个使用内容管理系统(CMS)的网站。该CMS运行在单个EC2实例上,并使用Amazon Aurora MySQL多可用区数据库实例作为数据层。网站图片存储在安装于EC2实例内部的亚马逊弹性块存储(Amazon EBS)卷中。

解决方案架构师应采取以下哪两种措施组合来提高网站的性能和弹性?(选择两项。)

A. 将网站图片移动到挂载在每个EC2实例上的Amazon S3存储桶中

B. 使用主EC2实例的NFS共享分享网站图片。在其他EC2实例上挂载该共享。

C. 将网站图片转移到挂载在每个EC2实例上的亚马逊弹性文件系统(Amazon EFS)上

D. 从现有EC2实例创建亚马逊机器镜像(AMI)。使用该AMI在应用程序负载均衡器后配置新实例,作为自动扩展组的一部分。将自动扩展组配置为至少保持两个实例运行。为网站配置AWS全球加速器中的加速器

E. 从现有EC2实例创建亚马逊机器镜像(AMI)。使用该AMI在应用程序负载均衡器后配置新实例,作为自动扩展组的一部分。将自动扩展组配置为至少保持两个实例运行。为网站配置亚马逊CloudFront分发。

97 / 200

分类: SAA-C03

97. A company runs an infrastructure monitoring service. The company is building a new feature that will enable the service to monitor data in
customer AWS accounts. The new feature will call AWS APIs in customer accounts to describe Amazon EC2 instances and read Amazon
CloudWatch metrics.
What should the company do to obtain access to customer accounts in the MOST secure way?
A. Ensure that the customers create an IAM role in their account with read-only EC2 and CloudWatch permissions and a trust policy to the
company’s account.
B. Create a serverless API that implements a token vending machine to provide temporary AWS credentials for a role with read-only EC2
and CloudWatch permissions.
C. Ensure that the customers create an IAM user in their account with read-only EC2 and CloudWatch permissions. Encrypt and store
customer access and secret keys in a secrets management system.
D. Ensure that the customers create an Amazon Cognito user in their account to use an IAM role with read-only EC2 and CloudWatch
permissions. Encrypt and store the Amazon Cognito user and password in a secrets management system.

一家公司运营着基础设施监控服务。该公司正在构建一个能够监控客户亚马逊云科技(AWS)账户数据的新功能。此新功能将调用客户账户中的AWS应用程序接口(API),以描述亚马逊弹性计算云(Amazon EC2)实例和读取亚马逊云监控(Amazon CloudWatch)指标。

该公司应当采取哪项措施,以最安全的方式获取客户账户访问权限?

A. 确保客户在其账户中创建一个具有只读EC2和CloudWatch权限的身份与访问管理(IAM)角色,并设置对公司账户的信任策略。

B. 创建无服务器应用程序接口(API),实现凭证分发机制,为具有只读EC2和CloudWatch权限的角色提供临时AWS凭证。

C. 确保客户在其账户中创建一个具有只读EC2和CloudWatch权限的身份与访问管理(IAM)用户,并将客户的访问密钥和秘密密钥加密存储在密钥管理系统。

D. 确保客户在其账户中创建一个亚马逊Cognito用户,以使用具有只读EC2和CloudWatch权限的身份与访问管理(IAM)角色,并将亚马逊Cognito用户名和密码加密存储在密钥管理系统。

98 / 200

分类: SAA-C03

98. A company needs to connect several VPCs in the us-east-1 Region that span hundreds of AWS accounts. The company’s networking team has
its own AWS account to manage the cloud network.
What is the MOST operationally e cient solution to connect the VPCs?
A. Set up VPC peering connections between each VPC. Update each associated subnet’s route table
B. Configure a NAT gateway and an internet gateway in each VPC to connect each VPC through the internet
C. Create an AWS Transit Gateway in the networking team’s AWS account. Configure static routes from each VPC.
D. Deploy VPN gateways in each VPC. Create a transit VPC in the networking team’s AWS account to connect to each VPC.

一家公司需要连接位于美国东部1(us-east-1)区域的数百个AWS账户中的多个VPC。该公司的网络团队拥有自己的AWS账户来管理云网络。
在这些VPC之间建立连接,最具有操作效率的解决方案是什么?
A. 在每个VPC之间建立VPC对等连接,并更新每个关联子网的路由表
B. 在每个VPC中配置NAT网关和互联网网关,通过互联网连接每个VPC
C. 在网络团队的AWS账户中创建一个AWS中转网关(Transit Gateway),并从每个VPC配置静态路由
D. 在每个VPC中部署VPN网关,在网络团队的AWS账户中创建一个中转VPC(transit VPC)以连接到每个VPC

99 / 200

分类: SAA-C03

99. A company has Amazon EC2 instances that run nightly batch jobs to process data. The EC2 instances run in an Auto Scaling group that uses
On-Demand billing. If a job fails on one instance, another instance will reprocess the job. The batch jobs run between 12:00 AM and 06:00 AM
local time every day.
Which solution will provide EC2 instances to meet these requirements MOST cost-effectively?
A. Purchase a 1-year Savings Plan for Amazon EC2 that covers the instance family of the Auto Scaling group that the batch job uses.
B. Purchase a 1-year Reserved Instance for the speci c instance type and operating system of the instances in the Auto Scaling group that
the batch job uses.
C. Create a new launch template for the Auto Scaling group. Set the instances to Spot Instances. Set a policy to scale out based on CPU
usage.
D. Create a new launch template for the Auto Scaling group. Increase the instance size. Set a policy to scale out based on CPU usage.

一家公司使用亚马逊EC2实例来运行夜间批处理作业以处理数据。这些EC2实例在一个使用按需计费的自动扩展组中运行。
如果在某个实例上作业失败,另一个实例将会重新处理该作业。这些批处理作业每天在本地时间的凌晨12:00到早上6:00之间运行。
哪种解决方案能够以最具成本效益的方式提供满足这些要求的EC2实例?
A. 为Amazon EC2购买一个1年期的节省计划,覆盖批处理作业所使用的自动扩展组的实例系列。
B. 为批处理作业所使用的自动扩展组中的实例的具体实例类型和操作系统购买一个1年期的预留实例。
C. 为自动扩展组创建一个新的启动模板。将实例设置为Spot实例。设置一个基于CPU使用率扩展的策略。
D. 为自动扩展组创建一个新的启动模板。增加实例大小。设置一个基于CPU使用率扩展的策略。

100 / 200

分类: SAA-C03

100. A social media company is building a feature for its website. The feature will give users the ability to upload photos. The company expects
signi cant increases in demand during large events and must ensure that the website can handle the upload traffic from users.
Which solution meets these requirements with the MOST scalability?
A. Upload files from the user’s browser to the application servers. Transfer the files to an Amazon S3 bucket.
B. Provision an AWS Storage Gateway file gateway. Upload files directly from the user’s browser to the file gateway.
C. Generate Amazon S3 presigned URLs in the application. Upload files directly from the user’s browser into an S3 bucket.
D. Provision an Amazon Elastic File System (Amazon EFS) file system. Upload files directly from the user’s browser to the file system.

一家社交媒体公司正在为其网站开发一项功能。该功能将赋予用户上传照片的能力。公司预计在大型活动期间需求会显著增加,必须确保网站能够处理用户的上传流量。

哪种解决方案能在最大可扩展性方面满足这些需求?

A. 将文件从用户浏览器上传至应用服务器,再传输到亚马逊S3存储桶。
B. 配置AWS存储网关文件网关,直接从用户浏览器上传文件至文件网关。
C. 在应用程序中生成亚马逊S3预签名URL,直接从用户浏览器上传文件至S3存储桶。
D. 配置亚马逊弹性文件系统(Amazon EFS),直接从用户浏览器上传文件至文件系统。

101 / 200

分类: SAA-C03

101. A company has a web application for travel ticketing. The application is based on a database that runs in a single data center in North
America. The company wants to expand the application to serve a global user base. The company needs to deploy the application to multiple
AWS Regions. Average latency must be less than 1 second on updates to the reservation database.
The company wants to have separate deployments of its web platform across multiple Regions. However, the company must maintain a single
primary reservation database that is globally consistent.
Which solution should a solutions architect recommend to meet these requirements?
A. Convert the application to use Amazon DynamoDB. Use a global table for the center reservation table. Use the correct Regional
endpoint in each Regional deployment.
B. Migrate the database to an Amazon Aurora MySQL database. Deploy Aurora Read Replicas in each Region. Use the correct Regional
endpoint in each Regional deployment for access to the database.
C. Migrate the database to an Amazon RDS for MySQL database. Deploy MySQL read replicas in each Region. Use the correct Regional
endpoint in each Regional deployment for access to the database.
D. Migrate the application to an Amazon Aurora Serverless database. Deploy instances of the database to each Region. Use the correct
Regional endpoint in each Regional deployment to access the database. Use AWS Lambda functions to process event streams in each
Region to synchronize the databases.

一家公司拥有一个用于旅游票务的网页应用程序。该应用程序基于一个在北美单一数据中心运行的数据库。
公司希望扩大该应用以服务全球用户群体。他们需要将应用程序部署到多个AWS区域。
对于预订数据库的更新操作,平均延迟必须小于1秒。

公司希望在多个区域分别部署其网页平台。但必须维护一个具有全局一致性的主要预订数据库。

解决方案架构师应推荐哪种方案来满足这些需求?

A. 将应用程序转换为使用Amazon DynamoDB。为核心预订表使用全局表。在每个区域部署中使用正确的区域端点。

B. 将数据库迁移到Amazon Aurora MySQL数据库。在每个区域部署Aurora读取副本。在每个区域部署中使用正确的区域端点来访问数据库。

C. 将数据库迁移到Amazon RDS for MySQL数据库。在每个区域部署MySQL读取副本。在每个区域部署中使用正确的区域端点来访问数据库。

D. 将应用程序迁移到Amazon Aurora Serverless数据库。向每个区域部署数据库实例。在每个区域部署中使用正确的区域端点访问数据库。使用AWS Lambda函数处理各区域中的事件流以同步数据库。

102 / 200

分类: SAA-C03

102. A company has migrated multiple Microsoft Windows Server workloads to Amazon EC2 instances that run in the us-west-1 Region. The
company manually backs up the workloads to create an image as needed.
In the event of a natural disaster in the us-west-1 Region, the company wants to recover workloads quickly in the us-west-2 Region. The
company wants no more than 24 hours of data loss on the EC2 instances. The company also wants to automate any backups of the EC2
instances.
Which solutions will meet these requirements with the LEAST administrative effort? (Choose two.)
A. Create an Amazon EC2-backed Amazon Machine Image (AMI) lifecycle policy to create a backup based on tags. Schedule the backup to
run twice daily. Copy the image on demand.
B. Create an Amazon EC2-backed Amazon Machine Image (AMI) lifecycle policy to create a backup based on tags. Schedule the backup to
run twice daily. Configure the copy to the us-west-2 Region.
C. Create backup vaults in us-west-1 and in us-west-2 by using AWS Backup. Create a backup plan for the EC2 instances based on tag
values. Create an AWS Lambda function to run as a scheduled job to copy the backup data to us-west-2.
D. Create a backup vault by using AWS Backup. Use AWS Backup to create a backup plan for the EC2 instances based on tag values. De ne
the destination for the copy as us-west-2. Specify the backup schedule to run twice daily.
E. Create a backup vault by using AWS Backup. Use AWS Backup to create a backup plan for the EC2 instances based on tag values.
Specify the backup schedule to run twice daily. Copy on demand to us-west-2.

一家公司已将多个Microsoft Windows Server工作负载迁移至运行在us-west-1区域的Amazon EC2实例上。
该公司根据需要手动备份工作负载以创建镜像。
若us-west-1区域发生自然灾害时,该公司希望能在us-west-2区域快速恢复工作负载。
该公司要求EC2实例数据丢失不超过24小时,同时还希望自动化EC2实例的所有备份流程。
哪种解决方案能以最少的管理工作量满足这些要求?(选择两项)
A. 创建基于标签的Amazon EC2支持的Amazon Machine Image(AMI)生命周期策略以生成备份。将备份计划设置为每日运行两次。按需复制镜像。
B. 创建基于标签的Amazon EC2支持的Amazon Machine Image(AMI)生命周期策略以生成备份。将备份计划设置为每日运行两次。配置复制至us-west-2区域。
C. 使用AWS Backup在us-west-1和us-west-2创建备份存储库。基于标签值为EC2实例创建备份计划。创建AWS Lambda函数作为定时任务运行以将备份数据复制至us-west-2。
D. 使用AWS Backup创建备份存储库。基于标签值使用AWS Backup为EC2实例创建备份计划。将副本目标区域定义为us-west-2。指定每日运行两次的备份计划。
E. 使用AWS Backup创建备份存储库。基于标签值使用AWS Backup为EC2实例创建备份计划。指定每日运行两次的备份计划。按需复制至us-west-2区域。

103 / 200

分类: SAA-C03

103. A company operates a two-tier application for image processing. The application uses two Availability Zones, each with one public subnet and
one private subnet. An Application Load Balancer (ALB) for the web tier uses the public subnets. Amazon EC2 instances for the application
tier use the private subnets.
Users report that the application is running more slowly than expected. A security audit of the web server log files shows that the application
is receiving millions of illegitimate requests from a small number of IP addresses. A solutions architect needs to resolve the immediate
performance problem while the company investigates a more permanent solution.
What should the solutions architect recommend to meet this requirement?
A. Modify the inbound security group for the web tier. Add a deny rule for the IP addresses that are consuming resources.
B. Modify the network ACL for the web tier subnets. Add an inbound deny rule for the IP addresses that are consuming resources.
C. Modify the inbound security group for the application tier. Add a deny rule for the IP addresses that are consuming resources.
D. Modify the network ACL for the application tier subnets. Add an inbound deny rule for the IP addresses that are consuming resources.

一家公司运营着一个用于图像处理的双层应用程序。该应用程序使用两个可用区,每个可用区包含一个公有子网和一个私有子网。
网络层采用的应用负载均衡器(ALB)使用公有子网。应用层的Amazon EC2实例则使用私有子网。
用户报告应用程序运行速度比预期要慢。对Web服务器日志文件的安全审计显示,该应用程序正接收到来自少量IP地址的数百万次非法请求。
解决方案架构师需要解决当前的性能问题,同时公司正在研究更持久的解决方案。
解决方案架构师应该推荐哪种方案来满足这一需求?
A. 修改网络层的入站安全组。为消耗资源的IP地址添加拒绝规则。
B. 修改网络层子网的网络ACL。为消耗资源的IP地址添加入站拒绝规则。
C. 修改应用层的入站安全组。为消耗资源的IP地址添加拒绝规则。
D. 修改应用层子网的网络ACL。为消耗资源的IP地址添加入站拒绝规则。

104 / 200

分类: SAA-C03

104. A global marketing company has applications that run in the ap-southeast-2 Region and the eu-west-1 Region. Applications that run in a VPC
in eu-west-1 need to communicate securely with databases that run in a VPC in ap-southeast-2.
Which network design will meet these requirements?
A. Create a VPC peering connection between the eu-west-1 VPC and the ap-southeast-2 VPC. Create an inbound rule in the eu-west-1
application security group that allows traffic from the database server IP addresses in the ap-southeast-2 security group.
B. Configure a VPC peering connection between the ap-southeast-2 VPC and the eu-west-1 VPC. Update the subnet route tables. Create an
inbound rule in the ap-southeast-2 database security group that references the security group ID of the application servers in eu-west-1.
C. Configure a VPC peering connection between the ap-southeast-2 VPC and the eu-west-1 VPUpdate the subnet route tables. Create an
inbound rule in the ap-southeast-2 database security group that allows traffic from the eu-west-1 application server IP addresses.
D. Create a transit gateway with a peering attachment between the eu-west-1 VPC and the ap-southeast-2 VPC. After the transit gateways
are properly peered and routing is Configured, create an inbound rule in the database security group that references the security group ID
of the application servers in eu-west-1.

一家全球营销公司在ap-southeast-2区域和eu-west-1区域运行应用程序。在eu-west-1的VPC中运行的应用程序需要与在ap-southeast-2的VPC中运行的数据库进行安全通信。
哪种网络设计能够满足这些需求?
A. 在eu-west-1的VPC和ap-southeast-2的VPC之间创建VPC对等连接。在eu-west-1的应用程序安全组中创建一条入站规则,允许来自ap-southeast-2安全组中数据库服务器IP地址的流量。
B. 在ap-southeast-2的VPC和eu-west-1的VPC之间配置VPC对等连接。更新子网路由表。在ap-southeast-2的数据库安全组中创建一条入站规则,引用eu-west-1中应用程序服务器的安全组ID。
C. 在ap-southeast-2的VPC和eu-west-1的VPC之间配置VPC对等连接。更新子网路由表。在ap-southeast-2的数据库安全组中创建一条入站规则,允许来自eu-west-1应用程序服务器IP地址的流量。
D. 创建一个中转网关,并在eu-west-1的VPC和ap-southeast-2的VPC之间配置对等连接附件。当中转网关正确对等且路由配置完成后,在数据库安全组中创建一条入站规则,引用eu-west-1中应用程序服务器的安全组ID。

105 / 200

分类: SAA-C03

105. A company is developing software that uses a PostgreSQL database schema. The company needs to Configure multiple development
environments and databases for the company’s developers. On average, each development environment is used for half of the 8-hour
workday.
Which solution will meet these requirements MOST cost-effectively?
A. Configure each development environment with its own Amazon Aurora PostgreSQL database
B. Configure each development environment with its own Amazon RDS for PostgreSQL Single-AZ DB instances
C. Configure each development environment with its own Amazon Aurora On-Demand PostgreSQL-Compatible database
D. Configure each development environment with its own Amazon S3 bucket by using Amazon S3 Object Select

一家公司正在开发使用PostgreSQL数据库架构的软件。
公司需要为开发人员配置多个开发环境和数据库。
平均而言,每个开发环境每天在8小时工作制中使用约4小时。

哪种解决方案能以最具成本效益的方式满足这些需求?
A. 为每个开发环境配置独立的Amazon Aurora PostgreSQL数据库
B. 为每个开发环境配置独立的Amazon RDS for PostgreSQL单可用区数据库实例
C. 为每个开发环境配置独立的Amazon Aurora按需PostgreSQL兼容数据库
D. 通过使用Amazon S3 Object Select为每个开发环境配置独立的Amazon S3存储桶

106 / 200

分类: SAA-C03

106. A company uses AWS Organizations with resources tagged by account. The company also uses AWS Backup to back up its AWS infrastructure
resources. The company needs to back up all AWS resources.
Which solution will meet these requirements with the LEAST operational overhead?
A. Use AWS Config to identify all untagged resources. Tag the identi ed resources programmatically. Use tags in the backup plan.
B. Use AWS Config to identify all resources that are not running. Add those resources to the backup vault.
C. Require all AWS account owners to review their resources to identify the resources that need to be backed up.
D. Use Amazon Inspector to identify all noncompliant resources.

一家公司使用AWS组织(AWS Organizations),并按账户对资源进行标记。该公司还使用AWS备份(AWS Backup)来备份其AWS基础设施资源。

公司需要备份所有AWS资源。

哪种解决方案能在最少操作量的情况下满足这些要求?

A. 使用AWS配置(AWS Config)识别所有未标记的资源。通过编程方式给识别出的资源打标记。在备份计划中使用这些标记。

B. 使用AWS配置(AWS Config)识别所有未运行的资源。将这些资源添加到备份存储库中。

C. 要求所有AWS账户所有者审查他们的资源,以识别需要备份的资源。

D. 使用Amazon Inspector识别所有不合规的资源。

107 / 200

分类: SAA-C03

107. A social media company wants to allow its users to upload images in an application that is hosted in the AWS Cloud. The company needs a
solution that automatically resizes the images so that the images can be displayed on multiple device types. The application experiences
unpredictable traffic patterns throughout the day. The company is seeking a highly available solution that maximizes scalability.
What should a solutions architect do to meet these requirements?
A. Create a static website hosted in Amazon S3 that invokes AWS Lambda functions to resize the images and store the images in an
Amazon S3 bucket.
B. Create a static website hosted in Amazon CloudFront that invokes AWS Step Functions to resize the images and store the images in an
Amazon RDS database.
C. Create a dynamic website hosted on a web server that runs on an Amazon EC2 instance. Configure a process that runs on the EC2
instance to resize the images and store the images in an Amazon S3 bucket.
D. Create a dynamic website hosted on an automatically scaling Amazon Elastic Container Service (Amazon ECS) cluster that creates a
resize job in Amazon Simple Queue Service (Amazon SQS). Set up an image-resizing program that runs on an Amazon EC2 instance to
process the resize jobs.

一家社交媒体公司希望允许其用户在一个托管于AWS云中的应用程序上传图片。
公司需要一个能够自动调整图片大小的解决方案,以便这些图片可以在多种设备类型上显示。
该应用程序在全天会经历不可预测的流量模式。
公司正在寻求一个高度可用且能最大限度实现可扩展性的解决方案。
解决方案架构师应该怎么做才能满足这些需求?

A. 创建一个托管在Amazon S3中的静态网站,调用AWS Lambda函数来调整图片大小并将图片存储在Amazon S3存储桶中。
B. 创建一个托管在Amazon CloudFront中的静态网站,调用AWS Step Functions来调整图片大小并将图片存储在Amazon RDS数据库中。
C. 创建一个运行在Amazon EC2实例上的动态网站,配置一个在EC2实例上运行的进程来调整图片大小并将图片存储在Amazon S3存储桶中。
D. 创建一个托管在自动扩展的Amazon Elastic Container Service(Amazon ECS)集群上的动态网站,在Amazon Simple Queue Service(Amazon SQS)中创建调整大小的任务。
设置一个运行在Amazon EC2实例上的图片调整程序来处理这些调整大小的任务。

108 / 200

分类: SAA-C03

108. A company is running a microservices application on Amazon EC2 instances. The company wants to migrate the application to an Amazon
Elastic Kubernetes Service (Amazon EKS) cluster for scalability. The company must Configure the Amazon EKS control plane with endpoint
private access set to true and endpoint public access set to false to maintain security compliance. The company must also put the data plane
in private subnets. However, the company has received error notifications because the node cannot join the cluster.
Which solution will allow the node to join the cluster?
A. Grant the required permission in AWS Identity and Access Management (IAM) to the AmazonEKSNodeRole IAM role.
B. Create interface VPC endpoints to allow nodes to access the control plane.
C. Recreate nodes in the public subnet. Restrict security groups for EC2 nodes.
D. Allow outbound traffic in the security group of the nodes.

一家公司在亚马逊EC2实例上运行着一个微服务应用。该公司希望将应用迁移至亚马逊弹性Kubernetes服务(Amazon EKS)集群以获得更好的扩展性。

根据安全合规要求,公司需要将Amazon EKS控制平面配置为端点私有访问设置为true且端点公共访问设置为false。同时,公司还必须将数据平面放置在私有子网中。

然而,公司已收到错误通知,显示节点无法加入集群。

以下哪个解决方案能让节点成功加入集群?

A. 在AWS身份与访问管理(IAM)中为AmazonEKSNodeRole IAM角色授予所需权限

B. 创建接口VPC端点以允许节点访问控制平面

C. 在公共子网中重建节点。限制EC2节点的安全组规则

D. 在节点的安全组中允许出站流量

109 / 200

分类: SAA-C03

109. A company is migrating an on-premises application to AWS. The company wants to use Amazon Redshift as a solution.
Which use cases are suitable for Amazon Redshift in this scenario? (Choose three.)
A. Supporting data APIs to access data with traditional, containerized, and event-driven applications
B. Supporting client-side and server-side encryption
C. Building analytics workloads during speci ed hours and when the application is not active
D. Caching data to reduce the pressure on the backend database
E. Scaling globally to support petabytes of data and tens of millions of requests per minute
F. Creating a secondary replica of the cluster by using the AWS Management Console

一家公司正在将本地应用程序迁移到AWS。该公司希望使用Amazon Redshift作为解决方案。
在此场景中,哪些使用案例适合Amazon Redshift?(选择三个)
A. 支持数据API通过传统、容器化和事件驱动型应用程序访问数据
B. 支持客户端和服务器端加密
C. 在指定时间以及应用程序不活跃时构建分析工作负载
D. 缓存数据以减轻后端数据库的压力
E. 全球扩展以支持PB级数据和每分钟数以千万计的请求
F. 使用AWS管理控制台创建集群的次要副本

110 / 200

分类: SAA-C03

110. A company provides an API interface to customers so the customers can retrieve their nancial information. Еhe company expects a larger
number of requests during peak usage times of the year.
The company requires the API to respond consistently with low latency to ensure customer satisfaction. The company needs to provide a
compute host for the API.
Which solution will meet these requirements with the LEAST operational overhead?
A. Use an Application Load Balancer and Amazon Elastic Container Service (Amazon ECS).
B. Use Amazon API Gateway and AWS Lambda functions with provisioned concurrency.
C. Use an Application Load Balancer and an Amazon Elastic Kubernetes Service (Amazon EKS) cluster.
D. Use Amazon API Gateway and AWS Lambda functions with reserved concurrency.

一家公司为客户提供了API接口,使客户能够检索他们的财务信息。该公司预计在每年的高峰使用时段会收到大量请求。

公司要求API必须保持低延迟的稳定响应,以确保客户满意度。公司需要为这个API提供一个计算托管方案。

哪种方案能在最小化运维开销的同时满足这些需求?

A. 使用应用负载均衡器和亚马逊弹性容器服务(Amazon ECS)。

B. 使用亚马逊API网关和配置了预置并发功能的AWS Lambda函数。

C. 使用应用负载均衡器和亚马逊弹性Kubernetes服务(Amazon EKS)集群。

D. 使用亚马逊API网关和配置了保留并发功能的AWS Lambda函数。

111 / 200

分类: SAA-C03

111. A company wants to send all AWS Systems Manager Session Manager logs to an Amazon S3 bucket for archival purposes.
Which solution will meet this requirement with the MOST operational e ciency?
A. Enable S3 logging in the Systems Manager console. Choose an S3 bucket to send the session data to.
B. Install the Amazon CloudWatch agent. Push all logs to a CloudWatch log group. Export the logs to an S3 bucket from the group for
archival purposes.
C. Create a Systems Manager document to upload all server logs to a central S3 bucket. Use Amazon EventBridge to run the Systems
Manager document against all servers that are in the account daily.
D. Install an Amazon CloudWatch agent. Push all logs to a CloudWatch log group. Create a CloudWatch logs subscription that pushes any
incoming log events to an Amazon Kinesis Data Firehose delivery stream. Set Amazon S3 as the destination.

一家公司希望将所有AWS Systems Manager会话管理器日志发送到Amazon S3存储桶进行归档。
哪个解决方案能以最高运营效率满足这一需求?
A. 在Systems Manager控制台中启用S3日志记录。选择一个S3存储桶来发送会话数据。
B. 安装Amazon CloudWatch代理。将所有日志推送到CloudWatch日志组。出于归档目的,将该组中的日志导出到S3存储桶。
C. 创建一个Systems Manager文档,将所有服务器日志上传到中央S3存储桶。使用Amazon EventBridge每天对账户中的所有服务器运行该Systems Manager文档。
D. 安装Amazon CloudWatch代理。将所有日志推送到CloudWatch日志组。创建一个CloudWatch日志订阅,将任何传入的日志事件推送到Amazon Kinesis Data Firehose传输流。将Amazon S3设置为目的地。

112 / 200

分类: SAA-C03

112. An application uses an Amazon RDS MySQL DB instance. The RDS database is becoming low on disk space. A solutions architect wants to
increase the disk space without downtime.
Which solution meets these requirements with the LEAST amount of effort?
A. Enable storage autoscaling in RDS
B. Increase the RDS database instance size
C. Change the RDS database instance storage type to Provisioned IOPS
D. Back up the RDS database, increase the storage capacity, restore the database, and stop the previous instance

一个应用程序使用了Amazon RDS MySQL数据库实例。RDS数据库的磁盘空间即将不足。解决方案架构师希望在不停机的情况下增加磁盘空间。

哪种解决方案能够以最少的工作量满足这些要求?

A. 在RDS中启用存储自动扩展

B. 增加RDS数据库实例大小

C. 将RDS数据库实例存储类型更改为预置IOPS

D. 备份RDS数据库,增加存储容量,恢复数据库,并停止之前的实例

113 / 200

分类: SAA-C03

113. A consulting company provides professional services to customers worldwide. The company provides solutions and tools for customers to
expedite gathering and analyzing data on AWS. The company needs to centrally manage and deploy a common set of solutions and tools for
customers to use for self-service purposes.
Which solution will meet these requirements?
A. Create AWS CloudFormation templates for the customers.
B. Create AWS Service Catalog products for the customers.
C. Create AWS Systems Manager templates for the customers.
D. Create AWS Config items for the customers.

一家咨询公司为全球客户提供专业化服务。该公司为客户提供在AWS上加速数据收集和分析的解决方案和工具。这家公司需要集中管理和部署一套通用的解决方案及工具以供客户自助使用。

哪种解决方案能够满足这些需求?

A. 为客户创建AWS CloudFormation模板
B. 为客户创建AWS Service Catalog产品
C. 为客户创建AWS Systems Manager模板
D. 为客户创建AWS Config配置项

114 / 200

分类: SAA-C03

114. A company is designing a new web application that will run on Amazon EC2 Instances. The application will use Amazon DynamoDB for
backend data storage. The application traffic will be unpredictable. The company expects that the application read and write throughput to
the database will be moderate to high. The company needs to scale in response to application traffic.
Which DynamoDB table configuration will meet these requirements MOST cost-effectively?
A. Configure DynamoDB with provisioned read and write by using the DynamoDB Standard table class. Set DynamoDB auto scaling to a
maximum de ned capacity.
B. Configure DynamoDB in on-demand mode by using the DynamoDB Standard table class.
C. Configure DynamoDB with provisioned read and write by using the DynamoDB Standard Infrequent Access (DynamoDB Standard-IA)
table class. Set DynamoDB auto scaling to a maximum de ned capacity.
D. Configure DynamoDB in on-demand mode by using the DynamoDB Standard Infrequent Access (DynamoDB Standard-IA) table class.

一家公司正在设计一个新的网络应用程序,该程序将运行在亚马逊EC2实例上。应用程序将使用Amazon DynamoDB作为后端数据存储。预计应用程序的流量将难以预测。公司预计对数据库的读写吞吐量将处于中高水平。公司需要根据应用程序流量进行扩展。

哪种DynamoDB表配置能以最具成本效益的方式满足这些需求?

A. 使用DynamoDB标准表类配置预置读写容量,并设置DynamoDB自动扩展至最大定义容量。
B. 使用DynamoDB标准表类按需配置DynamoDB。
C. 使用DynamoDB标准不频繁访问(DynamoDB Standard-IA)表类配置预置读写容量,并设置DynamoDB自动扩展至最大定义容量。
D. 使用DynamoDB标准不频繁访问(DynamoDB Standard-IA)表类按需配置DynamoDB。

115 / 200

分类: SAA-C03

115. A retail company has several businesses. The IT team for each business manages its own AWS account. Each team account is part of an
organization in AWS Organizations. Each team monitors its product inventory levels in an Amazon DynamoDB table in the team’s own AWS
account.
The company is deploying a central inventory reporting application into a shared AWS account. The application must be able to read items
from all the teams’ DynamoDB tables.
Which authentication option will meet these requirements MOST securely?
A. Integrate DynamoDB with AWS Secrets Manager in the inventory application account. Configure the application to use the correct secret
from Secrets Manager to authenticate and read the DynamoDB table. Schedule secret rotation for every 30 days.
B. In every business account, create an IAM user that has programmatic access. Configure the application to use the correct IAM user
access key ID and secret access key to authenticate and read the DynamoDB table. Manually rotate IAM access keys every 30 days.
C. In every business account, create an IAM role named BU_ROLE with a policy that gives the role access to the DynamoDB table and a
trust policy to trust a speci c role in the inventory application account. In the inventory account, create a role named APP_ROLE that
allows access to the STS AssumeRole API operation. Configure the application to use APP_ROLE and assume the crossaccount role
BU_ROLE to read the DynamoDB table.
D. Integrate DynamoDB with AWS Certificate Manager (ACM). Generate identity certificates to authenticate DynamoDB. Configure the
application to use the correct certificate to authenticate and read the DynamoDB table.

一家零售公司拥有多家业务部门。每个业务部门的IT团队管理着自己独立的AWS账户。这些团队账户都属于AWS Organizations中的同一组织。
每个团队在各自AWS账户的Amazon DynamoDB表中监控其产品库存水平。
公司正在将一个集中式库存报告应用程序部署到一个共享的AWS账户中。该应用程序需要能够从所有团队的DynamoDB表中读取数据。
以下哪种认证方案能最安全地满足这些需求?
A. 在库存应用账户中将DynamoDB与AWS Secrets Manager集成。配置应用程序使用Secrets Manager中正确的密钥进行认证并读取DynamoDB表。设置每30天轮换一次密钥。
B. 在每个业务账户中创建一个具有编程访问权限的IAM用户。配置应用程序使用正确的IAM用户访问密钥ID和秘密访问密钥进行认证并读取DynamoDB表。每30天手动轮换IAM访问密钥。
C. 在每个业务账户中创建名为BU_ROLE的IAM角色,其策略允许该角色访问DynamoDB表,并设置信任策略以信任库存应用账户中的特定角色。在库存账户中创建名为APP_ROLE的角色,允许访问STS AssumeRole API操作。配置应用程序使用APP_RLOE并通过跨账户角色BU_ROLE来读取DynamoDB表。
D. 将DynamoDB与AWS证书管理器(ACM)集成。生成身份证书以认证DynamoDB。配置应用程序使用正确的证书进行认证并读取DynamoDB表。

116 / 200

分类: SAA-C03

116. A company runs container applications by using Amazon Elastic Kubernetes Service (Amazon EKS). The company’s workload is not consistent
throughout the day. The company wants Amazon EKS to scale in and out according to the workload.
Which combination of steps will meet these requirements with the LEAST operational overhead? (Choose two.)
A. Use an AWS Lambda function to resize the EKS cluster.
B. Use the Kubernetes Metrics Server to activate horizontal pod autoscaling.
C. Use the Kubernetes Cluster Autoscaler to manage the number of nodes in the cluster.
D. Use Amazon API Gateway and connect it to Amazon EKS.
E. Use AWS App Mesh to observe network activity.

一家公司使用亚马逊弹性Kubernetes服务(Amazon EKS)运行容器应用。该公司的负载在一天中并不稳定。

公司希望Amazon EKS能够根据工作负载自动进行伸缩。

哪种组合方案能以最小的运维开销满足这些需求?(选择两项。)

A. 使用AWS Lambda函数调整EKS集群规模。

B. 使用Kubernetes指标服务器激活水平Pod自动缩放。

C. 使用Kubernetes集群自动扩缩器管理集群中的节点数量。

D. 使用Amazon API网关并将其连接到Amazon EKS。

E. 使用AWS App Mesh观察网络活动。

117 / 200

分类: SAA-C03

117. A company runs a microservice-based serverless web application. The application must be able to retrieve data from multiple Amazon
DynamoDB tables A solutions architect needs to give the application the ability to retrieve the data with no impact on the baseline
performance of the application.
Which solution will meet these requirements in the MOST operationally e cient way?
A. AWS AppSync pipeline resolvers
B. Amazon CloudFront with Lambda@Edge functions
C. Edge-optimized Amazon API Gateway with AWS Lambda functions
D. Amazon Athena Federated Query with a DynamoDB connector

一家公司运营着基于微服务的无服务器网络应用程序。该应用程序需要能够从多个亚马逊DynamoDB表中检索数据。
解决方案架构师需要赋予应用程序在不影响其基准性能的情况下检索数据的能力。
哪种解决方案能以最高效的方式满足这些要求?
A. AWS AppSync管道解析器
B. 带有Lambda@Edge功能的亚马逊CloudFront
C. 带有AWS Lambda功能的边缘优化型亚马逊API网关
D. 使用DynamoDB连接器的亚马逊Athena联合查询

118 / 200

分类: SAA-C03

118. A company wants to analyze and troubleshoot Access Denied errors and Unauthorized errors that are related to IAM permissions. The
company has AWS CloudTrail turned on.
Which solution will meet these requirements with the LEAST effort?
A. Use AWS Glue and write custom scripts to query CloudTrail logs for the errors.
B. Use AWS Batch and write custom scripts to query CloudTrail logs for the errors.
C. Search CloudTrail logs with Amazon Athena queries to identify the errors.
D. Search CloudTrail logs with Amazon QuickSight. Create a dashboard to identify the errors.

一家公司想要分析和排查与IAM权限相关的访问被拒绝错误和未经授权错误。
该公司已启用AWS CloudTrail。
哪种解决方案能以最小的努力满足这些要求?
A. 使用AWS Glue并编写自定义脚本来查询CloudTrail日志中的错误。
B. 使用AWS Batch并编写自定义脚本来查询CloudTrail日志中的错误。
C. 使用Amazon Athena查询搜索CloudTrail日志来识别错误。
D. 使用Amazon QuickSight搜索CloudTrail日志,创建一个仪表板来识别错误。

119 / 200

分类: SAA-C03

119. A company wants to add its existing AWS usage cost to its operation cost dashboard. A solutions architect needs to recommend a solution
that will give the company access to its usage cost programmatically. The company must be able to access cost data for the current year and
forecast costs for the next 12 months.
Which solution will meet these requirements with the LEAST operational overhead?
A. Access usage cost-related data by using the AWS Cost Explorer API with pagination.
B. Access usage cost-related data by using downloadable AWS Cost Explorer report .csv files.
C. Configure AWS Budgets actions to send usage cost data to the company through FTP.
D. Create AWS Budgets reports for usage cost data. Send the data to the company through SMTP.

一家公司希望将其现有的AWS使用成本加入运营成本仪表板。一位解决方案架构师需要推荐一个方案,让公司能够通过编程方式访问其使用成本。
公司必须能够访问当年的成本数据,并预测未来12个月的成本。
哪个方案能以最小的运维开销满足这些需求?
A. 通过使用带有分页功能的AWS Cost Explorer API来访问与使用成本相关的数据。
B. 通过使用可下载的AWS Cost Explorer报告.csv文件来访问与使用成本相关的数据。
C. 配置AWS预算操作,通过FTP将使用成本数据发送给公司。
D. 创建AWS预算报告以获取使用成本数据。通过SMTP将数据发送给公司。

120 / 200

分类: SAA-C03

120. A solutions architect is reviewing the resilience of an application. The solutions architect notices that a database administrator recently failed
over the application’s Amazon Aurora PostgreSQL database writer instance as part of a scaling exercise. The failover resulted in 3 minutes of
downtime for the application.
Which solution will reduce the downtime for scaling exercises with the LEAST operational overhead?
A. Create more Aurora PostgreSQL read replicas in the cluster to handle the load during failover.
B. Set up a secondary Aurora PostgreSQL cluster in the same AWS Region. During failover, update the application to use the secondary
cluster’s writer endpoint.
C. Create an Amazon ElastiCache for Memcached cluster to handle the load during failover.
D. Set up an Amazon RDS proxy for the database. Update the application to use the proxy endpoint.

解决方案架构师正在审查应用程序的弹性。解决方案架构师注意到,数据库管理员最近在扩展练习中将应用程序的Amazon Aurora PostgreSQL数据库写入实例进行了故障转移。

这次故障转移导致应用程序出现了3分钟的停机时间。

哪种解决方案能够以最少的操作开销减少扩展练习期间的停机时间?

A. 在集群中创建更多Aurora PostgreSQL只读副本来处理故障转移期间的负载。
B. 在同一AWS区域设置一个辅助Aurora PostgreSQL集群。在故障转移期间,将应用程序更新为使用辅助集群的写入终端节点。
C. 创建一个Amazon ElastiCache for Memcached集群来处理故障转移期间的负载。
D. 为数据库设置Amazon RDS代理。更新应用程序以使用代理终端节点。

121 / 200

分类: SAA-C03

121. A company has a regional subscription-based streaming service that runs in a single AWS Region. The architecture consists of web servers
and application servers on Amazon EC2 instances. The EC2 instances are in Auto Scaling groups behind Elastic Load Balancers. The
architecture includes an Amazon Aurora global database cluster that extends across multiple Availability Zones.
The company wants to expand globally and to ensure that its application has minimal downtime.
Which solution will provide the MOST fault tolerance?
A. Extend the Auto Scaling groups for the web tier and the application tier to deploy instances in Availability Zones in a second Region.
Use an Aurora global database to deploy the database in the primary Region and the second Region. Use Amazon Route 53 health checks
with a failover routing policy to the second Region.
B. Deploy the web tier and the application tier to a second Region. Add an Aurora PostgreSQL cross-Region Aurora Replica in the second
Region. Use Amazon Route 53 health checks with a failover routing policy to the second Region. Promote the secondary to primary as
needed.
C. Deploy the web tier and the application tier to a second Region. Create an Aurora PostgreSQL database in the second Region. Use AWS
Database Migration Service (AWS DMS) to replicate the primary database to the second Region. Use Amazon Route 53 health checks with
a failover routing policy to the second Region.
D. Deploy the web tier and the application tier to a second Region. Use an Amazon Aurora global database to deploy the database in the
primary Region and the second Region. Use Amazon Route 53 health checks with a failover routing policy to the second Region. Promote
the secondary to primary as needed.

一家公司拥有基于区域订阅的流媒体服务,运行在单一AWS区域中。该架构包括部署在Amazon EC2实例上的Web服务器和应用服务器。这些EC2实例位于弹性负载均衡器后面的自动扩展组中。架构中还包含一个跨多个可用区的Amazon Aurora全局数据库集群。

公司希望进行全球扩展,并确保其应用的停机时间最短。

哪种解决方案能提供最佳的容错能力?

A. 扩展Web层和应用层的自动扩展组,在第二个区域的可用区中部署实例。使用Aurora全局数据库分别在主区域和第二区域部署数据库。利用Amazon Route 53健康检查配合故障转移路由策略指向第二区域。

B. 将Web层和应用层部署到第二个区域。在第二区域添加一个跨区域Aurora PostgreSQL副本。利用Amazon Route 53健康检查配合故障转移路由策略指向第二区域。根据需要将次要副本提升为主副本。

C. 将Web层和应用层部署到第二个区域。在第二区域创建一个Aurora PostgreSQL数据库。使用AWS数据库迁移服务(AWS DMS)将主数据库复制到第二区域。利用Amazon Route 53健康检查配合故障转移路由策略指向第二区域。

D. 将Web层和应用层部署到第二个区域。使用Amazon Aurora全局数据库分别在主区域和第二区域部署数据库。利用Amazon Route 53健康检查配合故障转移路由策略指向第二区域。根据需要将次要副本提升为主副本。

122 / 200

分类: SAA-C03

122. A data analytics company wants to migrate its batch processing system to AWS. The company receives thousands of small data les
periodically during the day through FTP. An on-premises batch job processes the data files overnight. However, the batch job takes hours to
nish running.
The company wants the AWS solution to process incoming data files as soon as possible with minimal changes to the FTP clients that send
the files. The solution must delete the incoming data files after the files have been processed successfully. Processing for eachfileneeds to
take 3-8 minutes.
Which solution will meet these requirements in the MOST operationally e cient way?
A. Use an Amazon EC2 instance that runs an FTP server to store incoming files as objects in Amazon S3 Glacier Flexible Retrieval.
Configure a job queue in AWS Batch. Use Amazon EventBridge rules to invoke the job to process the objects nightly from S3 Glacier
Flexible Retrieval. Delete the objects after the job has processed the objects.
B. Use an Amazon EC2 instance that runs an FTP server to store incoming files on an Amazon Elastic Block Store (Amazon EBS) volume.
Configure a job queue in AWS Batch. Use Amazon EventBridge rules to invoke the job to process the files nightly from the EBS volume.
Delete the files after the job has processed the files.
C. Use AWS Transfer Family to create an FTP server to store incoming files on an Amazon Elastic Block Store (Amazon EBS) volume.
Configure a job queue in AWS Batch. Use an Amazon S3 event notification when eachfilearrives to invoke the job in AWS Batch. Delete
the files after the job has processed the files.
D. Use AWS Transfer Family to create an FTP server to store incoming files in Amazon S3 Standard. Create an AWS Lambda function to
process the files and to delete the files after they are processed. Use an S3 event notification to invoke the Lambda function when the
files arrive.

一家数据分析公司希望将批量处理系统迁移至AWS。
该公司每天会通过FTP定期接收数千个小数据文件。
目前使用本地批量作业在夜间处理这些数据文件,但该作业需要数小时才能完成运行。

公司希望AWS解决方案能尽快处理传入数据文件,同时对发送文件的FTP客户端改动最小。
解决方案必须在文件成功处理后删除传入的数据文件。
每个文件的处理时间需要控制在3-8分钟内。

哪种解决方案能以最高效的运维方式满足这些需求?

A. 使用运行FTP服务器的Amazon EC2实例,将传入文件存储为Amazon S3 Glacier Flexible Retrieval中的对象。
在AWS Batch中配置作业队列,使用Amazon EventBridge规则在夜间从S3 Glacier Flexible Retrieval调用作业处理对象。
作业处理完成后删除对象。

B. 使用运行FTP服务器的Amazon EC2实例,在Amazon Elastic Block Store(EBS)卷上存储传入文件。
在AWS Batch中配置作业队列,使用Amazon EventBridge规则在夜间从EBS卷调用作业处理文件。
作业处理完成后删除文件。

C. 使用AWS Transfer Family创建FTP服务器,在Amazon Elastic Block Store(EBS)卷上存储传入文件。
在AWS Batch中配置作业队列,当每个文件到达时使用Amazon S3事件通知来调用AWS Batch中的作业。
作业处理完成后删除文件。

D. 使用AWS Transfer Family创建FTP服务器,在Amazon S3 Standard中存储传入文件。
创建AWS Lambda函数来处理文件并在处理后删除文件。
当文件到达时使用S3事件通知调用Lambda函数。

123 / 200

分类: SAA-C03

123. A company is migrating its workloads to AWS. The company has transactional and sensitive data in its databases. The company wants to use
AWS Cloud solutions to increase security and reduce operational overhead for the databases.
Which solution will meet these requirements?
A. Migrate the databases to Amazon EC2. Use an AWS Key Management Service (AWS KMS) AWS managed key for encryption.
B. Migrate the databases to Amazon RDS Configure encryption at rest.
C. Migrate the data to Amazon S3 Use Amazon Macie for data security and protection
D. Migrate the database to Amazon RDS. Use Amazon CloudWatch Logs for data security and protection.

一家公司正在将其工作负载迁移至亚马逊云科技(AWS)。
该公司数据库中存有交易数据和敏感数据。
该公司希望使用AWS云解决方案来提高数据库安全性并降低运维开销。
以下哪个方案能满足这些要求?
A. 将数据库迁移至亚马逊EC2,并使用AWS密钥管理服务(AWS KMS)的AWS托管密钥进行加密
B. 将数据库迁移至亚马逊RDS,并配置静态加密
C. 将数据迁移至亚马逊S3,并使用Amazon Macie实现数据安全与保护
D. 将数据库迁移至亚马逊RDS,并使用Amazon CloudWatch日志实现数据安全与保护

124 / 200

分类: SAA-C03

124. A company has an online gaming application that has TCP and UDP multiplayer gaming capabilities. The company uses Amazon Route 53 to
point the application traffic to multiple Network Load Balancers (NLBs) in different AWS Regions. The company needs to improve application
performance and decrease latency for the online game in preparation for user growth.
Which solution will meet these requirements?
A. Add an Amazon CloudFront distribution in front of the NLBs. Increase the Cache-Control max-age parameter.
B. Replace the NLBs with Application Load Balancers (ALBs). Configure Route 53 to use latency-based routing.
C. Add AWS Global Accelerator in front of the NLBs. Configure a Global Accelerator endpoint to use the correct listener ports.
D. Add an Amazon API Gateway endpoint behind the NLBs. Enable API caching. Override method caching for the different stages.

一家公司拥有一个具备TCP和UDP多人游戏功能的在线游戏应用程序。
该公司使用Amazon Route 53将应用程序流量导向位于不同AWS区域的多个网络负载均衡器(NLB)。
为了应对用户增长,公司需要提升应用性能并降低在线游戏的延迟。

以下哪种方案能够满足这些需求?

A. 在NLB前添加Amazon CloudFront分发。增加Cache-Control的max-age参数。
B. 将NLB替换为应用负载均衡器(ALB)。配置Route 53使用基于延迟的路由。
C. 在NLB前添加AWS Global Accelerator。配置Global Accelerator终端节点使用正确的监听端口。
D. 在NLB后添加Amazon API Gateway终端节点。启用API缓存。为不同阶段覆写方法缓存。

125 / 200

分类: SAA-C03

125. A company needs to integrate with a third-party data feed. The data feed sends a webhook to notify an external service when new data is
ready for consumption. A developer wrote an AWS Lambda function to retrieve data when the company receives a webhook callback. The
developer must make the Lambda function available for the third party to call.
Which solution will meet these requirements with the MOST operational e ciency?
A. Create a function URL for the Lambda function. Provide the Lambda function URL to the third party for the webhook.
B. Deploy an Application Load Balancer (ALB) in front of the Lambda function. Provide the ALB URL to the third party for the webhook.
C. Create an Amazon Simple Notification Service (Amazon SNS) topic. Attach the topic to the Lambda function. Provide the public
hostname of the SNS topic to the third party for the webhook.
D. Create an Amazon Simple Queue Service (Amazon SQS) queue. Attach the queue to the Lambda function. Provide the public hostname
of the SQS queue to the third party for the webhook.

一家公司需要与第三方数据源进行集成。当有新数据可供使用时,该数据源会发送网络钩子来通知外部服务。一名开发人员编写了一个AWS Lambda函数,用于在公司收到网络钩子回调时检索数据。

开发人员需要使Lambda函数能够被第三方调用。以下哪种解决方案能在最大运作效率下满足这些要求?

A. 为Lambda函数创建一个函数URL。将Lambda函数URL提供给第三方用于网络钩子。

B. 在Lambda函数前部署一个应用负载均衡器(ALB)。将ALB的URL提供给第三方用于网络钩子。

C. 创建一个亚马逊简单通知服务(Amazon SNS)主题。将该主题附加到Lambda函数。将SNS主题的公共主机名提供给第三方用于网络钩子。

D. 创建一个亚马逊简单队列服务(Amazon SQS)队列。将该队列附加到Lambda函数。将SQS队列的公共主机名提供给第三方用于网络钩子。

126 / 200

分类: SAA-C03

126. A company has a workload in an AWS Region. Customers connect to and access the workload by using an Amazon API Gateway REST API. The
company uses Amazon Route 53 as its DNS provider. The company wants to provide individual and secure URLs for all customers.
Which combination of steps will meet these requirements with the MOST operational e ciency? (Choose three.)
A. Register the required domain in a registrar. Create a wildcard custom domain name in a Route 53 hosted zone and record in the zone
that points to the API Gateway endpoint.
B. Request a wildcard certificate that matches the domains in AWS Certificate Manager (ACM) in a different Region.
C. Create hosted zones for each customer as required in Route 53. Create zone records that point to the API Gateway endpoint.
D. Request a wildcard certificate that matches the custom domain name in AWS Certificate Manager (ACM) in the same Region.
E. Create multiple API endpoints for each customer in API Gateway.
F. Create a custom domain name in API Gateway for the REST API. Import the certificate from AWS Certificate Manager (ACM).

一家公司在某个AWS区域运行着一个工作负载。客户通过使用亚马逊API网关的REST API连接并访问该工作负载。
该公司使用亚马逊路由53作为其DNS提供商。该公司希望为所有客户提供独立且安全的URL。
以下哪三种步骤组合能够在最符合操作效率的情况下满足这些要求?(选择三项。)
A. 在域名注册商处注册所需域名。在路由53托管区域中创建通配符自定义域名,并在该区域中创建指向API网关端点的记录。
B. 在AWS证书管理器(ACM)中为匹配不同区域的域名申请通配符证书。
C. 根据需要为每个客户在路由53中创建托管区域。创建指向API网关端点的区域记录。
D. 在AWS证书管理器(ACM)中为匹配同区域自定义域名的域名申请通配符证书。
E. 在API网关中为每个客户创建多个API端点。
F. 为REST API在API网关中创建自定义域名。从AWS证书管理器(ACM)导入证书。

127 / 200

分类: SAA-C03

127. A company stores data in Amazon S3. According to regulations, the data must not contain personally identi able information (PII). The
company recently discovered that S3 buckets have some objects that contain PII. The company needs to automatically detect PII in S3
buckets and to notify the company’s security team.
Which solution will meet these requirements?
A. Use Amazon Macie. Create an Amazon EventBridge rule to lter the SensitiveData event type from Macie ndings and to send an
Amazon Simple Notification Service (Amazon SNS) notification to the security team.
B. Use Amazon GuardDuty. Create an Amazon EventBridge rule to lter the CRITICAL event type from GuardDuty ndings and to send an
Amazon Simple Notification Service (Amazon SNS) notification to the security team.
C. Use Amazon Macie. Create an Amazon EventBridge rule to lter the SensitiveData:S3Object/Personal event type from Macie ndings
and to send an Amazon Simple Queue Service (Amazon SQS) notification to the security team.
D. Use Amazon GuardDuty. Create an Amazon EventBridge rule to lter the CRITICAL event type from GuardDuty ndings and to send an
Amazon Simple Queue Service (Amazon SQS) notification to the security team.

一家公司在亚马逊S3中存储数据。根据法规要求,这些数据不得包含个人可识别信息(PII)。
该公司最近发现S3存储桶中存在一些包含PII的对象。公司需要自动检测S3存储桶中的PII并向安全团队发出通知。
哪种解决方案符合这些要求?
A. 使用Amazon Macie服务。创建一条Amazon EventBridge规则来过滤Macie发现报告中的SensitiveData事件类型,并通过Amazon Simple Notification Service(Amazon SNS)向安全团队发送通知。
B. 使用Amazon GuardDuty服务。创建一条Amazon EventBridge规则来过滤GuardDuty发现报告中的CRITICAL事件类型,并通过Amazon Simple Notification Service(Amazon SNS)向安全团队发送通知。
C. 使用Amazon Macie服务。创建一条Amazon EventBridge规则来过滤Macie发现报告中的SensitiveData:S3Object/Personal事件类型,并通过Amazon Simple Queue Service(Amazon SQS)向安全团队发送通知。
D. 使用Amazon GuardDuty服务。创建一条Amazon EventBridge规则来过滤GuardDuty发现报告中的CRITICAL事件类型,并通过Amazon Simple Queue Service(Amazon SQS)向安全团队发送通知。

128 / 200

分类: SAA-C03

128. A company wants to build a logging solution for its multiple AWS accounts. The company currently stores the logs from all accounts in a
centralized account. The company has created an Amazon S3 bucket in the centralized account to store the VPC ow logs and AWS CloudTrail
logs. All logs must be highly available for 30 days for frequent analysis, retained for an additional 60 days for backup purposes, and deleted
90 days after creation.
Which solution will meet these requirements MOST cost-effectively?
A. Transition objects to the S3 Standard storage class 30 days after creation. Write an expiration action that directs Amazon S3 to delete
objects after 90 days.
B. Transition objects to the S3 Standard-Infrequent Access (S3 Standard-IA) storage class 30 days after creation. Move all objects to the
S3 Glacier Flexible Retrieval storage class after 90 days. Write an expiration action that directs Amazon S3 to delete objects after 90 days.
C. Transition objects to the S3 Glacier Flexible Retrieval storage class 30 days after creation. Write an expiration action that directs
Amazon S3 to delete objects after 90 days.
D. Transition objects to the S3 One Zone-Infrequent Access (S3 One Zone-IA) storage class 30 days after creation. Move all objects to the
S3 Glacier Flexible Retrieval storage class after 90 days. Write an expiration action that directs Amazon S3 to delete objects after 90 days.

一家公司希望为其多个AWS账户构建日志记录解决方案。该公司目前将所有账户的日志集中存储在一个中央账户中。
该公司已在中央账户中创建了一个Amazon S3存储桶,用于存储VPC流日志和AWS CloudTrail日志。
所有日志必须保持高可用性30天以便频繁分析,另外保留60天用于备份目的,并在创建90天后删除。
哪种解决方案能以最具成本效益的方式满足这些要求?
A. 在创建30天后将对象转换为S3标准存储类。编写一个过期操作,指示Amazon S3在90天后删除对象。
B. 在创建30天后将对象转换为S3标准-不频繁访问(S3 Standard-IA)存储类。90天后将所有对象移动到S3 Glacier Flexible Retrieval存储类。编写一个过期操作,指示Amazon S3在90天后删除对象。
C. 在创建30天后将对象转换为S3 Glacier Flexible Retrieval存储类。编写一个过期操作,指示Amazon S3在90天后删除对象。
D. 在创建30天后将对象转换为S3单区域-不频繁访问(S3 One Zone-IA)存储类。90天后将所有对象移动到S3 Glacier Flexible Retrieval存储类。编写一个过期操作,指示Amazon S3在90天后删除对象。

129 / 200

分类: SAA-C03

129. A company is building an Amazon Elastic Kubernetes Service (Amazon EKS) cluster for its workloads. All secrets that are stored in Amazon
EKS must be encrypted in the Kubernetes etcd key-value store.
Which solution will meet these requirements?
A. Create a new AWS Key Management Service (AWS KMS) key. Use AWS Secrets Manager to manage, rotate, and store all secrets in
Amazon EKS.
B. Create a new AWS Key Management Service (AWS KMS) key. Enable Amazon EKS KMS secrets encryption on the Amazon EKS cluster.
C. Create the Amazon EKS cluster with default options. Use the Amazon Elastic Block Store (Amazon EBS) Container Storage Interface
(CSI) driver as an add-on.
D. Create a new AWS Key Management Service (AWS KMS) key with the alias/aws/ebs alias. Enable default Amazon Elastic Block Store
(Amazon EBS) volume encryption for the account.

一家公司正在为其工作负载构建一个Amazon Elastic Kubernetes Service(Amazon EKS)集群。
所有存储在Amazon EKS中的机密信息都必须在Kubernetes etcd键值存储中进行加密。
哪种解决方案能够满足这些要求?
A. 创建一个新的AWS密钥管理服务(AWS KMS)密钥。使用AWS Secrets Manager来管理、轮换和存储Amazon EKS中的所有机密信息。
B. 创建一个新的AWS密钥管理服务(AWS KMS)密钥。在Amazon EKS集群上启用Amazon EKS KMS机密信息加密功能。
C. 使用默认选项创建Amazon EKS集群。将Amazon Elastic Block Store(Amazon EBS)Container Storage Interface(CSI)驱动程序作为附加组件使用。
D. 创建一个别名为alias/aws/ebs的AWS密钥管理服务(AWS KMS)密钥。为账户启用默认的Amazon Elastic Block Store(Amazon EBS)卷加密功能。

130 / 200

分类: SAA-C03

130. A company wants to provide data scientists with near real-time read-only access to the company’s production Amazon RDS for PostgreSQL
database. The database is currently Configured as a Single-AZ database. The data scientists use complex queries that will not affect the
production database. The company needs a solution that is highly available.
Which solution will meet these requirements MOST cost-effectively?
A. Scale the existing production database in a maintenance window to provide enough power for the data scientists.
B. Change the setup from a Single-AZ to a Multi-AZ instance deployment with a larger secondary standby instance. Provide the data
scientists access to the secondary instance.
C. Change the setup from a Single-AZ to a Multi-AZ instance deployment. Provide two additional read replicas for the data scientists.
D. Change the setup from a Single-AZ to a Multi-AZ cluster deployment with two readable standby instances. Provide read endpoints to
the data scientists.

一家公司希望为数据科学家提供对公司生产环境Amazon RDS for PostgreSQL数据库的近实时只读访问权限。当前该数据库配置为单可用区数据库。数据科学家执行的复杂查询不会影响生产数据库。公司需要一个具备高可用性的解决方案。

以下哪种方案能以最具成本效益的方式满足这些需求?

A. 在维护窗口期间扩展现有生产数据库,为数据科学家提供足够算力。

B. 将部署架构从单可用区更改为多可用区实例部署,并配置更大的次要备用实例。允许数据科学家访问次要实例。

C. 将部署架构从单可用区更改为多可用区实例部署。为数据科学家额外添加两个只读副本。

D. 将部署架构从单可用区更改为多可用区集群部署,配置两个可读备用实例。向数据科学家提供读取终端节点。

131 / 200

分类: SAA-C03

131. A company runs a three-tier web application in the AWS Cloud that operates across three Availability Zones. The application architecture has
an Application Load Balancer, an Amazon EC2 web server that hosts user session states, and a MySQL database that runs on an EC2 instance.
The company expects sudden increases in application traffic. The company wants to be able to scale to meet future application capacity
demands and to ensure high availability across all three Availability Zones.
Which solution will meet these requirements?
A. Migrate the MySQL database to Amazon RDS for MySQL with a Multi-AZ DB cluster deployment. Use Amazon ElastiCache for Redis with
high availability to store session data and to cache reads. Migrate the web server to an Auto Scaling group that is in three Availability
Zones.
B. Migrate the MySQL database to Amazon RDS for MySQL with a Multi-AZ DB cluster deployment. Use Amazon ElastiCache for
Memcached with high availability to store session data and to cache reads. Migrate the web server to an Auto Scaling group that is in
three Availability Zones.
C. Migrate the MySQL database to Amazon DynamoDB Use DynamoDB Accelerator (DAX) to cache reads. Store the session data in
DynamoDB. Migrate the web server to an Auto Scaling group that is in three Availability Zones.
D. Migrate the MySQL database to Amazon RDS for MySQL in a single Availability Zone. Use Amazon ElastiCache for Redis with high
availability to store session data and to cache reads. Migrate the web server to an Auto Scaling group that is in three Availability Zones.

一家公司在AWS云中运行一个跨三个可用区的三层网络应用程序。该应用架构包含
一个应用负载均衡器、一个托管用户会话状态的亚马逊EC2网络服务器,以及一个在EC2实例上运行的MySQL数据库。
公司预计会出现应用流量骤增的情况。他们希望能够扩展以满足未来应用的容量需求,并确保所有三个可用区的高可用性。
以下哪种解决方案可以满足这些要求?
A. 将MySQL数据库迁移至采用多可用区数据库集群部署的Amazon RDS for MySQL。使用具备高可用性的Amazon ElastiCache for Redis来存储会话数据并缓存读取操作。将网络服务器迁移至跨三个可用区的自动扩展组。
B. 将MySQL数据库迁移至采用多可用区数据库集群部署的Amazon RDS for MySQL。使用具备高可用性的Amazon ElastiCache for Memcached来存储会话数据并缓存读取操作。将网络服务器迁移至跨三个可用区的自动扩展组。
C. 将MySQL数据库迁移至Amazon DynamoDB。使用DynamoDB加速器(DAX)缓存读取操作。将会话数据存储在DynamoDB中。将网络服务器迁移至跨三个可用区的自动扩展组。
D. 将MySQL数据库迁移至单可用区的Amazon RDS for MySQL。使用具备高可用性的Amazon ElastiCache for Redis来存储会话数据并缓存读取操作。将网络服务器迁移至跨三个可用区的自动扩展组。

132 / 200

分类: SAA-C03

132. A global video streaming company uses Amazon CloudFront as a content distribution network (CDN). The company wants to roll out content in
a phased manner across multiple countries. The company needs to ensure that viewers who are outside the countries to which the company
rolls out content are not able to view the content.
Which solution will meet these requirements?
A. Add geographic restrictions to the content in CloudFront by using an allow list. Set up a custom error message.
B. Set up a new URL tor restricted content. Authorize access by using a signed URL and cookies. Set up a custom error message.
C. Encrypt the data for the content that the company distributes. Set up a custom error message.
D. Create a new URL for restricted content. Set up a time-restricted access policy for signed URLs.

一家全球视频流媒体公司使用亚马逊CloudFront作为内容分发网络(CDN)。该公司希望以分阶段的方式在多个国家推出内容。

公司需要确保身处内容推广国家之外的观众无法观看这些内容。

下列哪种方案能够满足这些需求?

A. 通过使用允许名单为CloudFront中的内容添加地理限制。设置自定义错误信息。

B. 为受限内容设置新的URL。通过使用签名URL和cookie授权访问。设置自定义错误信息。

C. 对公司分发的内容数据进行加密。设置自定义错误信息。

D. 为受限内容创建新的URL。为签名URL设置时间限制访问策略。

133 / 200

分类: SAA-C03

133. A company wants to use the AWS Cloud to improve its on-premises disaster recovery (DR) configuration. The company’s core production
business application uses Microsoft SQL Server Standard, which runs on a virtual machine (VM). The application has a recovery point
objective (RPO) of 30 seconds or fewer and a recovery time objective (RTO) of 60 minutes. The DR solution needs to minimize costs wherever
possible.
Which solution will meet these requirements?
A. Configure a multi-site active/active setup between the on-premises server and AWS by using Microsoft SQL Server Enterprise with
Always On availability groups.
B. Configure a warm standby Amazon RDS for SQL Server database on AWS. Configure AWS Database Migration Service (AWS DMS) to use
change data capture (CDC).
C. Use AWS Elastic Disaster Recovery Configured to replicate disk changes to AWS as a pilot light.
D. Use third-party backup software to capture backups every night. Store a secondary set of backups in Amazon S3.

一家公司希望使用AWS云来改进其本地灾难恢复(DR)配置。该公司的核心生产业务应用使用运行在虚拟机(VM)上的Microsoft SQL Server Standard版本。该应用的恢复点目标(RPO)为30秒或更短,恢复时间目标(RTO)为60分钟。

灾难恢复解决方案需要尽可能降低成本。

哪种解决方案能够满足这些要求?

A. 使用Microsoft SQL Server Enterprise版及Always On可用性组,在本地服务器和AWS之间配置多站点主动/主动设置。

B. 在AWS上配置一个热备用的Amazon RDS for SQL Server数据库。配置AWS数据库迁移服务(AWS DMS)使用变更数据捕获(CDC)。

C. 使用配置为将磁盘变更复制到AWS作为试点模式的AWS弹性灾难恢复。

D. 使用第三方备份软件每晚捕获备份。在Amazon S3中存储第二套备份集。

134 / 200

分类: SAA-C03

134. A company has an on-premises server that uses an Oracle database to process and store customer information. The company wants to use an
AWS database service to achieve higher availability and to improve application performance. The company also wants to o oad reporting
from its primary database system.
Which solution will meet these requirements in the MOST operationally e cient way?
A. Use AWS Database Migration Service (AWS DMS) to create an Amazon RDS DB instance in multiple AWS Regions. Point the reporting
functions toward a separate DB instance from the primary DB instance.
B. Use Amazon RDS in a Single-AZ deployment to create an Oracle database. Create a read replica in the same zone as the primary DB
instance. Direct the reporting functions to the read replica.
C. Use Amazon RDS deployed in a Multi-AZ cluster deployment to create an Oracle database. Direct the reporting functions to use the
reader instance in the cluster deployment.
D. Use Amazon RDS deployed in a Multi-AZ instance deployment to create an Amazon Aurora database. Direct the reporting functions to
the reader instances.

一家公司使用Oracle数据库的本地服务器处理和存储客户信息。该公司希望使用AWS数据库服务实现更高的可用性并提升应用性能。该公司还希望从其主数据库系统卸载报表功能。

哪种解决方案能以最高运营效率满足这些需求?

A. 使用AWS数据库迁移服务(AWS DMS)在多个AWS区域创建Amazon RDS数据库实例。将报表功能指向与主数据库实例分离的独立数据库实例。

B. 在单可用区部署中使用Amazon RDS创建Oracle数据库。在主数据库实例同一可用区创建读取副本。将报表功能指向该读取副本。

C. 使用多可用区集群部署的Amazon RDS创建Oracle数据库。将报表功能指向集群部署中的读取器实例。

D. 使用多可用区实例部署的Amazon RDS创建Amazon Aurora数据库。将报表功能指向读取器实例。

135 / 200

分类: SAA-C03

135. A company wants to build a web application on AWS. Client access requests to the website are not predictable and can be idle for a long time.
Only customers who have paid a subscription fee can have the ability to sign in and use the web application.
Which combination of steps will meet these requirements MOST cost-effectively? (Choose three.)
A. Create an AWS Lambda function to retrieve user information from Amazon DynamoDB. Create an Amazon API Gateway endpoint to
accept RESTful APIs. Send the API calls to the Lambda function.
B. Create an Amazon Elastic Container Service (Amazon ECS) service behind an Application Load Balancer to retrieve user information
from Amazon RDS. Create an Amazon API Gateway endpoint to accept RESTful APIs. Send the API calls to the Lambda function.
C. Create an Amazon Cognito user pool to authenticate users.
D. Create an Amazon Cognito identity pool to authenticate users.
E. Use AWS Amplify to serve the frontend web content with HTML, CSS, and JS. Use an integrated Amazon CloudFront configuration.
F. Use Amazon S3 static web hosting with PHP, CSS, and JS. Use Amazon CloudFront to serve the frontend web content.

一家公司希望在AWS上构建一个 Web 应用程序。客户对网站的访问请求不可预测,并且可能会长时间处于闲置状态。
只有支付了订阅费用的客户才具备登录并使用该 Web 应用程序的权限。
以下哪几种步骤组合能够最高性价比地满足这些需求?(选择三项。)
A. 创建一个 AWS Lambda 函数以从 Amazon DynamoDB 检索用户信息。创建一个 Amazon API Gateway 端点来接收 RESTful API。将 API 调用发送到 Lambda 函数。
B. 在 Application Load Balancer 后面创建一个 Amazon Elastic Container Service (Amazon ECS) 服务以从 Amazon RDS 检索用户信息。创建一个 Amazon API Gateway 端点来接收 RESTful API。将 API 调用发送到 Lambda 函数。
C. 创建一个 Amazon Cognito 用户池以认证用户。
D. 创建一个 Amazon Cognito 身份池以认证用户。
E. 使用 AWS Amplify 来托管前端 Web 内容(包括 HTML、CSS 和 JS)。使用集成的 Amazon CloudFront 配置。
F. 使用 Amazon S3 静态网站托管功能(包含 PHP、CSS 和 JS)。使用 Amazon CloudFront 来提供前端 Web 内容。

136 / 200

分类: SAA-C03

136. A media company uses an Amazon CloudFront distribution to deliver content over the internet. The company wants only premium customers
to have access to the media streams and file content. The company stores all content in an Amazon S3 bucket. The company also delivers
content on demand to customers for a speci c purpose, such as movie rentals or music downloads.
Which solution will meet these requirements?
A. Generate and provide S3 signed cookies to premium customers.
B. Generate and provide CloudFront signed URLs to premium customers.
C. Use origin access control (OAC) to limit the access of non-premium customers.
D. Generate and activate eld-level encryption to block non-premium customers.

一家媒体公司使用亚马逊CloudFront分发服务通过互联网传输内容。该公司希望只有高级客户能够访问媒体流和文件内容。

公司将所有内容存储在亚马逊S3存储桶中。该公司还会根据特定目的按需向客户提供内容,例如电影租赁或音乐下载。

哪种解决方案能够满足这些需求?

A. 生成并向高级客户提供S3签名Cookie。

B. 生成并向高级客户提供CloudFront签名URL。

C. 使用源访问控制(OAC)限制非高级客户的访问。

D. 生成并激活字段级加密以阻止非高级客户。

137 / 200

分类: SAA-C03

137. A company runs Amazon EC2 instances in multiple AWS accounts that are individually bled. The company recently purchased a Savings Pian.
Because of changes in the company’s business requirements, the company has decommissioned a large number of EC2 instances. The
company wants to use its Savings Plan discounts on its other AWS accounts.
Which combination of steps will meet these requirements? (Choose two.)
A. From the AWS Account Management Console of the management account, turn on discount sharing from the billing preferences
section.
B. From the AWS Account Management Console of the account that purchased the existing Savings Plan, turn on discount sharing from
the billing preferences section. Include all accounts.
C. From the AWS Organizations management account, use AWS Resource Access Manager (AWS RAM) to share the Savings Plan with other
accounts.
D. Create an organization in AWS Organizations in a new payer account. Invite the other AWS accounts to join the organization from the
management account.
E. Create an organization in AWS Organizations in the existing AWS account with the existing EC2 instances and Savings Plan. Invite the
other AWS accounts to join the organization from the management account.

一家公司在多个独立计费的AWS账户中运行Amazon EC2实例。该公司最近购买了一个节省计划。
由于公司业务需求的变化,公司已停用了大量EC2实例。
公司希望在其他AWS账户上使用其节省计划的折扣。
以下哪种步骤组合可以满足这些要求?(选择两项。)
A. 从管理账户的AWS账户管理控制台,在账单偏好设置部分开启折扣共享。
B. 从购买现有节省计划的账户的AWS账户管理控制台,在账单偏好设置部分开启折扣共享。包含所有账户。
C. 从AWS Organizations管理账户,使用AWS Resource Access Manager(AWS RAM)与其他账户共享节省计划。
D. 在新的付款账户中创建AWS Organizations组织。从管理账户邀请其他AWS账户加入该组织。
E. 在现有EC2实例和节省计划所在的现有AWS账户中创建AWS Organizations组织。从管理账户邀请其他AWS账户加入该组织。

138 / 200

分类: SAA-C03

138. A retail company uses a regional Amazon API Gateway API for its public REST APIs. The API Gateway endpoint is a custom domain name that
points to an Amazon Route 53 alias record. A solutions architect needs to create a solution that has minimal effects on customers and
minimal data loss to release the new version of APIs.
Which solution will meet these requirements?
A. Create a canary release deployment stage for API Gateway. Deploy the latest API version. Point an appropriate percentage of traffic to
the canary stage. After API veri cation, promote the canary stage to the production stage.
B. Create a new API Gateway endpoint with a new version of the API in OpenAPI YAML file format. Use the import-to-update operation in
merge mode into the API in API Gateway. Deploy the new version of the API to the production stage.
C. Create a new API Gateway endpoint with a new version of the API in OpenAPI JSON file format. Use the import-to-update operation in
overwrite mode into the API in API Gateway. Deploy the new version of the API to the production stage.
D. Create a new API Gateway endpoint with new versions of the API de nitions. Create a custom domain name for the new API Gateway
API. Point the Route 53 alias record to the new API Gateway API custom domain name.

一家零售公司为其公共REST API使用区域性的Amazon API Gateway API。该API Gateway端点是自定义域名,指向Amazon Route 53的别名记录。
一位解决方案架构师需要创建一个对客户影响最小且数据丢失最少的解决方案,以发布新版本的API。
哪种解决方案能满足这些需求?
A. 为API Gateway创建一个金丝雀发布部署阶段。部署最新的API版本。将适当比例的流量指向金丝雀阶段。在API验证后,将金丝雀阶段提升为生产阶段。
B. 使用OpenAPI YAML文件格式创建带有新版本API的新API Gateway端点。在API Gateway中使用合并模式的导入-更新操作到API中。将新版本的API部署到生产阶段。
C. 使用OpenAPI JSON文件格式创建带有新版本API的新API Gateway端点。在API Gateway中使用覆盖模式的导入-更新操作到API中。将新版本的API部署到生产阶段。
D. 创建带有新版本API定义的新API Gateway端点。为新API Gateway API创建自定义域名。将Route 53别名记录指向新的API Gateway API自定义域名。

139 / 200

分类: SAA-C03

139. A company wants to direct its users to a backup static error page if the company’s primary website is unavailable. The primary website’s DNS
records are hosted in Amazon Route 53. The domain is pointing to an Application Load Balancer (ALB). The company needs a solution that
minimizes changes and infrastructure overhead.
Which solution will meet these requirements?
A. Update the Route 53 records to use a latency routing policy. Add a static error page that is hosted in an Amazon S3 bucket to the
records so that the traffic is sent to the most responsive endpoints.
B. Set up a Route 53 active-passive failover configuration. Direct traffic to a static error page that is hosted in an Amazon S3 bucket when
Route 53 health checks determine that the ALB endpoint is unhealthy.
C. Set up a Route 53 active-active configuration with the ALB and an Amazon EC2 instance that hosts a static error page as endpoints.
Configure Route 53 to send requests to the instance only if the health checks fail for the ALB.
D. Update the Route 53 records to use a multivalue answer routing policy. Create a health check. Direct traffic to the website if the health
check passes. Direct traffic to a static error page that is hosted in Amazon S3 if the health check does not pass.

一家公司希望在其主网站不可用时将用户重定向至一个备份的静态错误页面。主网站的DNS记录托管在Amazon Route 53中,该域名指向一个应用负载均衡器(ALB)。公司需要一个能最大限度减少变更和基础设施负担的解决方案。
哪种方案可以满足这些要求?
A. 更新Route 53记录以使用延迟路由策略。将一个托管在Amazon S3存储桶中的静态错误页面添加到记录中,以便流量被发送至响应最快的终端节点。
B. 设置Route 53的主-被动故障转移配置。当Route 53健康检查判定ALB终端节点不健康时,将流量定向至托管在Amazon S3存储桶中的静态错误页面。
C. 设置一个包含ALB和托管静态错误页面的Amazon EC2实例作为终端节点的Route 53主-主配置。配置Route 53仅在ALB健康检查失败时将请求发送至该实例。
D. 更新Route 53记录以使用多值应答路由策略。创建一个健康检查。如果健康检查通过,则将流量定向至网站;如果健康检查未通过,则将流量定向至托管在Amazon S3中的静态错误页面。

140 / 200

分类: SAA-C03

140. A recent analysis of a company’s IT expenses highlights the need to reduce backup costs. The company’s chief information o cer wants to
simplify the on-premises backup infrastructure and reduce costs by eliminating the use of physical backup tapes. The company must preserve
the existing investment in the on-premises backup applications and work ows.
What should a solutions architect recommend?
A. Set up AWS Storage Gateway to connect with the backup applications using the NFS interface.
B. Set up an Amazon EFS file system that connects with the backup applications using the NFS interface.
C. Set up an Amazon EFS file system that connects with the backup applications using the iSCSI interface.
D. Set up AWS Storage Gateway to connect with the backup applications using the iSCSI-virtual tape library (VTL) interface.

最近对公司IT支出的一项分析突显出降低备份成本的必要性。
公司首席信息官希望简化本地备份基础设施,并通过停止使用物理备份磁带来降低成本。
公司必须保留现有对本地备份应用程序和工作流程的投资。
作为解决方案架构师,应该推荐什么?
A. 设置AWS存储网关,通过NFS接口与备份应用程序连接。
B. 设置Amazon EFS文件系统,通过NFS接口与备份应用程序连接。
C. 设置Amazon EFS文件系统,通过iSCSI接口与备份应用程序连接。
D. 设置AWS存储网关,通过iSCSI虚拟磁带库(VTL)接口与备份应用程序连接。

141 / 200

分类: SAA-C03

141. A company has data collection sensors at different locations. The data collection sensors stream a high volume of data to the company. The
company wants to design a platform on AWS to ingest and process high-volume streaming data. The solution must be scalable and support
data collection in near real time. The company must store the data in Amazon S3 for future reporting.
Which solution will meet these requirements with the LEAST operational overhead?
A. Use Amazon Kinesis Data Firehose to deliver streaming data to Amazon S3.
B. Use AWS Glue to deliver streaming data to Amazon S3.
C. Use AWS Lambda to deliver streaming data and store the data to Amazon S3.
D. Use AWS Database Migration Service (AWS DMS) to deliver streaming data to Amazon S3.

一家公司在不同地点部署了数据收集传感器。这些数据收集传感器会向公司传输海量的数据流。
公司希望设计一个基于AWS的平台来接收和处理高容量的流数据。该解决方案必须具备可扩展性,并支持近乎实时的数据收集。
公司需要将数据存储在Amazon S3中用于未来生成报告。
哪种方案能够在满足这些需求的同时,将运维开销降至最低?
A. 使用Amazon Kinesis Data Firehose将流数据传输至Amazon S3。
B. 使用AWS Glue将流数据传输至Amazon S3。
C. 使用AWS Lambda传输流数据并将其存储到Amazon S3。
D. 使用AWS数据库迁移服务(AWS DMS)将流数据传输至Amazon S3。

142 / 200

分类: SAA-C03

142. A company has separate AWS accounts for its nance, data analytics, and development departments. Because of costs and security concerns,
the company wants to control which services each AWS account can use.
Which solution will meet these requirements with the LEAST operational overhead?
A. Use AWS Systems Manager templates to control which AWS services each department can use.
B. Create organization units (OUs) for each department in AWS Organizations. Attach service control policies (SCPs) to the OUs.
C. Use AWS CloudFormation to automatically provision only the AWS services that each department can use.
D. Set up a list of products in AWS Service Catalog in the AWS accounts to manage and control the usage of speci c AWS services.

一家公司为其财务部门、数据分析部门和开发部门分别设立了独立的AWS账户。由于成本和安全性考虑,该公司希望控制每个AWS账户能够使用哪些服务。
哪种解决方案能以最低的管理开销满足这些需求?
A. 使用AWS Systems Manager模板来控制各部门可使用的AWS服务。
B. 在AWS Organizations中为每个部门创建组织单元(OUs)。将服务控制策略(SCPs)附加到这些OUs上。
C. 使用AWS CloudFormation自动仅配置各部门可使用的AWS服务。
D. 在AWS账户的AWS Service Catalog中设置产品列表来管理和控制特定AWS服务的使用。

143 / 200

分类: SAA-C03

143. A company has created a multi-tier application for its ecommerce website. The website uses an Application Load Balancer that resides in the
public subnets, a web tier in the public subnets, and a MySQL cluster hosted on Amazon EC2 instances in the private subnets. The MySQL
database needs to retrieve product catalog and pricing information that is hosted on the internet by a third-party provider. A solutions
architect must devise a strategy that maximizes security without increasing operational overhead.
What should the solutions architect do to meet these requirements?
A. Deploy a NAT instance in the VPC. Route all the internet-based traffic through the NAT instance.
B. Deploy a NAT gateway in the public subnets. Modify the private subnet route table to direct all internet-bound traffic to the NAT
gateway.
C. Configure an internet gateway and attach it to the VPModify the private subnet route table to direct internet-bound traffic to the
internet gateway.
D. Configure a virtual private gateway and attach it to the VPC. Modify the private subnet route table to direct internet-bound traffic to the
virtual private gateway.

一家公司为其电子商务网站创建了一个多层应用程序。该网站使用位于公共子网中的应用程序负载均衡器、位于公共子网中的Web层,以及在私有子网中托管于Amazon EC2实例上的MySQL集群。
MySQL数据库需要从第三方提供商托管在互联网上的产品目录和定价信息中获取数据。解决方案架构师必须设计一个策略,在最大化安全性的同时不增加运维开销。
解决方案架构师应采取什么措施来满足这些要求?
A. 在VPC中部署一个NAT实例。将所有基于互联网的流量通过NAT实例路由。
B. 在公共子网中部署一个NAT网关。修改私有子网路由表,将所有互联网出站流量定向到NAT网关。
C. 配置一个互联网网关并将其附加到VPC上。修改私有子网路由表,将互联网出站流量定向到互联网网关。
D. 配置一个虚拟专用网关并将其附加到VPC上。修改私有子网路由表,将互联网出站流量定向到虚拟专用网关。

144 / 200

分类: SAA-C03

144. A company is using AWS Key Management Service (AWS KMS) keys to encrypt AWS Lambda environment variables. A solutions architect
needs to ensure that the required permissions are in place to decrypt and use the environment variables.
Which steps must the solutions architect take to implement the correct permissions? (Choose two.)
A. Add AWS KMS permissions in the Lambda resource policy.
B. Add AWS KMS permissions in the Lambda execution role.
C. Add AWS KMS permissions in the Lambda function policy.
D. Allow the Lambda execution role in the AWS KMS key policy.
E. Allow the Lambda resource policy in the AWS KMS key policy.

一家公司正在使用AWS密钥管理服务(AWS KMS)密钥来加密AWS Lambda环境变量。
解决方案架构师需要确保已设置必要的权限来解密和使用这些环境变量。
解决方案架构师应采取哪些步骤来实施正确的权限?(选择两个。)
A. 在Lambda资源策略中添加AWS KMS权限。
B. 在Lambda执行角色中添加AWS KMS权限。
C. 在Lambda函数策略中添加AWS KMS权限。
D. 在AWS KMS密钥策略中允许Lambda执行角色。
E. 在AWS KMS密钥策略中允许Lambda资源策略。

145 / 200

分类: SAA-C03

145. A company has a nancial application that produces reports. The reports average 50 KB in size and are stored in Amazon S3. The reports are
frequently accessed during the first week after production and must be stored for several years. The reports must be retrievable within 6
hours.
Which solution meets these requirements MOST cost-effectively?
A. Use S3 Standard. Use an S3 Lifecycle rule to transition the reports to S3 Glacier after 7 days.
B. Use S3 Standard. Use an S3 Lifecycle rule to transition the reports to S3 Standard-Infrequent Access (S3 Standard-IA) after 7 days.
C. Use S3 Intelligent-Tiering. Configure S3 Intelligent-Tiering to transition the reports to S3 Standard-Infrequent Access (S3 Standard-IA)
and S3 Glacier.
D. Use S3 Standard. Use an S3 Lifecycle rule to transition the reports to S3 Glacier Deep Archive after 7 days.

一家公司拥有一个生成报告的财务应用程序。这些报告平均大小为50KB,存储在Amazon S3中。
报告在生产后第一周被频繁访问,并且必须存储数年。报告必须在6小时内可检索。
哪种解决方案能够以最具成本效益的方式满足这些要求?
A. 使用S3标准存储。使用S3生命周期规则在7天后将报告转换为S3 Glacier。
B. 使用S3标准存储。使用S3生命周期规则在7天后将报告转换为S3标准-不频繁访问(S3 Standard-IA)。
C. 使用S3智能分层存储。配置S3智能分层存储将报告转换为S3标准-不频繁访问(S3 Standard-IA)和S3 Glacier。
D. 使用S3标准存储。使用S3生命周期规则在7天后将报告转换为S3 Glacier Deep Archive。

146 / 200

分类: SAA-C03

146. A company needs to optimize the cost of its Amazon EC2 instances. The company also needs to change the type and family of its EC2
instances every 2-3 months.
What should the company do to meet these requirements?
A. Purchase Partial Upfront Reserved Instances for a 3-year term.
B. Purchase a No Upfront Compute Savings Plan for a 1-year term.
C. Purchase All Upfront Reserved Instances for a 1-year term.
D. Purchase an All Upfront EC2 Instance Savings Plan for a 1-year term.

一家公司需要优化其Amazon EC2实例的成本。同时,该公司还需要每2-3个月更换其EC2实例的类型和系列。
为满足这些需求,该公司应该采取什么措施?
A. 购买部分预付的三年期预留实例。
B. 购买一年期无需预付的计算节省计划。
C. 购买一年期全预付的预留实例。
D. 购买一年期全预付的EC2实例节省计划。

147 / 200

分类: SAA-C03

147. A solutions architect needs to review a company’s Amazon S3 buckets to discover personally identi able information (PII). The company
stores the PII data in the us-east-1 Region and us-west-2 Region.
Which solution will meet these requirements with the LEAST operational overhead?
A. Configure Amazon Macie in each Region. Create a job to analyze the data that is in Amazon S3.
B. Configure AWS Security Hub for all Regions. Create an AWS Config rule to analyze the data that is in Amazon S3.
C. Configure Amazon Inspector to analyze the data that is in Amazon S3.
D. Configure Amazon GuardDuty to analyze the data that is in Amazon S3.

一位解决方案架构师需要检查公司的Amazon S3存储桶以发现个人身份信息(PII)。
该公司将PII数据存储在us-east-1区域和us-west-2区域。
哪种方案能在最小化操作开销的前提下满足这些需求?
A. 在每个区域配置Amazon Macie。创建一个任务来分析Amazon S3中的数据。
B. 为所有区域配置AWS Security Hub。创建一个AWS Config规则来分析Amazon S3中的数据。
C. 配置Amazon Inspector来分析Amazon S3中的数据。
D. 配置Amazon GuardDuty来分析Amazon S3中的数据。

148 / 200

分类: SAA-C03

148. A company’s SAP application has a backend SQL Server database in an on-premises environment. The company wants to migrate its on
premises application and database server to AWS. The company needs an instance type that meets the high demands of its SAP database.
On-premises performance data shows that both the SAP application and the database have high memory utilization.
Which solution will meet these requirements?
A. Use the compute optimized instance family for the application. Use the memory optimized instance family for the database.
B. Use the storage optimized instance family for both the application and the database.
C. Use the memory optimized instance family for both the application and the database.
D. Use the high performance computing (HPC) optimized instance family for the application. Use the memory optimized instance family
for the database.

一家公司的SAP应用在本地环境中有一个后端SQL Server数据库。这家公司希望将其本地应用和数据库服务器迁移到AWS。公司需要一个能够满足其SAP数据库高需求的实例类型。
本地的性能数据显示,SAP应用和数据库都有较高的内存利用率。
哪个方案能够满足这些需求?
A. 对应用使用计算优化型实例系列,对数据库使用内存优化型实例系列。
B. 对应用和数据库都使用存储优化型实例系列。
C. 对应用和数据库都使用内存优化型实例系列。
D. 对应用使用高性能计算(HPC)优化的实例系列,对数据库使用内存优化型实例系列。

149 / 200

分类: SAA-C03

149. A company runs an application in a VPC with public and private subnets. The VPC extends across multiple Availability Zones. The application
runs on Amazon EC2 instances in private subnets. The application uses an Amazon Simple Queue Service (Amazon SQS) queue.
A solutions architect needs to design a secure solution to establish a connection between the EC2 instances and the SQS queue.
Which solution will meet these requirements?
A. Implement an interface VPC endpoint for Amazon SQS. Configure the endpoint to use the private subnets. Add to the endpoint a
security group that has an inbound access rule that allows traffic from the EC2 instances that are in the private subnets.
B. Implement an interface VPC endpoint for Amazon SQS. Configure the endpoint to use the public subnets. Attach to the interface
endpoint a VPC endpoint policy that allows access from the EC2 instances that are in the private subnets.
C. Implement an interface VPC endpoint for Amazon SQS. Configure the endpoint to use the public subnets. Attach an Amazon SQS access
policy to the interface VPC endpoint that allows requests from only a speci ed VPC endpoint.
D. Implement a gateway endpoint for Amazon SQS. Add a NAT gateway to the private subnets. Attach an IAM role to the EC2 instances
that allows access to the SQS queue.

一家公司在具有公共子网和私有子网的VPC中运行应用程序。该VPC跨越多个可用区。
应用程序运行在私有子网中的亚马逊弹性计算云(Amazon EC2)实例上。该应用程序使用亚马逊简单队列服务(Amazon SQS)队列。
解决方案架构师需要设计一个安全解决方案,以建立EC2实例与SQS队列之间的连接。
哪种解决方案能满足这些要求?

A. 为Amazon SQS实现一个接口VPC端点。将该端点配置为使用私有子网。向端点添加一个安全组,该安全组具有允许来自位于私有子网中的EC2实例的流量的入站访问规则。

B. 为Amazon SQS实现一个接口VPC端点。将该端点配置为使用公共子网。向接口端点附加一个VPC端点策略,该策略允许来自位于私有子网中的EC2实例的访问。

C. 为Amazon SQS实现一个接口VPC端点。将该端点配置为使用公共子网。向接口VPC端点附加一个Amazon SQS访问策略,该策略仅允许来自特定VPC端点的请求。

D. 为Amazon SQS实现一个网关端点。向私有子网添加一个NAT网关。向EC2实例附加一个允许访问SQS队列的IAM角色。

150 / 200

分类: SAA-C03

150. A solutions architect is using an AWS CloudFormation template to deploy a three-tier web application. The web application consists of a web
tier and an application tier that stores and retrieves user data in Amazon DynamoDB tables. The web and application tiers are hosted on
Amazon EC2 instances, and the database tier is not publicly accessible. The application EC2 instances need to access the DynamoDB tables
without exposing API credentials in the template.
What should the solutions architect do to meet these requirements?
A. Create an IAM role to read the DynamoDB tables. Associate the role with the application instances by referencing an instance profile.
B. Create an IAM role that has the required permissions to read and write from the DynamoDB tables. Add the role to the EC2 instance
profile, and associate the instance profile with the application instances.
C. Use the parameter section in the AWS CloudFormation template to have the user input access and secret keys from an already-created
IAM user that has the required permissions to read and write from the DynamoDB tables.
D. Create an IAM user in the AWS CloudFormation template that has the required permissions to read and write from the DynamoDB
tables. Use the GetAtt function to retrieve the access and secret keys, and pass them to the application instances through the user data.

一位解决方案架构师正在使用AWS CloudFormation模板部署一个三层Web应用程序。该Web应用程序包括一个Web层和一个应用层,用于在Amazon DynamoDB表中存储和检索用户数据。
Web层和应用层托管在Amazon EC2实例上,而数据库层不公开访问。应用EC2实例需要在不将API凭证暴露在模板中的情况下访问DynamoDB表。
解决方案架构师应该采取什么措施来满足这些要求?
A. 创建一个IAM角色以读取DynamoDB表。通过引用实例配置文件将该角色与应用实例关联。
B. 创建一个具有从DynamoDB表读写所需权限的IAM角色。将该角色添加到EC2实例配置文件中,并将实例配置文件与应用实例关联。
C. 使用AWS CloudFormation模板中的参数部分,让用户输入已创建的IAM用户的访问密钥和秘密密钥,该IAM用户具有从DynamoDB表读写所需的权限。
D. 在AWS CloudFormation模板中创建一个IAM用户,该用户具有从DynamoDB表读写所需的权限。使用GetAtt函数检索访问密钥和秘密密钥,并通过用户数据将它们传递给应用实例。

151 / 200

分类: SAA-C03

151. A solutions architect manages an analytics application. The application stores large amounts of semistructured data in an Amazon S3 bucket.
The solutions architect wants to use parallel data processing to process the data more quickly. The solutions architect also wants to use
information that is stored in an Amazon Redshift database to enrich the data.
Which solution will meet these requirements?
A. Use Amazon Athena to process the S3 data. Use AWS Glue with the Amazon Redshift data to enrich the S3 data.
B. Use Amazon EMR to process the S3 data. Use Amazon EMR with the Amazon Redshift data to enrich the S3 data.
C. Use Amazon EMR to process the S3 data. Use Amazon Kinesis Data Streams to move the S3 data into Amazon Redshift so that the data
can be enriched.
D. Use AWS Glue to process the S3 data. Use AWS Lake Formation with the Amazon Redshift data to enrich the S3 data.

一位解决方案架构师管理着一个分析应用程序。
该应用程序将大量半结构化数据存储在亚马逊S3桶中。
解决方案架构师希望使用并行数据处理来更快地处理数据,
同时还希望利用存储在亚马逊Redshift数据库中的信息来丰富这些数据。

以下哪种解决方案能满足这些需求?

A. 使用亚马逊Athena处理S3数据,并使用AWS Glue结合亚马逊Redshift数据来丰富S3数据。
B. 使用亚马逊EMR处理S3数据,并使用亚马逊EMR结合Redshift数据来丰富S3数据。
C. 使用亚马逊EMR处理S3数据,并使用亚马逊Kinesis数据流将S3数据移至Redshift以实现数据丰富。
D. 使用AWS Glue处理S3数据,并使用AWS Lake Formation结合Redshift数据来丰富S3数据。

152 / 200

分类: SAA-C03

152. A company has two VPCs that are located in the us-west-2 Region within the same AWS account. The company needs to allow network traffic
between these VPCs. Approximately 500 GB of data transfer will occur between the VPCs each month.
What is the MOST cost-effective solution to connect these VPCs?
A. Implement AWS Transit Gateway to connect the VPCs. Update the route tables of each VPC to use the transit gateway for inter-VPC
communication.
B. Implement an AWS Site-to-Site VPN tunnel between the VPCs. Update the route tables of each VPC to use the VPN tunnel for inter-VPC
communication.
C. Set up a VPC peering connection between the VPCs. Update the route tables of each VPC to use the VPC peering connection for inter
VPC communication.
D. Set up a 1 GB AWS Direct Connect connection between the VPCs. Update the route tables of each VPC to use the Direct Connect
connection for inter-VPC communication.

一家公司在同一个AWS账户下的us-west-2区域拥有两个VPC。公司需要允许这两个VPC之间的网络流量。每个月大约有500GB的数据会在这些VPC之间传输。

哪种方案是连接这些VPC最具成本效益的解决方案?

A. 使用AWS Transit Gateway连接VPC。更新每个VPC的路由表,使用Transit Gateway进行VPC间通信。

B. 在VPC之间建立AWS站点到站点VPN隧道。更新每个VPC的路由表,使用VPN隧道进行VPC间通信。

C. 在VPC之间建立VPC对等连接。更新每个VPC的路由表,使用VPC对等连接进行VPC间通信。

D. 在VPC之间建立1GB的AWS Direct Connect连接。更新每个VPC的路由表,使用Direct Connect连接进行VPC间通信。

153 / 200

分类: SAA-C03

153. A company hosts multiple applications on AWS for different product lines. The applications use different compute resources, including
Amazon EC2 instances and Application Load Balancers. The applications run in different AWS accounts under the same organization in AWS
Organizations across multiple AWS Regions. Teams for each product line have tagged each compute resource in the individual accounts.
The company wants more details about the cost for each product line from the consolidated billing feature in Organizations.
Which combination of steps will meet these requirements? (Choose two.)
A. Select a speci c AWS generated tag in the AWS Billing console.
B. Select a speci c user-de ned tag in the AWS Billing console.
C. Select a speci c user-de ned tag in the AWS Resource Groups console.
D. Activate the selected tag from each AWS account.
E. Activate the selected tag from the Organizations management account.

一家公司在AWS上为不同产品线托管多个应用程序。这些应用程序使用不同的计算资源,包括
Amazon EC2实例和应用程序负载均衡器。这些应用程序在跨多个AWS区域的AWS组织下的不同AWS账户中运行。每个产品线的团队已经在各个账户中为每个计算资源添加了标签。
该公司希望通过组织中的整合账单功能更详细地了解每条产品线的成本。
哪两种步骤的组合能够满足这些要求?(选择两项。)
A. 在AWS账单控制台中选择特定的AWS生成标签。
B. 在AWS账单控制台中选择特定的用户定义标签。
C. 在AWS资源组控制台中选择特定的用户定义标签。
D. 从每个AWS账户激活所选标签。
E. 从组织管理账户激活所选标签。

154 / 200

分类: SAA-C03

154. A company’s solutions architect is designing an AWS multi-account solution that uses AWS Organizations. The solutions architect has
organized the company’s accounts into organizational units (OUs).
The solutions architect needs a solution that will identify any changes to the OU hierarchy. The solution also needs to notify the company’s
operations team of any changes.
Which solution will meet these requirements with the LEAST operational overhead?
A. Provision the AWS accounts by using AWS Control Tower. Use account drift notifications to identify the changes to the OU hierarchy.
B. Provision the AWS accounts by using AWS Control Tower. Use AWS Config aggregated rules to identify the changes to the OU hierarchy.
C. Use AWS Service Catalog to create accounts in Organizations. Use an AWS CloudTrail organization trail to identify the changes to the
OU hierarchy.
D. Use AWS CloudFormation templates to create accounts in Organizations. Use the drift detection operation on a stack to identify the
changes to the OU hierarchy.

一家公司的解决方案架构师正在设计一个使用AWS Organizations的多账户解决方案。该解决方案架构师已将公司的账户组织成组织单位(OU)。
解决方案架构师需要一个能够识别OU层次结构任何变更的解决方案。该方案还需要向公司的运维团队通知任何变更。
哪种方案能以最小的运维开销满足这些需求?
A. 使用AWS Control Tower配置AWS账户。使用账户漂移通知来识别OU层次结构的变更。
B. 使用AWS Control Tower配置AWS账户。使用AWS Config聚合规则来识别OU层次结构的变更。
C. 使用AWS Service Catalog在Organizations中创建账户。使用AWS CloudTrail组织跟踪来识别OU层次结构的变更。
D. 使用AWS CloudFormation模板在Organizations中创建账户。在堆栈上使用漂移检测操作来识别OU层次结构的变更。

155 / 200

分类: SAA-C03

155. A company’s website handles millions of requests each day, and the number of requests continues to increase. A solutions architect needs to
improve the response time of the web application. The solutions architect determines that the application needs to decrease latency when
retrieving product details from the Amazon DynamoDB table.
Which solution will meet these requirements with the LEAST amount of operational overhead?
A. Set up a DynamoDB Accelerator (DAX) cluster. Route all read requests through DAX.
B. Set up Amazon ElastiCache for Redis between the DynamoDB table and the web application. Route all read requests through Redis.
C. Set up Amazon ElastiCache for Memcached between the DynamoDB table and the web application. Route all read requests through
Memcached.
D. Set up Amazon DynamoDB Streams on the table, and have AWS Lambda read from the table and populate Amazon ElastiCache. Route
all read requests through ElastiCache.

一家公司的网站每天处理数百万次请求,且请求数量持续增加。解决方案架构师需要提升该Web应用程序的响应时间。
该架构师确定应用程序在从Amazon DynamoDB表检索产品详情时需要降低延迟。

哪种解决方案能以最少的管理开销满足这些要求?

A. 设置一个DynamoDB加速器(DAX)集群。将所有读取请求通过DAX路由。
B. 在DynamoDB表和Web应用程序之间设置Amazon ElastiCache for Redis。将所有读取请求通过Redis路由。
C. 在DynamoDB表和Web应用程序之间设置Amazon ElastiCache for Memcached。将所有读取请求通过Memcached路由。
D. 在表上设置Amazon DynamoDB Streams,并让AWS Lambda从表中读取数据并填充Amazon ElastiCache。将所有读取请求通过ElastiCache路由。

156 / 200

分类: SAA-C03

156. A solutions architect needs to ensure that API calls to Amazon DynamoDB from Amazon EC2 instances in a VPC do not travel across the
internet.
Which combination of steps should the solutions architect take to meet this requirement? (Choose two.)
A. Create a route table entry for the endpoint.
B. Create a gateway endpoint for DynamoDB.
C. Create an interface endpoint for Amazon EC2.
D. Create an elastic network interface for the endpoint in each of the subnets of the VPC.
E. Create a security group entry in the endpoint’s security group to provide access.

一位解决方案架构师需要确保从亚马逊VPC中的亚马逊EC2实例对亚马逊DynamoDB的API调用不经过互联网。
解决方案架构师应采取哪些步骤组合来满足此要求?(选择两个。)
A. 为终端节点创建路由表条目。
B. 为DynamoDB创建网关终端节点。
C. 为亚马逊EC2创建接口终端节点。
D. 在VPC的每个子网中为终端节点创建弹性网络接口。
E. 在终端节点的安全组中创建安全组条目以提供访问权限。

157 / 200

分类: SAA-C03

157. A company runs its applications on both Amazon Elastic Kubernetes Service (Amazon EKS) clusters and on-premises Kubernetes clusters. The
company wants to view all clusters and workloads from a central location.
Which solution will meet these requirements with the LEAST operational overhead?
A. Use Amazon CloudWatch Container Insights to collect and group the cluster information.
B. Use Amazon EKS Connector to register and connect all Kubernetes clusters.
C. Use AWS Systems Manager to collect and view the cluster information.
D. Use Amazon EKS Anywhere as the primary cluster to view the other clusters with native Kubernetes commands.

一家公司同时在亚马逊弹性 Kubernetes 服务(Amazon EKS)集群和本地 Kubernetes 集群上运行其应用程序。
该公司希望从一个中心位置查看所有集群和工作负载。
哪种解决方案能够以最低的操作开销满足这些需求?
A. 使用 Amazon CloudWatch Container Insights 收集和分组集群信息。
B. 使用 Amazon EKS Connector 注册并连接所有 Kubernetes 集群。
C. 使用 AWS Systems Manager 收集和查看集群信息。
D. 使用 Amazon EKS Anywhere 作为主集群,通过原生 Kubernetes 命令查看其他集群。

158 / 200

分类: SAA-C03

158. A company is building an ecommerce application and needs to store sensitive customer information. The company needs to give customers
the ability to complete purchase transactions on the website. The company also needs to ensure that sensitive customer data is protected,
even from database administrators.
Which solution meets these requirements?
A. Store sensitive data in an Amazon Elastic Block Store (Amazon EBS) volume. Use EBS encryption to encrypt the data. Use an IAM
instance role to restrict access.
B. Store sensitive data in Amazon RDS for MySQL. Use AWS Key Management Service (AWS KMS) client-side encryption to encrypt the
data.
C. Store sensitive data in Amazon S3. Use AWS Key Management Service (AWS KMS) server-side encryption to encrypt the data. Use S3
bucket policies to restrict access.
D. Store sensitive data in Amazon FSx for Windows Server. Mount the file share on application servers. Use Windows file permissions to
restrict access.

一家公司正在构建一个电子商务应用程序,需要存储敏感的客户信息。公司需要为客户提供在网站上完成购买交易的能力。
公司还需要确保敏感的客户数据受到保护,甚至要防范数据库管理员访问。
哪种解决方案能够满足这些要求?
A. 将敏感数据存储在亚马逊弹性块存储(Amazon EBS)卷中。使用EBS加密功能对数据进行加密。使用IAM实例角色来限制访问。
B. 将敏感数据存储在Amazon RDS for MySQL中。使用AWS密钥管理服务(AWS KMS)客户端加密功能对数据进行加密。
C. 将敏感数据存储在Amazon S3中。使用AWS密钥管理服务(AWS KMS)服务器端加密功能对数据进行加密。使用S3存储桶策略来限制访问。
D. 将敏感数据存储在Amazon FSx for Windows Server中。将文件共享挂载到应用服务器上。使用Windows文件权限来限制访问。

159 / 200

分类: SAA-C03

159. A company has an on-premises MySQL database that handles transactional data. The company is migrating the database to the AWS Cloud.
The migrated database must maintain compatibility with the company’s applications that use the database. The migrated database also must
scale automatically during periods of increased demand.
Which migration solution will meet these requirements?
A. Use native MySQL tools to migrate the database to Amazon RDS for MySQL. Configure elastic storage scaling.
B. Migrate the database to Amazon Redshift by using the mysqldump utility. Turn on Auto Scaling for the Amazon Redshift cluster.
C. Use AWS Database Migration Service (AWS DMS) to migrate the database to Amazon Aurora. Turn on Aurora Auto Scaling.
D. Use AWS Database Migration Service (AWS DMS) to migrate the database to Amazon DynamoDB. Configure an Auto Scaling policy.

一家公司拥有一个处理交易数据的本地MySQL数据库。该公司正在将数据库迁移到AWS云。

迁移后的数据库必须保持与公司使用该数据库的应用程序的兼容性。迁移后的数据库还必须在需求高峰期间能够自动扩展。

哪种迁移方案能够满足这些需求?

A. 使用原生MySQL工具将数据库迁移到Amazon RDS for MySQL。配置弹性存储扩展。
B. 使用mysqldump实用程序将数据库迁移到Amazon Redshift。为Amazon Redshift集群开启自动扩展功能。
C. 使用AWS数据库迁移服务(AWS DMS)将数据库迁移到Amazon Aurora。开启Aurora自动扩展功能。
D. 使用AWS数据库迁移服务(AWS DMS)将数据库迁移到Amazon DynamoDB。配置自动扩展策略。

160 / 200

分类: SAA-C03

160. A company runs multiple Amazon EC2 Linux instances in a VPC across two Availability Zones. The instances host applications that use a
hierarchical directory structure. The applications need to read and write rapidly and concurrently to shared storage.
What should a solutions architect do to meet these requirements?
A. Create an Amazon S3 bucket. Allow access from all the EC2 instances in the VPC.
B. Create an Amazon Elastic File System (Amazon EFS) file system. Mount the EFS file system from each EC2 instance.
C. Create a file system on a Provisioned IOPS SSD (io2) Amazon Elastic Block Store (Amazon EBS) volume. Attach the EBS volume to all
the EC2 instances.
D. Create file systems on Amazon Elastic Block Store (Amazon EBS) volumes that are attached to each EC2 instance. Synchronize the EBS
volumes across the different EC2 instances.

一家公司在跨越两个可用区的VPC中运行多个Amazon EC2 Linux实例。这些实例托管着使用分层目录结构的应用程序。应用程序需要快速且并发地读写共享存储。

解决方案架构师应该采取什么措施来满足这些需求?

A. 创建一个Amazon S3存储桶。允许VPC中的所有EC2实例访问。

B. 创建一个Amazon弹性文件系统(Amazon EFS)。从每个EC2实例挂载EFS文件系统。

C. 在预配置IOPS SSD(io2)Amazon弹性块存储(Amazon EBS)卷上创建文件系统。将EBS卷附加到所有EC2实例。

D. 在附加到每个EC2实例的Amazon弹性块存储(Amazon EBS)卷上创建文件系统。在不同EC2实例之间同步EBS卷。

161 / 200

分类: SAA-C03

161. A solutions architect is designing a workload that will store hourly energy consumption by business tenants in a building. The sensors will
feed a database through HTTP requests that will add up usage for each tenant. The solutions architect must use managed services when
possible. The workload will receive more features in the future as the solutions architect adds independent components.
Which solution will meet these requirements with the LEAST operational overhead?
A. Use Amazon API Gateway with AWS Lambda functions to receive the data from the sensors, process the data, and store the data in an
Amazon DynamoDB table.
B. Use an Elastic Load Balancer that is supported by an Auto Scaling group of Amazon EC2 instances to receive and process the data from
the sensors. Use an Amazon S3 bucket to store the processed data.
C. Use Amazon API Gateway with AWS Lambda functions to receive the data from the sensors, process the data, and store the data in a
Microsoft SQL Server Express database on an Amazon EC2 instance.
D. Use an Elastic Load Balancer that is supported by an Auto Scaling group of Amazon EC2 instances to receive and process the data from
the sensors. Use an Amazon Elastic File System (Amazon EFS) shared file system to store the processed data.

一位解决方案架构师正在设计一个工作负载,用于存储楼宇中各商业租户每小时的能源消耗数据。传感器将通过HTTP请求将数据传送到数据库,数据库将累计每个租户的用量。解决方案架构师必须尽可能使用托管服务。随着架构师未来添加独立组件,该工作负载还将获得更多功能。

哪种方案能够以最低的运维开销满足这些需求?

A. 使用Amazon API Gateway配合AWS Lambda函数接收传感器数据,处理数据,并将数据存储到Amazon DynamoDB表中。

B. 使用由Amazon EC2实例自动扩展组支持的弹性负载均衡器接收并处理传感器数据,使用Amazon S3存储桶存储处理后的数据。

C. 使用Amazon API Gateway配合AWS Lambda函数接收传感器数据,处理数据,并将数据存储到Amazon EC2实例上的Microsoft SQL Server Express数据库中。

D. 使用由Amazon EC2实例自动扩展组支持的弹性负载均衡器接收并处理传感器数据,使用Amazon Elastic File System(Amazon EFS)共享文件系统存储处理后的数据。

162 / 200

分类: SAA-C03

162. A solutions architect is designing the storage architecture for a new web application used for storing and viewing engineering drawings. All
application components will be deployed on the AWS infrastructure.
The application design must support caching to minimize the amount of time that users wait for the engineering drawings to load. The
application must be able to store petabytes of data.
Which combination of storage and caching should the solutions architect use?
A. Amazon S3 with Amazon CloudFront
B. Amazon S3 Glacier with Amazon ElastiCache
C. Amazon Elastic Block Store (Amazon EBS) volumes with Amazon CloudFront
D. AWS Storage Gateway with Amazon ElastiCache

一位解决方案架构师正在为新的网络应用程序设计存储架构,该程序用于存储和查看工程图纸。所有
应用程序组件都将部署在亚马逊网络服务(AWS)基础架构上。
应用程序设计必须支持缓存,以最大限度地减少用户等待工程图纸加载的时间。
应用程序必须能够存储PB级别的数据。

解决方案架构师应该选择哪种存储和缓存的组合?
A. 亚马逊简单存储服务(Amazon S3)与亚马逊CloudFront

B. 亚马逊S3 Glacier与亚马逊ElastiCache
C. 亚马逊弹性块存储(Amazon EBS)卷与亚马逊CloudFront

D. AWS Storage Gateway与亚马逊ElastiCache

163 / 200

分类: SAA-C03

163. An Amazon EventBridge rule targets a third-party API. The third-party API has not received any incoming traffic. A solutions architect needs to
determine whether the rule conditions are being met and if the rule’s target is being invoked.
Which solution will meet these requirements?
A. Check for metrics in Amazon CloudWatch in the namespace for AWS/Events.
B. Review events in the Amazon Simple Queue Service (Amazon SQS) dead-letter queue.
C. Check for the events in Amazon CloudWatch Logs.
D. Check the trails in AWS CloudTrail for the EventBridge events.

亚马逊EventBridge规则的目标是一个第三方API。该第三方API尚未收到任何传入流量。
一位解决方案架构师需要确定规则条件是否被满足以及规则目标是否被调用。
以下哪个解决方案能满足这些要求?
A. 在AWS/Events命名空间的亚马逊CloudWatch中检查指标。
B. 查看亚马逊简单队列服务(Amazon SQS)死信队列中的事件。
C. 在亚马逊CloudWatch日志中检查事件。
D. 在AWS CloudTrail中检查EventBridge事件的相关追踪记录。

164 / 200

分类: SAA-C03

164. A company has a large workload that runs every Friday evening. The workload runs on Amazon EC2 instances that are in two Availability
Zones in the us-east-1 Region. Normally, the company must run no more than two instances at all times. However, the company wants to scale
up to six instances each Friday to handle a regularly repeating increased workload.
Which solution will meet these requirements with the LEAST operational overhead?
A. Create a reminder in Amazon EventBridge to scale the instances.
B. Create an Auto Scaling group that has a scheduled action.
C. Create an Auto Scaling group that uses manual scaling.
D. Create an Auto Scaling group that uses automatic scaling.

一家公司每周五晚上都要运行一个大型工作负载。该工作负载运行在位于us-east-1区域两个可用区的亚马逊EC2实例上。
通常情况下,公司必须始终保持不超过两个实例的运行。然而,公司希望每周五将实例规模扩大到六个,以处理定期重复增加的工作负载。
哪种解决方案能够以最少的操作开销满足这些需求?
A. 在亚马逊EventBridge中创建一个提醒来扩展实例
B. 创建一个具有定时操作的自动扩展组
C. 创建一个使用手动扩展的自动扩展组
D. 创建一个使用自动扩展的自动扩展组

165 / 200

分类: SAA-C03

165. A company is creating a REST API. The company has strict requirements for the use of TLS. The company requires TLSv1.3 on the API
endpoints. The company also requires a speci c public third-party certificate authority (CA) to sign the TLS certificate.
Which solution will meet these requirements?
A. Use a local machine to create a certificate that is signed by the third-party CImport the certificate into AWS Certificate Manager (ACM).
Create an HTTP API in Amazon API Gateway with a custom domain. Configure the custom domain to use the certificate.
B. Create a certificate in AWS Certificate Manager (ACM) that is signed by the third-party CA. Create an HTTP API in Amazon API Gateway
with a custom domain. Configure the custom domain to use the certificate.
C. Use AWS Certificate Manager (ACM) to create a certificate that is signed by the third-party CA. Import the certificate into AWS
Certificate Manager (ACM). Create an AWS Lambda function with a Lambda function URL. Configure the Lambda function URL to use the
certificate.
D. Create a certificate in AWS Certificate Manager (ACM) that is signed by the third-party CA. Create an AWS Lambda function with a
Lambda function URL. Configure the Lambda function URL to use the certificate.

一家公司正在创建一个REST API。该公司对TLS的使用有严格的要求。公司要求在API端点上使用TLSv1.3。公司还要求由特定的第三方公共证书颁发机构(CA)签署TLS证书。
哪种解决方案能够满足这些要求?
A. 使用本地机器创建由第三方CA签署的证书。将证书导入AWS证书管理器(ACM)。在Amazon API Gateway中创建带有自定义域名的HTTP API。配置自定义域名以使用该证书。
B. 在AWS证书管理器(ACM)中创建由第三方CA签署的证书。在Amazon API Gateway中创建带有自定义域名的HTTP API。配置自定义域名以使用该证书。
C. 使用AWS证书管理器(ACM)创建由第三方CA签署的证书。将证书导入AWS证书管理器(ACM)。创建带有Lambda函数URL的AWS Lambda函数。配置Lambda函数URL以使用该证书。
D. 在AWS证书管理器(ACM)中创建由第三方CA签署的证书。创建带有Lambda函数URL的AWS Lambda函数。配置Lambda函数URL以使用该证书。

166 / 200

分类: SAA-C03

166. A company runs an application on AWS. The application receives inconsistent amounts of usage. The application uses AWS Direct Connect to
connect to an on-premises MySQL-compatible database. The on-premises database consistently uses a minimum of 2 GiB of memory.
The company wants to migrate the on-premises database to a managed AWS service. The company wants to use auto scaling capabilities to
manage unexpected workload increases.
Which solution will meet these requirements with the LEAST administrative overhead?
A. Provision an Amazon DynamoDB database with default read and write capacity settings.
B. Provision an Amazon Aurora database with a minimum capacity of 1 Aurora capacity unit (ACU).
C. Provision an Amazon Aurora Serverless v2 database with a minimum capacity of 1 Aurora capacity unit (ACU).
D. Provision an Amazon RDS for MySQL database with 2 GiB of memory.

一家公司在AWS上运行一个应用程序。该应用程序接收到的使用量并不稳定。
应用程序通过AWS Direct Connect连接到本地MySQL兼容数据库。本地数据库始终使用至少2GiB的内存。
公司希望将本地数据库迁移到AWS托管服务。公司希望使用自动扩展功能来管理工作负载的意外增加。
哪种解决方案能够以最小的管理开销满足这些要求?
A. 配置具有默认读写容量设置的Amazon DynamoDB数据库。
B. 配置最小容量为1个Aurora容量单位(ACU)的Amazon Aurora数据库。
C. 配置最小容量为1个Aurora容量单位(ACU)的Amazon Aurora Serverless v2数据库。
D. 配置具有2GiB内存的Amazon RDS for MySQL数据库。

167 / 200

分类: SAA-C03

167. A company wants to use an event-driven programming model with AWS Lambda. The company wants to reduce startup latency for Lambda
functions that run on Java 11. The company does not have strict latency requirements for the applications. The company wants to reduce cold
starts and outlier latencies when a function scales up.
Which solution will meet these requirements MOST cost-effectively?
A. Configure Lambda provisioned concurrency.
B. Increase the timeout of the Lambda functions.
C. Increase the memory of the Lambda functions.
D. Configure Lambda SnapStart.

一家公司希望在AWS Lambda上使用事件驱动的编程模型。该公司希望减少在Java 11上运行的Lambda函数的启动延迟。该公司对应用程序没有严格的延迟要求。该公司希望在函数扩展时减少冷启动和异常延迟。
哪种解决方案能最经济高效地满足这些需求?
A. 配置Lambda预置并发。
B. 增加Lambda函数的超时时间。
C. 增加Lambda函数的内存。
D. 配置Lambda SnapStart。

168 / 200

分类: SAA-C03

168. A nancial services company launched a new application that uses an Amazon RDS for MySQL database. The company uses the application to
track stock market trends. The company needs to operate the application for only 2 hours at the end of each week. The company needs to
optimize the cost of running the database.
Which solution will meet these requirements MOST cost-effectively?
A. Migrate the existing RDS for MySQL database to an Aurora Serverless v2 MySQL database cluster.
B. Migrate the existing RDS for MySQL database to an Aurora MySQL database cluster.
C. Migrate the existing RDS for MySQL database to an Amazon EC2 instance that runs MySQL. Purchase an instance reservation for the
EC2 instance.
D. Migrate the existing RDS for MySQL database to an Amazon Elastic Container Service (Amazon ECS) cluster that uses MySQL container
images to run tasks.

一家金融服务公司推出了一个使用Amazon RDS for MySQL数据库的新应用程序。
该公司使用该应用程序来跟踪股市趋势。
该公司只需要在每周结束时运行应用程序2小时。
公司需要优化运行数据库的成本。
哪种解决方案能以最具成本效益的方式满足这些要求?
A. 将现有的RDS for MySQL数据库迁移到Aurora Serverless v2 MySQL数据库集群。
B. 将现有的RDS for MySQL数据库迁移到Aurora MySQL数据库集群。
C. 将现有的RDS for MySQL数据库迁移到运行MySQL的Amazon EC2实例。为该EC2实例购买实例预留。
D. 将现有的RDS for MySQL数据库迁移到使用MySQL容器镜像运行任务的Amazon Elastic Container Service (Amazon ECS)集群。

169 / 200

分类: SAA-C03

169. A company deploys its applications on Amazon Elastic Kubernetes Service (Amazon EKS) behind an Application Load Balancer in an AWS
Region. The application needs to store data in a PostgreSQL database engine. The company wants the data in the database to be highly
available. The company also needs increased capacity for read workloads.
Which solution will meet these requirements with the MOST operational e ciency?
A. Create an Amazon DynamoDB database table Configured with global tables.
B. Create an Amazon RDS database with Multi-AZ deployments.
C. Create an Amazon RDS database with Multi-AZ DB cluster deployment.
D. Create an Amazon RDS database Configured with cross-Region read replicas.

一家公司在其应用程序部署于亚马逊弹性Kubernetes服务(Amazon EKS)上,位于某个AWS区域中的应用负载均衡器后方。该应用程序需要将数据存储在PostgreSQL数据库引擎中。公司希望数据库中的数据具备高可用性。公司还需要提升读取工作负载的容量。

哪种解决方案能以最高的运营效率满足这些需求?

A. 创建一个配置了全局表的Amazon DynamoDB数据库表。
B. 创建一个多可用区部署的Amazon RDS数据库。
C. 创建一个多可用区数据库集群部署的Amazon RDS数据库。
D. 创建一个配置了跨区域读取副本的Amazon RDS数据库。

170 / 200

分类: SAA-C03

170. A company is building a RESTful serverless web application on AWS by using Amazon API Gateway and AWS Lambda. The users of this web
application will be geographically distributed, and the company wants to reduce the latency of API requests to these users.
Which type of endpoint should a solutions architect use to meet these requirements?
A. Private endpoint
B. Regional endpoint
C. Interface VPC endpoint
D. Edge-optimized endpoint

一家公司正在AWS上使用Amazon API Gateway和AWS Lambda构建一个RESTful无服务器网络应用程序。
该网络应用程序的用户将分布在不同地理位置,公司希望减少这些用户API请求的延迟。
解决方案架构师应该使用哪种类型的终端节点来满足这些需求?
A. 私有终端节点
B. 区域终端节点
C. 接口VPC终端节点
D. 边缘优化终端节点

171 / 200

分类: SAA-C03

171. A company uses an Amazon CloudFront distribution to serve content pages for its website. The company needs to ensure that clients use a
TLS certificate when accessing the company’s website. The company wants to automate the creation and renewal of the TLS certificates.
Which solution will meet these requirements with the MOST operational e ciency?
A. Use a CloudFront security policy to create a certificate.
B. Use a CloudFront origin access control (OAC) to create a certificate.
C. Use AWS Certificate Manager (ACM) to create a certificate. Use DNS validation for the domain.
D. Use AWS Certificate Manager (ACM) to create a certificate. Use email validation for the domain.

一家公司使用Amazon CloudFront分发来为其网站提供内容页面。该公司需要确保客户端在访问公司网站时使用TLS证书。该公司希望实现TLS证书的创建和续订自动化。

哪种解决方案能以最高的操作效率满足这些要求?

A. 使用CloudFront安全策略创建证书。

B. 使用CloudFront源访问控制(OAC)创建证书。

C. 使用AWS证书管理器(ACM)创建证书。对域名使用DNS验证。

D. 使用AWS证书管理器(ACM)创建证书。对域名使用电子邮件验证。

172 / 200

分类: SAA-C03

172. A company deployed a serverless application that uses Amazon DynamoDB as a database layer. The application has experienced a large
increase in users. The company wants to improve database response time from milliseconds to microseconds and to cache requests to the
database.
Which solution will meet these requirements with the LEAST operational overhead?
A. Use DynamoDB Accelerator (DAX).
B. Migrate the database to Amazon Redshift.
C. Migrate the database to Amazon RDS.
D. Use Amazon ElastiCache for Redis.

一家公司部署了一个使用Amazon DynamoDB作为数据库层的无服务器应用程序。该应用程序用户数量大幅增长。
公司希望将数据库响应时间从毫秒级提升至微秒级,并实现对数据库请求的缓存。
哪种解决方案能在最小运维开销下满足这些需求?
A. 使用DynamoDB加速器(DAX)。
B. 将数据库迁移至Amazon Redshift。
C. 将数据库迁移至Amazon RDS。
D. 使用Amazon ElastiCache for Redis。

173 / 200

分类: SAA-C03

173. A company runs an application that uses Amazon RDS for PostgreSQL. The application receives traffic only on weekdays during business
hours. The company wants to optimize costs and reduce operational overhead based on this usage.
Which solution will meet these requirements?
A. Use the Instance Scheduler on AWS to Configure start and stop schedules.
B. Turn off automatic backups. Create weekly manual snapshots of the database.
C. Create a custom AWS Lambda function to start and stop the database based on minimum CPU utilization.
D. Purchase All Upfront reserved DB instances.

一家公司运行着一个使用亚马逊RDS(关系型数据库服务)PostgreSQL的应用程序。该应用程序仅在工作日的营业时间内接收流量。

公司希望根据这一使用情况优化成本并减少运营开销。

以下哪种解决方案能够满足这些要求?

A. 使用AWS上的实例调度器配置启动和停止计划。

B. 关闭自动备份功能。每周手动创建数据库快照。

C. 基于最低CPU利用率创建一个自定义AWS Lambda函数来启动和停止数据库。

D. 购买全预付预留数据库实例。

174 / 200

分类: SAA-C03

174. A company uses locally attached storage to run a latency-sensitive application on premises. The company is using a lift and shift method to
move the application to the AWS Cloud. The company does not want to change the application architecture.
Which solution will meet these requirements MOST cost-effectively?
A. Configure an Auto Scaling group with an Amazon EC2 instance. Use an Amazon FSx for Lustre file system to run the application.
B. Host the application on an Amazon EC2 instance. Use an Amazon Elastic Block Store (Amazon EBS) GP2 volume to run the application.
C. Configure an Auto Scaling group with an Amazon EC2 instance. Use an Amazon FSx for OpenZFS file system to run the application.
D. Host the application on an Amazon EC2 instance. Use an Amazon Elastic Block Store (Amazon EBS) GP3 volume to run the application.

一家公司在本地使用直连存储运行一个对延迟敏感的应用程序。该公司正在采用”直接迁移”方法将该应用程序迁移到AWS云平台。

公司不希望改变应用程序架构。

哪种解决方案能够以最具成本效益的方式满足这些需求?

A. 配置具有Amazon EC2实例的自动扩展组。使用Amazon FSx for Lustre文件系统来运行应用程序。

B. 在Amazon EC2实例上托管应用程序。使用Amazon弹性块存储(Amazon EBS)GP2卷来运行应用程序。

C. 配置具有Amazon EC2实例的自动扩展组。使用Amazon FSx for OpenZFS文件系统来运行应用程序。

D. 在Amazon EC2实例上托管应用程序。使用Amazon弹性块存储(Amazon EBS)GP3卷来运行应用程序。

175 / 200

分类: SAA-C03

175. A company runs a stateful production application on Amazon EC2 instances. The application requires at least two EC2 instances to always be
running.
A solutions architect needs to design a highly available and fault-tolerant architecture for the application. The solutions architect creates an
Auto Scaling group of EC2 instances.
Which set of additional steps should the solutions architect take to meet these requirements?
A. Set the Auto Scaling group’s minimum capacity to two. Deploy one On-Demand Instance in one Availability Zone and one On-Demand
Instance in a second Availability Zone.
B. Set the Auto Scaling group’s minimum capacity to four. Deploy two On-Demand Instances in one Availability Zone and two On-Demand
Instances in a second Availability Zone.
C. Set the Auto Scaling group’s minimum capacity to two. Deploy four Spot Instances in one Availability Zone.
D. Set the Auto Scaling group’s minimum capacity to four. Deploy two On-Demand Instances in one Availability Zone and two Spot
Instances in a second Availability Zone.

一家公司在亚马逊EC2实例上运行一个有状态的生产应用程序。该应用程序要求始终至少有两个EC2实例保持运行。
解决方案架构师需要为该应用程序设计一个高可用且具备容错能力的架构。解决方案架构师创建了一个EC2实例的自动扩展组。
为了满足这些要求,解决方案架构师还应采取哪组额外步骤?
A. 将自动扩展组的最小容量设置为二。在一个可用区部署一个按需实例,在第二个可用区部署一个按需实例。
B. 将自动扩展组的最小容量设置为四。在一个可用区部署两个按需实例,在第二个可用区部署两个按需实例。
C. 将自动扩展组的最小容量设置为二。在一个可用区部署四个竞价实例。
D. 将自动扩展组的最小容量设置为四。在一个可用区部署两个按需实例,在第二个可用区部署两个竞价实例。

176 / 200

分类: SAA-C03

176. An ecommerce company uses Amazon Route 53 as its DNS provider. The company hosts its website on premises and in the AWS Cloud. The
company’s on-premises data center is near the us-west-1 Region. The company uses the eu-central-1 Region to host the website. The company
wants to minimize load time for the website as much as possible.
Which solution will meet these requirements?
A. Set up a geolocation routing policy. Send the traffic that is near us-west-1 to the on-premises data center. Send the traffic that is near
eu-central-1 to eu-central-1.
B. Set up a simple routing policy that routes all traffic that is near eu-central-1 to eu-central-1 and routes all traffic that is near the on
premises datacenter to the on-premises data center.
C. Set up a latency routing policy. Associate the policy with us-west-1.
D. Set up a weighted routing policy. Split the traffic evenly between eu-central-1 and the on-premises data center.

一家电子商务公司使用Amazon Route 53作为其DNS提供商。该公司在本地和AWS云上托管其网站。
公司的本地数据中心位于us-west-1区域附近。该公司使用eu-central-1区域来托管网站。公司
希望尽可能减少网站的加载时间。
哪种解决方案可以满足这些需求?
A. 设置地理定位路由策略。将靠近us-west-1的流量发送到本地数据中心。将靠近
eu-central-1的流量发送到eu-central-1。
B. 设置简单路由策略,将所有靠近eu-central-1的流量路由到eu-central-1,并将所有靠近本地
数据中心的流量路由到本地数据中心。
C. 设置延迟路由策略。将该策略与us-west-1关联。
D. 设置加权路由策略。将流量在eu-central-1和本地数据中心之间均匀分配。

177 / 200

分类: SAA-C03

177. A company has 5 PB of archived data on physical tapes. The company needs to preserve the data on the tapes for another 10 years for
compliance purposes. The company wants to migrate to AWS in the next 6 months. The data center that stores the tapes has a 1 Gbps uplink
internet connectivity.
Which solution will meet these requirements MOST cost-effectively?
A. Read the data from the tapes on premises. Stage the data in a local NFS storage. Use AWS DataSync to migrate the data to Amazon S3
Glacier Flexible Retrieval.
B. Use an on-premises backup application to read the data from the tapes and to write directly to Amazon S3 Glacier Deep Archive.
C. Order multiple AWS Snowball devices that have Tape Gateway. Copy the physical tapes to virtual tapes in Snowball. Ship the Snowball
devices to AWS. Create a lifecycle policy to move the tapes to Amazon S3 Glacier Deep Archive.
D. Configure an on-premises Tape Gateway. Create virtual tapes in the AWS Cloud. Use backup software to copy the physical tape to the
virtual tape.

一家公司有5PB的归档数据存储在物理磁带上。出于合规目的,该公司需要将这些磁带数据再保存10年。公司计划在未来6个月内迁移到AWS。当前存储磁带的数据中心拥有1Gbps的上行互联网连接。

哪种解决方案能够在满足这些需求的同时最经济高效?

A. 在本地从磁带读取数据,将数据暂存到本地NFS存储中。使用AWS DataSync将数据迁移到Amazon S3 Glacier Flexible Retrieval。

B. 使用本地备份应用程序直接从磁带读取数据并写入Amazon S3 Glacier Deep Archive。

C. 订购多台配备磁带网关的AWS Snowball设备。将物理磁带复制到Snowball中的虚拟磁带。将Snowball设备运送至AWS。创建生命周期策略将磁带数据迁移到Amazon S3 Glacier Deep Archive。

D. 配置本地磁带网关,在AWS云中创建虚拟磁带。使用备份软件将物理磁带数据复制到虚拟磁带。

178 / 200

分类: SAA-C03

178. A company is deploying an application that processes large quantities of data in parallel. The company plans to use Amazon EC2 instances
for the workload. The network architecture must be configurable to prevent groups of nodes from sharing the same underlying hardware.
Which networking solution meets these requirements?
A. Run the EC2 instances in a spread placement group.
B. Group the EC2 instances in separate accounts.
C. Configure the EC2 instances with dedicated tenancy.
D. Configure the EC2 instances with shared tenancy.

一家公司正在部署一个能够并行处理大量数据的应用程序。该公司计划使用亚马逊EC2实例来处理此工作负载。为了防止节点组共享相同的底层硬件,网络架构必须可配置。
哪种网络解决方案符合这些要求?
A. 在分散放置组中运行EC2实例。
B. 将EC2实例分组到不同的账户中。
C. 为EC2实例配置专用租赁。
D. 为EC2实例配置共享租赁。

179 / 200

分类: SAA-C03

179. A solutions architect is designing a disaster recovery (DR) strategy to provide Amazon EC2 capacity in a failover AWS Region. Business
requirements state that the DR strategy must meet capacity in the failover Region.
Which solution will meet these requirements?
A. Purchase On-Demand Instances in the failover Region.
B. Purchase an EC2 Savings Plan in the failover Region.
C. Purchase regional Reserved Instances in the failover Region.
D. Purchase a Capacity Reservation in the failover Region.

一名解决方案架构师正在设计一个灾难恢复(DR)策略,以在故障转移AWS区域中提供亚马逊EC2容量。业务需求规定,灾难恢复策略必须满足故障转移区域中的容量要求。
哪种解决方案能满足这些需求?
A. 在故障转移区域购买按需实例。
B. 在故障转移区域购买EC2 Savings Plan。
C. 在故障转移区域购买区域性预留实例。
D. 在故障转移区域购买容量预留。

180 / 200

分类: SAA-C03

180. A company has ve organizational units (OUs) as part of its organization in AWS Organizations. Each OU correlates to the ve businesses that
the company owns. The company’s research and development (R&D) business is separating from the company and will need its own
organization. A solutions architect creates a separate new management account for this purpose.
What should the solutions architect do next in the new management account?
A. Have the R&D AWS account be part of both organizations during the transition.
B. Invite the R&D AWS account to be part of the new organization after the R&D AWS account has left the prior organization.
C. Create a new R&D AWS account in the new organization. Migrate resources from the prior R&D AWS account to the new R&D AWS
account.
D. Have the R&D AWS account join the new organization. Make the new management account a member of the prior organization.

一家公司在其AWS Organizations中有五个组织单元(OUs),对应其拥有的五个业务部门。公司的研发(R&D)部门将从公司分离,并需要建立独立的组织。为此,解决方案架构师创建了一个独立的新管理账户。

解决方案架构师接下来应该在新管理账户中做什么?

A. 在过渡期间让研发AWS账户同时属于两个组织。

B. 在研发AWS账户离开原组织后,邀请其加入新组织。

C. 在新组织中创建一个新的研发AWS账户。将原有研发AWS账户的资源迁移至新账户。

D. 让研发AWS账户加入新组织。使新管理账户成为原组织的成员。

181 / 200

分类: SAA-C03

181. A company is designing a solution to capture customer activity in different web applications to process analytics and make predictions.
Customer activity in the web applications is unpredictable and can increase suddenly. The company requires a solution that integrates with
other web applications. The solution must include an authorization step for security purposes.
Which solution will meet these requirements?
A. Configure a Gateway Load Balancer (GWLB) in front of an Amazon Elastic Container Service (Amazon ECS) container instance that
stores the information that the company receives in an Amazon Elastic File System (Amazon EFS) file system. Authorization is resolved at
the GWLB.
B. Configure an Amazon API Gateway endpoint in front of an Amazon Kinesis data stream that stores the information that the company
receives in an Amazon S3 bucket. Use an AWS Lambda function to resolve authorization.
C. Configure an Amazon API Gateway endpoint in front of an Amazon Kinesis Data Firehose that stores the information that the company
receives in an Amazon S3 bucket. Use an API Gateway Lambda authorizer to resolve authorization.
D. Configure a Gateway Load Balancer (GWLB) in front of an Amazon Elastic Container Service (Amazon ECS) container instance that
stores the information that the company receives on an Amazon Elastic File System (Amazon EFS) file system. Use an AWS Lambda
function to resolve authorization.

一家公司正在设计一个解决方案,用于捕获不同网络应用中的客户活动,以便进行数据分析并做出预测。
网络应用中的客户活动具有不可预测性,可能会突然激增。该公司需要一个能够与其他网络应用集成的解决方案。
出于安全考虑,该解决方案必须包含授权步骤。
以下哪个解决方案能够满足这些需求?
A. 在亚马逊弹性容器服务(Amazon ECS)容器实例前配置一个网关负载均衡器(GWLB),将公司接收到的信息存储在亚马逊弹性文件系统(Amazon EFS)文件系统中。授权问题在GWLB层面解决。
B. 在亚马逊Kinesis数据流前配置一个亚马逊API网关端点,将公司接收到的信息存储在亚马逊S3存储桶中。使用AWS Lambda函数解决授权问题。
C. 在亚马逊Kinesis Data Firehose前配置一个亚马逊API网关端点,将公司接收到的信息存储在亚马逊S3存储桶中。使用API Gateway Lambda授权器解决授权问题。
D. 在亚马逊弹性容器服务(Amazon ECS)容器实例前配置一个网关负载均衡器(GWLB),将公司接收到的信息存储在亚马逊弹性文件系统(Amazon EFS)文件系统中。使用AWS Lambda函数解决授权问题。

182 / 200

分类: SAA-C03

182. An ecommerce company wants a disaster recovery solution for its Amazon RDS DB instances that run Microsoft SQL Server Enterprise Edition.
The company’s current recovery point objective (RPO) and recovery time objective (RTO) are 24 hours.
Which solution will meet these requirements MOST cost-effectively?
A. Create a cross-Region read replica and promote the read replica to the primary instance.
B. Use AWS Database Migration Service (AWS DMS) to create RDS cross-Region replication.
C. Use cross-Region replication every 24 hours to copy native backups to an Amazon S3 bucket.
D. Copy automatic snapshots to another Region every 24 hours.

一家电子商务公司希望为其运行Microsoft SQL Server企业版的Amazon RDS数据库实例设计一个灾难恢复解决方案。
公司当前的恢复点目标(RPO)和恢复时间目标(RTO)均为24小时。
哪种解决方案能够以最具成本效益的方式满足这些要求?
A. 创建一个跨区域只读副本,然后将该只读副本提升为主实例。
B. 使用AWS数据库迁移服务(AWS DMS)创建RDS跨区域复制。
C. 每隔24小时使用跨区域复制将本地备份复制到Amazon S3存储桶。
D. 每隔24小时将自动快照复制到另一个区域。

183 / 200

分类: SAA-C03

183. A company runs a web application on Amazon EC2 instances in an Auto Scaling group behind an Application Load Balancer that has sticky
sessions enabled. The web server currently hosts the user session state. The company wants to ensure high availability and avoid user
session state loss in the event of a web server outage.
Which solution will meet these requirements?
A. Use an Amazon ElastiCache for Memcached instance to store the session data. Update the application to use ElastiCache for
Memcached to store the session state.
B. Use Amazon ElastiCache for Redis to store the session state. Update the application to use ElastiCache for Redis to store the session
state.
C. Use an AWS Storage Gateway cached volume to store session data. Update the application to use AWS Storage Gateway cached volume
to store the session state.
D. Use Amazon RDS to store the session state. Update the application to use Amazon RDS to store the session state.

一家公司在应用负载均衡器后面的自动扩展组中的Amazon EC2实例上运行一个Web应用程序,该负载均衡器已启用粘性会话。当前Web服务器托管用户会话状态。公司希望确保高可用性,并在Web服务器发生故障时避免用户会话状态丢失。
哪种解决方案能够满足这些要求?
A. 使用Amazon ElastiCache for Memcached实例存储会话数据。更新应用程序以使用ElastiCache for Memcached存储会话状态。
B. 使用Amazon ElastiCache for Redis存储会话状态。更新应用程序以使用ElastiCache for Redis存储会话状态。
C. 使用AWS Storage Gateway缓存卷存储会话数据。更新应用程序以使用AWS Storage Gateway缓存卷存储会话状态。
D. 使用Amazon RDS存储会话状态。更新应用程序以使用Amazon RDS存储会话状态。

184 / 200

分类: SAA-C03

184. A company migrated a MySQL database from the company’s on-premises data center to an Amazon RDS for MySQL DB instance. The company
sized the RDS DB instance to meet the company’s average daily workload. Once a month, the database performs slowly when the company
runs queries for a report. The company wants to have the ability to run reports and maintain the performance of the daily workloads.
Which solution will meet these requirements?
A. Create a read replica of the database. Direct the queries to the read replica.
B. Create a backup of the database. Restore the backup to another DB instance. Direct the queries to the new database.
C. Export the data to Amazon S3. Use Amazon Athena to query the S3 bucket.
D. Resize the DB instance to accommodate the additional workload.

一家公司将其MySQL数据库从公司内部数据中心迁移至Amazon RDS for MySQL数据库实例。该公司
已根据日常平均工作负载配置了RDS数据库实例的规格。每月一次,当公司运行报表查询时,数据库性能会变得缓慢。
该公司希望在运行报表时能够同时保持日常业务工作负载的性能。
哪种方案能够满足这些需求?
A. 为数据库创建一个只读副本。将查询请求指向该只读副本。

B. 为数据库创建一个备份。将备份恢复到另一个数据库实例。将查询请求指向新的数据库。
C. 将数据导出到Amazon S3。使用Amazon Athena查询S3存储桶中的数据。
D. 调整数据库实例规格以适应额外的工作负载。

185 / 200

分类: SAA-C03

185. A company runs a container application by using Amazon Elastic Kubernetes Service (Amazon EKS). The application includes microservices
that manage customers and place orders. The company needs to route incoming requests to the appropriate microservices.
Which solution will meet this requirement MOST cost-effectively?
A. Use the AWS Load Balancer Controller to provision a Network Load Balancer.
B. Use the AWS Load Balancer Controller to provision an Application Load Balancer.
C. Use an AWS Lambda function to connect the requests to Amazon EKS.
D. Use Amazon API Gateway to connect the requests to Amazon EKS.

一家公司使用亚马逊弹性 Kubernetes 服务(Amazon EKS)运行一个容器应用程序。
该应用程序包含管理客户和下单的微服务。
公司需要将传入的请求路由到相应的微服务。

哪种解决方案最能符合这一要求且最具成本效益?

A. 使用AWS负载均衡控制器配置网络负载均衡器。
B. 使用AWS负载均衡控制器配置应用负载均衡器。
C. 使用AWS Lambda函数将请求连接到Amazon EKS。
D. 使用Amazon API Gateway将请求连接到Amazon EKS。

186 / 200

分类: SAA-C03

186. A company uses AWS and sells access to copyrighted images. The company’s global customer base needs to be able to access these images
quickly. The company must deny access to users from speci c countries. The company wants to minimize costs as much as possible.
Which solution will meet these requirements?
A. Use Amazon S3 to store the images. Turn on multi-factor authentication (MFA) and public bucket access. Provide customers with a link
to the S3 bucket.
B. Use Amazon S3 to store the images. Create an IAM user for each customer. Add the users to a group that has permission to access the
S3 bucket.
C. Use Amazon EC2 instances that are behind Application Load Balancers (ALBs) to store the images. Deploy the instances only in the
countries the company services. Provide customers with links to the ALBs for their speci c country’s instances.
D. Use Amazon S3 to store the images. Use Amazon CloudFront to distribute the images with geographic restrictions. Provide a signed
URL for each customer to access the data in CloudFront.

一家公司使用亚马逊云服务(AWS)并销售受版权保护图片的访问权限。该公司的全球客户需要能够快速访问这些图片。
公司必须阻止特定国家的用户访问。公司希望尽可能降低成本。
以下哪种解决方案能够满足这些要求?
A. 使用亚马逊S3存储图片。开启多因素认证(MFA)和公开存储桶访问权限。为客户提供S3存储桶的链接。
B. 使用亚马逊S3存储图片。为每位客户创建IAM用户。将这些用户添加至拥有S3存储桶访问权限的组中。
C. 使用位于应用负载均衡器(ALB)后端的亚马逊EC2实例存储图片。仅在公司业务所在国家部署实例。为客户提供指向其所在国家特定实例ALB的链接。
D. 使用亚马逊S3存储图片。使用亚马逊CloudFront分发图片并设置地理限制。为每位客户提供签名URL以访问CloudFront中的数据。

187 / 200

分类: SAA-C03

187. A solutions architect is designing a highly available Amazon ElastiCache for Redis based solution. The solutions architect needs to ensure
that failures do not result in performance degradation or loss of data locally and within an AWS Region. The solution needs to provide high
availability at the node level and at the Region level.
Which solution will meet these requirements?
A. Use Multi-AZ Redis replication groups with shards that contain multiple nodes.
B. Use Redis shards that contain multiple nodes with Redis append only files (AOF) turned on.
C. Use a Multi-AZ Redis cluster with more than one read replica in the replication group.
D. Use Redis shards that contain multiple nodes with Auto Scaling turned on.

一位解决方案架构师正在设计一个基于Amazon ElastiCache for Redis的高可用解决方案。该架构师需要确保故障不会导致本地或AWS区域内的性能下降或数据丢失。

该解决方案需要在节点级别和区域级别都提供高可用性。

下列哪种解决方案能够满足这些要求?

A. 使用包含多节点分片的多可用区Redis复制组

B. 使用开启Redis仅追加文件(AOF)功能的多节点Redis分片

C. 在复制组中使用具有多个只读副本的多可用区Redis集群

D. 使用开启自动扩展功能的多节点Redis分片

188 / 200

分类: SAA-C03

188. A company plans to migrate to AWS and use Amazon EC2 On-Demand Instances for its application. During the migration testing phase, a
technical team observes that the application takes a long time to launch and load memory to become fully productive.
Which solution will reduce the launch time of the application during the next testing phase?
A. Launch two or more EC2 On-Demand Instances. Turn on auto scaling features and make the EC2 On-Demand Instances available during
the next testing phase.
B. Launch EC2 Spot Instances to support the application and to scale the application so it is available during the next testing phase.
C. Launch the EC2 On-Demand Instances with hibernation turned on. Configure EC2 Auto Scaling warm pools during the next testing
phase.
D. Launch EC2 On-Demand Instances with Capacity Reservations. Start additional EC2 instances during the next testing phase.

一家公司计划迁移至亚马逊网络服务(AWS)并使用按需启动的亚马逊弹性计算云(Amazon EC2)实例来运行其应用程序。在迁移测试阶段,技术团队观察到应用程序需要很长时间启动并加载内存才能完全投入工作状态。
在下一个测试阶段,哪种解决方案可以减少应用程序的启动时间?
A. 启动两个或多个按需EC2实例。开启自动扩展功能,确保在下一个测试阶段这些按需EC2实例可用。
B. 启动EC2竞价实例以支持应用程序并进行扩展,确保该程序在下一个测试阶段可用。
C. 在启用休眠功能的情况下启动按需EC2实例。在下一个测试阶段中配置EC2自动扩展预热池。
D. 使用容量预留启动按需EC2实例。在下一个测试阶段中启动额外的EC2实例。

189 / 200

分类: SAA-C03

189. A company’s applications run on Amazon EC2 instances in Auto Scaling groups. The company notices that its applications experience sudden
traffic increases on random days of the week. The company wants to maintain application performance during sudden traffic increases.
Which solution will meet these requirements MOST cost-effectively?
A. Use manual scaling to change the size of the Auto Scaling group.
B. Use predictive scaling to change the size of the Auto Scaling group.
C. Use dynamic scaling to change the size of the Auto Scaling group.
D. Use schedule scaling to change the size of the Auto Scaling group.

一家公司的应用程序运行在自动扩展组中的亚马逊EC2实例上。该公司注意到其应用程序在一周中的随机日期会出现流量突然增加的情况。公司希望在流量突然增加时保持应用程序性能。

哪种解决方案最能经济高效地满足这些要求?

A. 使用手动扩展来更改自动扩展组的大小。
B. 使用预测性扩展来更改自动扩展组的大小。
C. 使用动态扩展来更改自动扩展组的大小。
D. 使用计划扩展来更改自动扩展组的大小。

190 / 200

分类: SAA-C03

190. An ecommerce application uses a PostgreSQL database that runs on an Amazon EC2 instance. During a monthly sales event, database usage
increases and causes database connection issues for the application. The traffic is unpredictable for subsequent monthly sales events, which
impacts the sales forecast. The company needs to maintain performance when there is an unpredictable increase in traffic.
Which solution resolves this issue in the MOST cost-effective way?
A. Migrate the PostgreSQL database to Amazon Aurora Serverless v2.
B. Enable auto scaling for the PostgreSQL database on the EC2 instance to accommodate increased usage.
C. Migrate the PostgreSQL database to Amazon RDS for PostgreSQL with a larger instance type.
D. Migrate the PostgreSQL database to Amazon Redshift to accommodate increased usage.

一个电子商务应用程序使用运行在亚马逊EC2实例上的PostgreSQL数据库。在每月一次的促销活动期间,数据库使用量增加并导致应用程序出现数据库连接问题。对于后续的月度促销活动,流量无法预测,这影响了销售预测。公司需要在流量出现不可预测增长时保持性能。
哪种解决方案能以最具成本效益的方式解决这个问题?
A. 将PostgreSQL数据库迁移到Amazon Aurora Serverless v2。
B. 在EC2实例上为PostgreSQL数据库启用自动扩展以适应使用量增长。
C. 将PostgreSQL数据库迁移到具有更大实例类型的Amazon RDS for PostgreSQL。
D. 将PostgreSQL数据库迁移到Amazon Redshift以适应使用量增长。

191 / 200

分类: SAA-C03

191. A company hosts an internal serverless application on AWS by using Amazon API Gateway and AWS Lambda. The company’s employees report
issues with high latency when they begin using the application each day. The company wants to reduce latency.
Which solution will meet these requirements?
A. Increase the API Gateway throttling limit.
B. Set up a scheduled scaling to increase Lambda provisioned concurrency before employees begin to use the application each day.
C. Create an Amazon CloudWatch alarm to initiate a Lambda function as a target for the alarm at the beginning of each day.
D. Increase the Lambda function memory.

一家公司在AWS上使用亚马逊API网关和AWS Lambda托管了一个内部无服务器应用。公司员工报告称,每天开始使用应用时会出现高延迟问题。公司希望降低延迟。
哪种解决方案能够满足这些需求?
A. 提高API网关的节流限制。
B. 设置自动扩展计划,在员工每天开始使用应用前增加Lambda预置并发量。
C. 创建一个亚马逊CloudWatch告警,使其每天开始时触发Lambda函数作为告警目标。
D. 增加Lambda函数的内存。

192 / 200

分类: SAA-C03

192. A research company uses on-premises devices to generate data for analysis. The company wants to use the AWS Cloud to analyze the data.
The devices generate .csv files and support writing the data to an SMB file share. Company analysts must be able to use SQL commands to
query the data. The analysts will run queries periodically throughout the day.
Which combination of steps will meet these requirements MOST cost-effectively? (Choose three.)
A. Deploy an AWS Storage Gateway on premises in Amazon S3 File Gateway mode.
B. Deploy an AWS Storage Gateway on premises in Amazon FSx File Gateway made.
C. Set up an AWS Glue crawler to create a table based on the data that is in Amazon S3.
D. Set up an Amazon EMR cluster with EMR File System (EMRFS) to query the data that is in Amazon S3. Provide access to analysts.
E. Set up an Amazon Redshift cluster to query the data that is in Amazon S3. Provide access to analysts.
F. Setup Amazon Athena to query the data that is in Amazon S3. Provide access to analysts.

一家研究公司使用本地设备生成数据用于分析。该公司希望使用亚马逊云科技(AWS Cloud)来分析这些数据。
设备生成的.csv文件支持将数据写入SMB文件共享。公司的分析师必须能够使用SQL命令来查询数据。分析师们将会在一天中定期运行查询。
以下哪三种步骤的组合最能以最具成本效益的方式满足这些需求?(选择三项。)
A. 在本地部署AWS Storage Gateway(亚马逊存储网关),采用Amazon S3文件网关模式。
B. 在本地部署AWS Storage Gateway(亚马逊存储网关),采用Amazon FSx文件网关模式。
C. 设置AWS Glue爬虫程序,基于Amazon S3中的数据创建表。
D. 设置Amazon EMR集群,使用EMR文件系统(EMRFS)来查询Amazon S3中的数据。为分析师提供访问权限。
E. 设置Amazon Redshift集群来查询Amazon S3中的数据。为分析师提供访问权限。
F. 设置Amazon Athena来查询Amazon S3中的数据。为分析师提供访问权限。

193 / 200

分类: SAA-C03

193. A company wants to use Amazon Elastic Container Service (Amazon ECS) clusters and Amazon RDS DB instances to build and run a payment
processing application. The company will run the application in its on-premises data center for compliance purposes.
A solutions architect wants to use AWS Outposts as part of the solution. The solutions architect is working with the company’s operational
team to build the application.
Which activities are the responsibility of the company’s operational team? (Choose three.)
A. Providing resilient power and network connectivity to the Outposts racks
B. Managing the virtualization hypervisor, storage systems, and the AWS services that run on Outposts
C. Physical security and access controls of the data center environment
D. Availability of the Outposts infrastructure including the power supplies, servers, and networking equipment within the Outposts racks
E. Physical maintenance of Outposts components
F. Providing extrafficapacity for Amazon ECS clusters to mitigate server failures and maintenance events

一家公司希望使用亚马逊弹性容器服务(Amazon ECS)集群和亚马逊RDS数据库实例来构建并运行一个支付处理应用。出于合规目的,该公司将在其本地数据中心运行该应用。
一位解决方案架构师希望将AWS Outposts作为解决方案的一部分。该架构师正与公司的运维团队合作开发此应用。
以下哪些活动属于公司运维团队的责任?(请选择三项)
A. 为Outposts机架提供稳定的电力与网络连接
B. 管理虚拟化系统管理程序、存储系统及运行在Outposts上的AWS服务
C. 数据中心环境的物理安全与访问控制
D. Outposts基础设施(包括机架内的电源、服务器及网络设备)的可用性
E. Outposts组件的物理维护
F. 为Amazon ECS集群提供超额容量以应对服务器故障和维护事件

194 / 200

分类: SAA-C03

194. A company is planning to migrate a TCP-based application into the company’s VPC. The application is publicly accessible on a nonstandard
TCP port through a hardware appliance in the company’s data center. This public endpoint can process up to 3 million requests per second
with low latency. The company requires the same level of performance for the new public endpoint in AWS.
What should a solutions architect recommend to meet this requirement?
A. Deploy a Network Load Balancer (NLB). Configure the NLB to be publicly accessible over the TCP port that the application requires.
B. Deploy an Application Load Balancer (ALB). Configure the ALB to be publicly accessible over the TCP port that the application requires.
C. Deploy an Amazon CloudFront distribution that listens on the TCP port that the application requires. Use an Application Load Balancer
as the origin.
D. Deploy an Amazon API Gateway API that is Configured with the TCP port that the application requires. Configure AWS Lambda functions
with provisioned concurrency to process the requests.

一家公司正计划将一个基于TCP协议的应用程序迁移至公司内部的VPC。该应用程序目前通过数据中心内的硬件设备在一个非标准TCP端口上对外公开提供服务。

这个公共端点能够以低延迟处理每秒高达300万次的请求。公司要求在AWS上新建的公共端点必须保持同等性能水平。

解决方案架构师应该推荐哪种方案来满足这一需求?

A. 部署网络负载均衡器(NLB),将NLB配置为通过应用程序所需的TCP端口公开访问

B. 部署应用负载均衡器(ALB),将ALB配置为通过应用程序所需的TCP端口公开访问

C. 部署支持应用程序所需TCP端口的Amazon CloudFront分发,并使用应用负载均衡器作为源站

D. 部署配置了应用程序所需TCP端口的Amazon API Gateway API,并通过预置并发功能配置AWS Lambda函数来处理请求

195 / 200

分类: SAA-C03

195. A company runs its critical database on an Amazon RDS for PostgreSQL DB instance. The company wants to migrate to Amazon Aurora
PostgreSQL with minimal downtime and data loss.
Which solution will meet these requirements with the LEAST operational overhead?
A. Create a DB snapshot of the RDS for PostgreSQL DB instance to populate a new Aurora PostgreSQL DB cluster.
Topic 1
B. Create an Aurora read replica of the RDS for PostgreSQL DB instance. Promote the Aurora read replicate to a new Aurora PostgreSQL
DB cluster.
C. Use data import from Amazon S3 to migrate the database to an Aurora PostgreSQL DB cluster.
D. Use the pg_dump utility to back up the RDS for PostgreSQL database. Restore the backup to a new Aurora PostgreSQL DB cluster.

一家公司在Amazon RDS for PostgreSQL数据库实例上运行其关键数据库。该公司希望以最少的停机时间和数据丢失迁移到Amazon Aurora PostgreSQL。
哪种解决方案能以最小的操作开销满足这些要求?
A. 创建RDS for PostgreSQL数据库实例的数据库快照来填充新的Aurora PostgreSQL数据库集群。
B. 创建RDS for PostgreSQL数据库实例的Aurora只读副本。将Aurora只读副本提升为新的Aurora PostgreSQL数据库集群。
C. 使用从Amazon S3导入数据的方式将数据库迁移到Aurora PostgreSQL数据库集群。
D. 使用pg_dump工具备份RDS for PostgreSQL数据库。将备份恢复到新的Aurora PostgreSQL数据库集群。

196 / 200

分类: SAA-C03

196. A company’s infrastructure consists of hundreds of Amazon EC2 instances that use Amazon Elastic Block Store (Amazon EBS) storage. A
solutions architect must ensure that every EC2 instance can be recovered after a disaster.
What should the solutions architect do to meet this requirement with the LEAST amount of effort?
A. Take a snapshot of the EBS storage that is attached to each EC2 instance. Create an AWS CloudFormation template to launch new EC2
instances from the EBS storage.
B. Take a snapshot of the EBS storage that is attached to each EC2 instance. Use AWS Elastic Beanstalk to set the environment based on
the EC2 template and attach the EBS storage.
C. Use AWS Backup to set up a backup plan for the entire group of EC2 instances. Use the AWS Backup API or the AWS CLI to speed up the
restore process for multiple EC2 instances.
D. Create an AWS Lambda function to take a snapshot of the EBS storage that is attached to each EC2 instance and copy the Amazon
Machine Images (AMIs). Create another Lambda function to perform the restores with the copied AMIs and attach the EBS storage.

一家公司的基础设施由数百个使用亚马逊弹性块存储(Amazon EBS)的亚马逊弹性计算云(Amazon EC2)实例组成。
一位解决方案架构师必须确保在灾难发生后每个EC2实例都能被恢复。
解决方案架构师应该采取什么措施以最小的努力满足这一需求?
A. 为每个EC2实例附带的EBS存储制作快照。创建一个AWS CloudFormation模板,从EBS存储启动新的EC2实例。
B. 为每个EC2实例附带的EBS存储制作快照。使用AWS Elastic Beanstalk根据EC2模板设置环境并附加EBS存储。
C. 使用AWS Backup为整个EC2实例群组设置备份计划。使用AWS Backup API或AWS CLI加速多个EC2实例的恢复过程。
D. 创建一个AWS Lambda函数为每个EC2实例附带的EBS存储制作快照并复制亚马逊机器镜像(AMIs)。创建另一个Lambda函数使用复制的AMIs执行恢复并附加EBS存储。

197 / 200

分类: SAA-C03

197. A company recently migrated to the AWS Cloud. The company wants a serverless solution for large-scale parallel on-demand processing of a
semistructured dataset. The data consists of logs, media les, sales transactions, and IoT sensor data that is stored in Amazon S3. The
company wants the solution to process thousands of items in the dataset in parallel.
Which solution will meet these requirements with the MOST operational e ciency?
A. Use the AWS Step Functions Map state in Inline mode to process the data in parallel.
B. Use the AWS Step Functions Map state in Distributed mode to process the data in parallel.
C. Use AWS Glue to process the data in parallel.
D. Use several AWS Lambda functions to process the data in parallel.

一家公司最近迁移到了AWS云。该公司想要一个无服务器解决方案,用于对半结构化数据集进行大规模并行按需处理。
这些数据包括日志、媒体文件、销售交易记录以及存储在Amazon S3中的物联网传感器数据。
该公司希望该解决方案能够并行处理数据集中的数千个项目。
哪种方案能以最高运营效率满足这些要求?
A. 使用AWS Step Functions的Map状态(内联模式)并行处理数据。
B. 使用AWS Step Functions的Map状态(分布式模式)并行处理数据。
C. 使用AWS Glue并行处理数据。
D. 使用多个AWS Lambda函数并行处理数据。

198 / 200

分类: SAA-C03

198. A company will migrate 10 PB of data to Amazon S3 in 6 weeks. The current data center has a 500 Mbps uplink to the internet. Other on
premises applications share the uplink. The company can use 80% of the internet bandwidth for this one-time migration task.
Which solution will meet these requirements?
A. Configure AWS DataSync to migrate the data to Amazon S3 and to automatically verify the data.
B. Use rsync to transfer the data directly to Amazon S3.
C. Use the AWS CLI and multiple copy processes to send the data directly to Amazon S3.
D. Order multiple AWS Snowball devices. Copy the data to the devices. Send the devices to AWS to copy the data to Amazon S3.

一家公司将在6周内将10 PB的数据迁移到Amazon S3。当前数据中心拥有500 Mbps的上行互联网链路。其他本地应用也共享该上行链路。公司可以将80%的互联网带宽用于这项一次性迁移任务。

哪种解决方案能满足这些要求?

A. 配置AWS DataSync将数据迁移到Amazon S3并自动验证数据。

B. 使用rsync直接将数据传输到Amazon S3。

C. 使用AWS CLI和多个复制进程直接将数据发送到Amazon S3。

D. 订购多个AWS Snowball设备。将数据复制到设备中。将设备寄送至AWS以将数据复制到Amazon S3。

199 / 200

分类: SAA-C03

199. A company has several on-premises Internet Small Computer Systems Interface (ISCSI) network storage servers. The company wants to
reduce the number of these servers by moving to the AWS Cloud. A solutions architect must provide low-latency access to frequently used
data and reduce the dependency on on-premises servers with a minimal number of infrastructure changes.
Which solution will meet these requirements?
A. Deploy an Amazon S3 File Gateway.
B. Deploy Amazon Elastic Block Store (Amazon EBS) storage with backups to Amazon S3.
C. Deploy an AWS Storage Gateway volume gateway that is Configured with stored volumes.
D. Deploy an AWS Storage Gateway volume gateway that is Configured with cached volumes.

一家公司拥有多台本地互联网小型计算机系统接口(ISCSI)网络存储服务器。该公司希望通过迁移至亚马逊云科技(AWS Cloud)来减少这些服务器的数量。
解决方案架构师必须以最少的基础设施变更,为频繁使用的数据提供低延迟访问,并减少对本地服务器的依赖。
以下哪种解决方案能够满足这些需求?
A. 部署亚马逊简单存储服务(Amazon S3)文件网关。
B. 部署亚马逊弹性块存储(Amazon EBS),并备份至亚马逊简单存储服务(Amazon S3)。
C. 部署配置为存储卷的AWS存储网关卷网关。
D. 部署配置为缓存卷的AWS存储网关卷网关。

200 / 200

分类: SAA-C03

200. A solutions architect is designing an application that will allow business users to upload objects to Amazon S3. The solution needs to
maximize object durability. Objects also must be readily available at any time and for any length of time. Users will access objects frequently
within the first 30 days after the objects are uploaded, but users are much less likely to access objects that are older than 30 days.
Which solution meets these requirements MOST cost-effectively?
A. Store all the objects in S3 Standard with an S3 Lifecycle rule to transition the objects to S3 Glacier after 30 days.
B. Store all the objects in S3 Standard with an S3 Lifecycle rule to transition the objects to S3 Standard-Infrequent Access (S3 Standard-IA)
after 30 days.
C. Store all the objects in S3 Standard with an S3 Lifecycle rule to transition the objects to S3 One Zone-Infrequent Access (S3 One Zone
IA) after 30 days.
D. Store all the objects in S3 Intelligent-Tiering with an S3 Lifecycle rule to transition the objects to S3 Standard-Infrequent Access (S3
Standard-IA) after 30 days.

一名解决方案架构师正在设计一个应用程序,该程序将允许业务用户将对象上传到Amazon S3。
该解决方案需要最大限度地提高对象的持久性。
对象还必须随时可用,且可访问时间长度不受限制。
用户在上传对象后的头30天内会频繁访问这些对象,但在对象超过30天后,用户访问的可能性会大幅降低。
哪种解决方案能以最具成本效益的方式满足这些需求?

A. 将所有对象存储在S3 Standard中,并设置一个S3生命周期规则,在30天后将对象转移到S3 Glacier。
B. 将所有对象存储在S3 Standard中,并设置一个S3生命周期规则,在30天后将对象转移到S3 Standard-Infrequent Access (S3 Standard-IA)。
C. 将所有对象存储在S3 Standard中,并设置一个S3生命周期规则,在30天后将对象转移到S3 One Zone-Infrequent Access (S3 One Zone-IA)。
D. 将所有对象存储在S3 Intelligent-Tiering中,并设置一个S3生命周期规则,在30天后将对象转移到S3 Standard-Infrequent Access (S3 Standard-IA)。

您的分数是

平均分为 0%

0%

评价表

感谢评价

本文地址:https://www.neiwangchuantou.com/2025/02/aws-saa-c03%e7%9c%9f%e9%a2%98-no-401-600/,禁止转载
0

评论0

AWS SAP-C02真题 No.401-600
AWS SAP-C02真题 No.401-600
8分钟前 有人购买 去瞅瞅看
显示验证码
没有账号?注册  忘记密码?