responsePagePath property
The path to the custom error page that you want CloudFront to return to a
viewer when your origin returns the HTTP status code specified by
ErrorCode
, for example,
/4xx-errors/403-forbidden.html
. If you want to store your
objects and your custom error pages in different locations, your
distribution must include a cache behavior for which the following is true:
-
The value of
PathPattern
matches the path to your custom error messages. For example, suppose you saved custom error pages for 4xx errors in an Amazon S3 bucket in a directory named/4xx-errors
. Your distribution must include a cache behavior for which the path pattern routes requests for your custom error pages to that location, for example,/4xx-errors/*
. -
The value of
TargetOriginId
specifies the value of theID
element for the origin that contains your custom error pages.
ResponsePagePath
, you must also
specify a value for ResponseCode
.
We recommend that you store custom error pages in an Amazon S3 bucket. If you store custom error pages on an HTTP server and the server starts to return 5xx errors, CloudFront can't get the files that you want to return to viewers because the origin server is unavailable.
Implementation
final String? responsePagePath;