What should a SysOps administrator do to meet the compliance requirement?
Provision an interface VPC endpoint for Amazon S3. Modify the application to use the interface endpoint.
Configure AWS Network Firewall to redirect traffic to the internal S3 address.
Modify the application to use the S3 path-style endpoint.
Set up a range of VPC network ACLs to redirect traffic to the internal S3 address.
Explanations:
Provisioning an interface VPC endpoint for Amazon S3 ensures that traffic from the application to Amazon S3 does not traverse the internet, meeting the compliance requirement.
AWS Network Firewall cannot redirect traffic to an internal S3 address. It is a security service for inspecting and controlling traffic, not for creating private endpoints.
Using the S3 path-style endpoint does not guarantee that traffic will avoid the internet. The traffic could still route through the public internet unless a private endpoint is used.
VPC network ACLs cannot be used to redirect traffic to Amazon S3. ACLs are used to control inbound and outbound traffic for VPC subnets, not for managing private connections to S3.