A financial technology organization is designing a disaster recovery strategy. The cloud engineering team must meet two primary requirements:
1. Define and deploy identical multi-tier environments across multiple AWS Regions automatically using templated configurations.
2. Build a custom internal monitoring portal that programmatically queries the deployment state and resource metadata of these environments.
Which combination of AWS deployment and operating methods will satisfy these requirements? (Select TWO.)
- AWS CloudFormation to model and provision the infrastructure in a safe, repeatable manner across regions using configuration templatesCevap
- AWS Software Development Kits (SDKs) to programmatically query resource metadata and stack states from within the monitoring portal's custom codebaseCevap
- CAWS Elastic Beanstalk to define the raw underlying infrastructure components using JSON or YAML templates for granular multi-region provisioning
- DAWS Management Console to execute programmatic scripts that dynamically fetch resource metadata and push them to the monitoring portal
- EAmazon CloudWatch logs to record the API calls made by the monitoring portal and audit user activity for security compliance
Cevap
AWS CloudFormation to model and provision the infrastructure in a safe, repeatable manner across regions using configuration templates; and AWS Software Development Kits (SDKs) to programmatically query resource metadata and stack states from within the monitoring portal's custom codebase.
The combination of AWS CloudFormation and AWS SDKs is correct because CloudFormation handles the template-based automation of environments across regions, while SDKs provide the library interface to programmatically request resource status from the portal's code.
Adım Adım Çözüm
Anahtar Kavram
Selecting appropriate AWS interaction tools (Console, CLI, SDK, CloudFormation) based on the automation, scripting, or manual requirements of a scenario.