Complete the code to create an S3 bucket for backup storage.
aws s3api create-bucket --bucket [1] --region us-east-1
The bucket name must be globally unique. 'my-backup-bucket-123' is a valid unique name.
Complete the code to launch a pilot light EC2 instance in the us-west-2 region.
aws ec2 run-instances --image-id ami-0abcdef1234567890 --count 1 --instance-type [1] --region us-west-2
For pilot light, a moderate instance like 'm5.large' is suitable to keep minimal services running.
Fix the error in the CloudFormation snippet to define a warm standby RDS instance.
"Resources": {"WarmStandbyDB": {"Type": "AWS::RDS::DBInstance", "Properties": {"DBInstanceClass": "[1]", "Engine": "mysql", "MultiAZ": true}}}
Warm standby requires a robust instance like 'db.r5.large' to handle failover smoothly.
Fill both blanks to configure a pilot light environment with minimal resources.
PilotLightConfig: {InstanceType: [1], StorageType: [2]Use 't3.small' for a small instance and 'gp2' for general purpose storage in pilot light.
Fill all three blanks to define a warm standby setup with auto-scaling and health checks.
WarmStandbySetup: {AutoScalingGroupName: [1], HealthCheckType: [2], MinSize: [3]The Auto Scaling group name is 'WarmStandbyASG', health checks use 'EC2', and minimum size is 1 to keep standby running.