A company needs to secure a SageMaker real-time endpoint such that only authorized applications within a VPC can invoke the model, and all data in transit is encrypted. Which TWO configuration steps should they implement? (Choose TWO)
Trap 1: Assign a public IP to the endpoint instances
Would make the endpoint potentially accessible from internet.
Trap 2: Disable SageMaker's API gateway logs
Irrelevant to encryption or VPC access.
Trap 3: Use a KMS key for endpoint data encryption (at rest)
Encrypts data on the instance's storage.
- A
Assign a public IP to the endpoint instances
Why wrong: Would make the endpoint potentially accessible from internet.
- B
Disable SageMaker's API gateway logs
Why wrong: Irrelevant to encryption or VPC access.
- C
Use a KMS key for endpoint data encryption (at rest)
Why wrong: Encrypts data on the instance's storage.
- D
Enable VPC-only mode for the endpoint
Blocks public internet access.
- E
Enable inter-container traffic encryption
Encrypts data between model containers.