IsAmazonExpressRegionalEndpoint Match if the endpoint is S3 Express regional endpoint.
(endpointURL url.URL)
| 211 | |
| 212 | // IsAmazonExpressRegionalEndpoint Match if the endpoint is S3 Express regional endpoint. |
| 213 | func IsAmazonExpressRegionalEndpoint(endpointURL url.URL) bool { |
| 214 | return amazonS3HostExpressControl.MatchString(endpointURL.Hostname()) |
| 215 | } |
| 216 | |
| 217 | // IsAmazonExpressZonalEndpoint Match if the endpoint is S3 Express zonal endpoint. |
| 218 | func IsAmazonExpressZonalEndpoint(endpointURL url.URL) bool { |
no outgoing calls
no test coverage detected