class Aws::ECSCredentials

def fetch_authorization_token

def fetch_authorization_token
  if (path = ENV['AWS_CONTAINER_AUTHORIZATION_TOKEN_FILE'])
    fetch_authorization_token_file(path)
  elsif (token = ENV['AWS_CONTAINER_AUTHORIZATION_TOKEN'])
    token
  end
end