Courseiva
MigrationmediumMultiple ChoiceObjective-mapped

PAS-C01 Migration Practice Question

Exhibit

Refer to the exhibit. The following is a CloudFormation template snippet:

Parameters:
  InstanceType:
    Type: String
    Default: r5.2xlarge
    AllowedValues:
      - r5.2xlarge
      - r5.4xlarge
      - x1e.2xlarge
  DBInstanceClass:
    Type: String
    Default: db.r5.2xlarge
    AllowedValues:
      - db.r5.2xlarge
      - db.r5.4xlarge
      - db.x1e.2xlarge

Resources:
  SAPEC2Instance:
    Type: AWS::EC2::Instance
    Properties:
      InstanceType: !Ref InstanceType
      ImageId: ami-0abcdef1234567890
  SAPRDSInstance:
    Type: AWS::RDS::DBInstance
    Properties:
      DBInstanceClass: !Ref DBInstanceClass
      Engine: SAP HANA
      MasterUsername: admin
      MasterUserPassword: password
      AllocatedStorage: 1000

A company is using this CloudFormation template to provision infrastructure for an SAP HANA migration. When the stack is created, the RDS instance fails to launch. What is the most likely reason?

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

Amazon RDS does not support the SAP HANA engine.

Amazon RDS does not support SAP HANA as a database engine. SAP HANA must be installed on EC2 instances or on bare metal. Option A is incorrect because the template references the InstanceType parameter correctly using the Ref function. Option B is incorrect because while db.x1e.2xlarge is a valid RDS instance class for some engines (e.g., SQL Server), it is not valid for a non-existent RDS engine; but the primary issue is that SAP HANA is not supported on RDS at all. Option C is incorrect because the AMI ID is not relevant; RDS does not use AMIs; the stack would fail before checking AMI.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • The InstanceType parameter is not properly referenced.

    Why it's wrong here

    The reference syntax is correct.

  • The DBInstanceClass db.x1e.2xlarge is not valid.

    Why it's wrong here

    db.x1e.2xlarge is a valid RDS instance class for some engines.

  • The AMI ID is invalid.

    Why it's wrong here

    The AMI ID is a placeholder but could be valid; the error is likely from RDS.

  • Amazon RDS does not support the SAP HANA engine.

    Why this is correct

    SAP HANA is not available as an RDS engine; it must be deployed on EC2.

About these practice questions

One of 1,616 original PAS-C01 practice questions on Courseiva, each with a full explanation and wrong-answer analysis — not exam dumps or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

This PAS-C01 practice question is part of Courseiva's free Amazon Web Services certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the PAS-C01 exam.