Complete the code to enable AWS Shield Advanced protection on a resource.
aws shield create-protection --name MyProtection --resource-arn [1]The resource ARN must be for a supported resource like an Application Load Balancer to enable AWS Shield Advanced protection.
Complete the code to list all protections enabled in AWS Shield.
aws shield list-[1]The command 'list-protections' lists all the protections enabled in AWS Shield.
Fix the error in the command to describe a DDoS attack by its ID.
aws shield describe-attack --[1]The correct parameter name is '--attack-id' with hyphens, matching AWS CLI syntax.
Fill both blanks to create a Shield protection and specify the resource ARN.
aws shield create-protection --name [1] --resource-arn [2]
The protection name should be descriptive like 'MyWebAppProtection' and the resource ARN must be a supported resource like a load balancer ARN.
Fill all three blanks to create a Shield protection, enable automatic response, and specify the resource ARN.
aws shield create-protection --name [1] --resource-arn [2] --[3]
Use a descriptive protection name, specify the load balancer ARN, and enable automatic response to mitigate attacks automatically.