Exams > Amazon > AWS-SysOps: AWS Certified SysOps Administrator
AWS-SysOps: AWS Certified SysOps Administrator
Page 18 out of 91 pages Questions 171-180 out of 910 questions
Question#171

A storage admin wants to encrypt all the objects stored in S3 using server side encryption. The user does not want to use the AES 256 encryption key provided by
S3. How can the user achieve this?

  • A. The admin should upload his secret key to the AWS console and let S3 decrypt the objects
  • B. The admin should use CLI or API to upload the encryption key to the S3 bucket. When making a call to the S3 API mention the encryption key URL in each request
  • C. S3 does not support client supplied encryption keys for server side encryption
  • D. The admin should send the keys and encryption algorithm with each API call
Discover Answer Hide Answer

D
AWS S3 supports client side or server side encryption to encrypt all data at rest. The server side encryption can either have the S3 supplied AES-256 encryption key or the user can send the key along with each API call to supply his own encryption key. Amazon S3 never stores the user's encryption key. The user has to supply it for each encryption or decryption call.

Question#172

A user is trying to create a PIOPS EBS volume with 8 GB size and 200 IOPS. Will AWS create the volume?

  • A. Yes, since the ratio between EBS and IOPS is less than 30
  • B. No, since the PIOPS and EBS size ratio is less than 30
  • C. No, the EBS size is less than 10 GB
  • D. Yes, since PIOPS is higher than 100
Discover Answer Hide Answer

A

Question#173

A user has scheduled the maintenance window of an RDS DB on Monday at 3 AM. Which of the below mentioned events may force to take the DB instance offline during the maintenance window?

  • A. Enabling Read Replica
  • B. Making the DB Multi AZ
  • C. DB password change
  • D. Security patching
Discover Answer Hide Answer

D
Amazon RDS performs maintenance on the DB instance during a user-definable maintenance window. The system may be offline or experience lower performance during that window. The only maintenance events that may require RDS to make the DB instance offline are:

Scaling compute operations -
Software patching. Required software patching is automatically scheduled only for patches that are security and durability related. Such patching occurs infrequently (typically once every few months) and seldom requires more than a fraction of the maintenance window.

Question#174

An organization has launched 5 instances: 2 for production and 3 for testing. The organization wants that one particular group of IAM users should only access the test instances and not the production ones. How can the organization set that as a part of the policy?

  • A. Launch the test and production instances in separate regions and allow region wise access to the group
  • B. Define the IAM policy which allows access based on the instance ID
  • C. Create an IAM policy with a condition which allows access to only small instances
  • D. Define the tags on the test and production servers and add a condition to the IAM policy which allows access to specific tags
Discover Answer Hide Answer

D
AWS Identity and Access Management is a web service which allows organizations to manage users and user permissions for various AWS services. The user can add conditions as a part of the IAM policies. The condition can be set on AWS Tags, Time, and Client IP as well as on various parameters. If the organization wants the user to access only specific instances he should define proper tags and add to the IAM policy condition. The sample policy is shown below.

Question#175

A user has configured Auto Scaling with the minimum capacity as 2 and the desired capacity as 2. The user is trying to terminate one of the existing instance with the command:

What will Auto Scaling do in this scenario?

  • A. Terminates the instance and does not launch a new instance
  • B. Terminates the instance and updates the desired capacity to 1
  • C. Terminates the instance and updates the desired capacity and minimum size to 1
  • D. Throws an error
Discover Answer Hide Answer

D
The Auto Scaling command as-terminate-instance-in-auto-scaling-group <Instance ID> will terminate the specific instance ID. The user is required to specify the parameter as --decrement-desired-capacity. Then Auto Scaling will terminate the instance and decrease the desired capacity by 1. In this case since the minimum size is 2, Auto Scaling will not allow the desired capacity to go below 2. Thus, it will throw an error.

Question#176

A user is collecting 1000 records per second. The user wants to send the data to CloudWatch using the custom namespace. Which of the below mentioned options is recommended for this activity?

  • A. Aggregate the data with statistics, such as Min, max, Average, Sum and Sample data and send the data to CloudWatch
  • B. Send all the data values to CloudWatch in a single command by separating them with a comma. CloudWatch will parse automatically
  • C. Create one csv file of all the data and send a single file to CloudWatch
  • D. It is not possible to send all the data in one call. Thus, it should be sent one by one. CloudWatch will aggregate the data automatically
Discover Answer Hide Answer

A
AWS CloudWatch supports the custom metrics. The user can always capture the custom data and upload the data to CloudWatch using CLI or APIs. The user can publish data to CloudWatch as single data points or as an aggregated set of data points called a statistic set using the command put-metric-data. It is recommended that when the user is having multiple data points per minute, he should aggregate the data so that it will minimize the number of calls to put-metric- data. In this case it will be single call to CloudWatch instead of 1000 calls if the data is aggregated.

Question#177

A user is trying to create an EBS volume with the highest PIOPS supported by EBS. What is the minimum size of EBS required to have the maximum IOPS?

  • A. 124
  • B. 150
  • C. 134
  • D. 128
Discover Answer Hide Answer

C
A provisioned IOPS EBS volume can range in size from 10 GB to 1 TB and the user can provision up to 4000 IOPS per volume. The ratio of IOPS provisioned to the volume size requested should be a maximum of 30.

Question#178

An organization is trying to create various IAM users. Which of the below mentioned options is not a valid IAM username?

Discover Answer Hide Answer

D
AWS Identity and Access Management is a web service which allows organizations to manage users and user permissions for various AWS services. Whenever the organization is creating an IAM user, there should be a unique ID for each user. The names of users, groups, roles, instance profiles must be alphanumeric, including the following common characters: plus (+., equal (=., comma (,., period (.., at (@., and dash (-..

Question#179

A user is having data generated randomly based on a certain event. The user wants to upload that data to CloudWatch. It may happen that event may not have data generated for some period due to randomness. Which of the below mentioned options is a recommended option for this case?

  • A. For the period when there is no data, the user should not send the data at all
  • B. For the period when there is no data the user should send a blank value
  • C. For the period when there is no data the user should send the value as 0
  • D. The user must upload the data to CloudWatch as having no data for some period will cause an error at CloudWatch monitoring
Discover Answer Hide Answer

C
AWS CloudWatch supports the custom metrics. The user can always capture the custom data and upload the data to CloudWatch using CLI or APIs. When the user data is more random and not generated at regular intervals, there can be a period which has no associated data. The user can either publish the zero (0.
Value for that period or not publish the data at all. It is recommended that the user should publish zero instead of no value to monitor the health of the application.
This is helpful in an alarm as well as in the generation of the sample data count.

Question#180

A user is sending the data to CloudWatch using the CloudWatch API. The user is sending data 90 minutes in the future. What will CloudWatch do in this case?

  • A. CloudWatch will accept the data
  • B. It is not possible to send data of the future
  • C. It is not possible to send the data manually to CloudWatch
  • D. The user cannot send data for more than 60 minutes in the future
Discover Answer Hide Answer

A
With Amazon CloudWatch, each metric data point must be marked with a time stamp. The user can send the data using CLI but the time has to be in the UTC format. If the user does not provide the time, CloudWatch will take the data received time in the UTC timezone. The time stamp sent by the user can be up to two weeks in the past and up to two hours into the future.

chevron rightPrevious Nextchevron right