class Aws::S3::Plugins::ARN

def resolve_url!(url, arn, region, fips = false, dualstack = false, has_custom_endpoint = false)

Other tags:
    Api: - private
def resolve_url!(url, arn, region, fips = false, dualstack = false, has_custom_endpoint = false)
  custom_endpoint = url.host if has_custom_endpoint
  url.host = arn.host_url(region, fips, dualstack, custom_endpoint)
  url.path = url_path(url.path, arn)
  url
end